auto_update.rs

  1mod update_notification;
  2
  3use anyhow::{anyhow, Context, Result};
  4use client::{Client, TelemetrySettings, ZED_APP_PATH, ZED_APP_VERSION, ZED_SECRET_CLIENT_TOKEN};
  5use db::kvp::KEY_VALUE_STORE;
  6use db::RELEASE_CHANNEL;
  7use gpui::{
  8    actions, AppContext, AsyncAppContext, Context as _, Model, ModelContext, SemanticVersion, Task,
  9    ViewContext, VisualContext, WindowContext,
 10};
 11use isahc::AsyncBody;
 12
 13use schemars::JsonSchema;
 14use serde::Deserialize;
 15use serde_derive::Serialize;
 16use smol::io::AsyncReadExt;
 17
 18use settings::{Settings, SettingsStore};
 19use smol::{fs::File, process::Command};
 20
 21use std::{ffi::OsString, sync::Arc, time::Duration};
 22use update_notification::UpdateNotification;
 23use util::channel::{AppCommitSha, ReleaseChannel};
 24use util::http::HttpClient;
 25use workspace::Workspace;
 26
 27const SHOULD_SHOW_UPDATE_NOTIFICATION_KEY: &str = "auto-updater-should-show-updated-notification";
 28const POLL_INTERVAL: Duration = Duration::from_secs(60 * 60);
 29
 30actions!(auto_update, [Check, DismissErrorMessage, ViewReleaseNotes]);
 31
 32#[derive(Serialize)]
 33struct UpdateRequestBody {
 34    installation_id: Option<Arc<str>>,
 35    release_channel: Option<&'static str>,
 36    telemetry: bool,
 37}
 38
 39#[derive(Clone, Copy, PartialEq, Eq)]
 40pub enum AutoUpdateStatus {
 41    Idle,
 42    Checking,
 43    Downloading,
 44    Installing,
 45    Updated,
 46    Errored,
 47}
 48
 49pub struct AutoUpdater {
 50    status: AutoUpdateStatus,
 51    current_version: SemanticVersion,
 52    http_client: Arc<dyn HttpClient>,
 53    pending_poll: Option<Task<Option<()>>>,
 54    server_url: String,
 55}
 56
 57#[derive(Deserialize)]
 58struct JsonRelease {
 59    version: String,
 60    url: String,
 61}
 62
 63struct AutoUpdateSetting(bool);
 64
 65/// Whether or not to automatically check for updates.
 66///
 67/// Default: true
 68#[derive(Clone, Default, JsonSchema, Deserialize, Serialize)]
 69#[serde(transparent)]
 70struct AutoUpdateSettingOverride(Option<bool>);
 71
 72impl Settings for AutoUpdateSetting {
 73    const KEY: Option<&'static str> = Some("auto_update");
 74
 75    type FileContent = AutoUpdateSettingOverride;
 76
 77    fn load(
 78        default_value: &Self::FileContent,
 79        user_values: &[&Self::FileContent],
 80        _: &mut AppContext,
 81    ) -> Result<Self> {
 82        Ok(Self(
 83            Self::json_merge(default_value, user_values)?
 84                .0
 85                .ok_or_else(Self::missing_default)?,
 86        ))
 87    }
 88}
 89
 90pub fn init(http_client: Arc<dyn HttpClient>, server_url: String, cx: &mut AppContext) {
 91    AutoUpdateSetting::register(cx);
 92
 93    cx.observe_new_views(|workspace: &mut Workspace, _cx| {
 94        workspace.register_action(|_, action: &Check, cx| check(action, cx));
 95
 96        workspace.register_action(|_, action, cx| {
 97            view_release_notes(action, cx);
 98        });
 99    })
100    .detach();
101
102    if let Some(version) = ZED_APP_VERSION.or_else(|| cx.app_metadata().app_version) {
103        let auto_updater = cx.new_model(|cx| {
104            let updater = AutoUpdater::new(version, http_client, server_url);
105
106            let mut update_subscription = AutoUpdateSetting::get_global(cx)
107                .0
108                .then(|| updater.start_polling(cx));
109
110            cx.observe_global::<SettingsStore>(move |updater, cx| {
111                if AutoUpdateSetting::get_global(cx).0 {
112                    if update_subscription.is_none() {
113                        update_subscription = Some(updater.start_polling(cx))
114                    }
115                } else {
116                    update_subscription.take();
117                }
118            })
119            .detach();
120
121            updater
122        });
123        cx.set_global(Some(auto_updater));
124    }
125}
126
127pub fn check(_: &Check, cx: &mut WindowContext) {
128    if let Some(updater) = AutoUpdater::get(cx) {
129        updater.update(cx, |updater, cx| updater.poll(cx));
130    } else {
131        drop(cx.prompt(
132            gpui::PromptLevel::Info,
133            "Auto-updates disabled for non-bundled app.",
134            &["Ok"],
135        ));
136    }
137}
138
139pub fn view_release_notes(_: &ViewReleaseNotes, cx: &mut AppContext) -> Option<()> {
140    let auto_updater = AutoUpdater::get(cx)?;
141    let release_channel = cx.try_global::<ReleaseChannel>()?;
142
143    if matches!(
144        release_channel,
145        ReleaseChannel::Stable | ReleaseChannel::Preview
146    ) {
147        let auto_updater = auto_updater.read(cx);
148        let server_url = &auto_updater.server_url;
149        let release_channel = release_channel.dev_name();
150        let current_version = auto_updater.current_version;
151        let url = format!("{server_url}/releases/{release_channel}/{current_version}");
152        cx.open_url(&url);
153    }
154
155    None
156}
157
158pub fn notify_of_any_new_update(cx: &mut ViewContext<Workspace>) -> Option<()> {
159    let updater = AutoUpdater::get(cx)?;
160    let version = updater.read(cx).current_version;
161    let should_show_notification = updater.read(cx).should_show_update_notification(cx);
162
163    cx.spawn(|workspace, mut cx| async move {
164        let should_show_notification = should_show_notification.await?;
165        if should_show_notification {
166            workspace.update(&mut cx, |workspace, cx| {
167                workspace.show_notification(0, cx, |cx| {
168                    cx.new_view(|_| UpdateNotification::new(version))
169                });
170                updater
171                    .read(cx)
172                    .set_should_show_update_notification(false, cx)
173                    .detach_and_log_err(cx);
174            })?;
175        }
176        anyhow::Ok(())
177    })
178    .detach();
179
180    None
181}
182
183impl AutoUpdater {
184    pub fn get(cx: &mut AppContext) -> Option<Model<Self>> {
185        cx.default_global::<Option<Model<Self>>>().clone()
186    }
187
188    fn new(
189        current_version: SemanticVersion,
190        http_client: Arc<dyn HttpClient>,
191        server_url: String,
192    ) -> Self {
193        Self {
194            status: AutoUpdateStatus::Idle,
195            current_version,
196            http_client,
197            server_url,
198            pending_poll: None,
199        }
200    }
201
202    pub fn start_polling(&self, cx: &mut ModelContext<Self>) -> Task<Result<()>> {
203        cx.spawn(|this, mut cx| async move {
204            loop {
205                this.update(&mut cx, |this, cx| this.poll(cx))?;
206                cx.background_executor().timer(POLL_INTERVAL).await;
207            }
208        })
209    }
210
211    pub fn poll(&mut self, cx: &mut ModelContext<Self>) {
212        if self.pending_poll.is_some() || self.status == AutoUpdateStatus::Updated {
213            return;
214        }
215
216        self.status = AutoUpdateStatus::Checking;
217        cx.notify();
218
219        self.pending_poll = Some(cx.spawn(|this, mut cx| async move {
220            let result = Self::update(this.upgrade()?, cx.clone()).await;
221            this.update(&mut cx, |this, cx| {
222                this.pending_poll = None;
223                if let Err(error) = result {
224                    log::error!("auto-update failed: error:{:?}", error);
225                    this.status = AutoUpdateStatus::Errored;
226                    cx.notify();
227                }
228            })
229            .ok()
230        }));
231    }
232
233    pub fn status(&self) -> AutoUpdateStatus {
234        self.status
235    }
236
237    pub fn dismiss_error(&mut self, cx: &mut ModelContext<Self>) {
238        self.status = AutoUpdateStatus::Idle;
239        cx.notify();
240    }
241
242    async fn update(this: Model<Self>, mut cx: AsyncAppContext) -> Result<()> {
243        let (client, server_url, current_version) = this.read_with(&cx, |this, _| {
244            (
245                this.http_client.clone(),
246                this.server_url.clone(),
247                this.current_version,
248            )
249        })?;
250
251        let mut url_string = format!(
252            "{server_url}/api/releases/latest?token={ZED_SECRET_CLIENT_TOKEN}&asset=Zed.dmg"
253        );
254        cx.update(|cx| {
255            if let Some(param) = cx
256                .try_global::<ReleaseChannel>()
257                .map(|release_channel| release_channel.release_query_param())
258                .flatten()
259            {
260                url_string += "&";
261                url_string += param;
262            }
263        })?;
264
265        let mut response = client.get(&url_string, Default::default(), true).await?;
266
267        let mut body = Vec::new();
268        response
269            .body_mut()
270            .read_to_end(&mut body)
271            .await
272            .context("error reading release")?;
273        let release: JsonRelease =
274            serde_json::from_slice(body.as_slice()).context("error deserializing release")?;
275
276        let should_download = match *RELEASE_CHANNEL {
277            ReleaseChannel::Nightly => cx
278                .try_read_global::<AppCommitSha, _>(|sha, _| release.version != sha.0)
279                .unwrap_or(true),
280            _ => release.version.parse::<SemanticVersion>()? > current_version,
281        };
282
283        if !should_download {
284            this.update(&mut cx, |this, cx| {
285                this.status = AutoUpdateStatus::Idle;
286                cx.notify();
287            })?;
288            return Ok(());
289        }
290
291        this.update(&mut cx, |this, cx| {
292            this.status = AutoUpdateStatus::Downloading;
293            cx.notify();
294        })?;
295
296        let temp_dir = tempdir::TempDir::new("zed-auto-update")?;
297        let dmg_path = temp_dir.path().join("Zed.dmg");
298        let mount_path = temp_dir.path().join("Zed");
299        let running_app_path = ZED_APP_PATH
300            .clone()
301            .map_or_else(|| cx.update(|cx| cx.app_path())?, Ok)?;
302        let running_app_filename = running_app_path
303            .file_name()
304            .ok_or_else(|| anyhow!("invalid running app path"))?;
305        let mut mounted_app_path: OsString = mount_path.join(running_app_filename).into();
306        mounted_app_path.push("/");
307
308        let mut dmg_file = File::create(&dmg_path).await?;
309
310        let (installation_id, release_channel, telemetry) = cx.update(|cx| {
311            let installation_id = cx.global::<Arc<Client>>().telemetry().installation_id();
312            let release_channel = cx
313                .try_global::<ReleaseChannel>()
314                .map(|release_channel| release_channel.display_name());
315            let telemetry = TelemetrySettings::get_global(cx).metrics;
316
317            (installation_id, release_channel, telemetry)
318        })?;
319
320        let request_body = AsyncBody::from(serde_json::to_string(&UpdateRequestBody {
321            installation_id,
322            release_channel,
323            telemetry,
324        })?);
325
326        let mut response = client.get(&release.url, request_body, true).await?;
327        smol::io::copy(response.body_mut(), &mut dmg_file).await?;
328        log::info!("downloaded update. path:{:?}", dmg_path);
329
330        this.update(&mut cx, |this, cx| {
331            this.status = AutoUpdateStatus::Installing;
332            cx.notify();
333        })?;
334
335        let output = Command::new("hdiutil")
336            .args(&["attach", "-nobrowse"])
337            .arg(&dmg_path)
338            .arg("-mountroot")
339            .arg(&temp_dir.path())
340            .output()
341            .await?;
342        if !output.status.success() {
343            Err(anyhow!(
344                "failed to mount: {:?}",
345                String::from_utf8_lossy(&output.stderr)
346            ))?;
347        }
348
349        let output = Command::new("rsync")
350            .args(&["-av", "--delete"])
351            .arg(&mounted_app_path)
352            .arg(&running_app_path)
353            .output()
354            .await?;
355        if !output.status.success() {
356            Err(anyhow!(
357                "failed to copy app: {:?}",
358                String::from_utf8_lossy(&output.stderr)
359            ))?;
360        }
361
362        let output = Command::new("hdiutil")
363            .args(&["detach"])
364            .arg(&mount_path)
365            .output()
366            .await?;
367        if !output.status.success() {
368            Err(anyhow!(
369                "failed to unmount: {:?}",
370                String::from_utf8_lossy(&output.stderr)
371            ))?;
372        }
373
374        this.update(&mut cx, |this, cx| {
375            this.set_should_show_update_notification(true, cx)
376                .detach_and_log_err(cx);
377            this.status = AutoUpdateStatus::Updated;
378            cx.notify();
379        })?;
380        Ok(())
381    }
382
383    fn set_should_show_update_notification(
384        &self,
385        should_show: bool,
386        cx: &AppContext,
387    ) -> Task<Result<()>> {
388        cx.background_executor().spawn(async move {
389            if should_show {
390                KEY_VALUE_STORE
391                    .write_kvp(
392                        SHOULD_SHOW_UPDATE_NOTIFICATION_KEY.to_string(),
393                        "".to_string(),
394                    )
395                    .await?;
396            } else {
397                KEY_VALUE_STORE
398                    .delete_kvp(SHOULD_SHOW_UPDATE_NOTIFICATION_KEY.to_string())
399                    .await?;
400            }
401            Ok(())
402        })
403    }
404
405    fn should_show_update_notification(&self, cx: &AppContext) -> Task<Result<bool>> {
406        cx.background_executor().spawn(async move {
407            Ok(KEY_VALUE_STORE
408                .read_kvp(SHOULD_SHOW_UPDATE_NOTIFICATION_KEY)?
409                .is_some())
410        })
411    }
412}