2019-06-28 19:37:53 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 16:43:03 +08:00
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-03-27 17:57:20 +08:00
|
|
|
using System;
|
2018-07-06 15:39:27 +08:00
|
|
|
using System.Threading.Tasks;
|
2018-03-27 17:57:20 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Logging;
|
|
|
|
using osu.Game;
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2023-05-23 17:06:04 +08:00
|
|
|
using osu.Game.Screens.Play;
|
2024-07-05 06:00:45 +08:00
|
|
|
using Velopack;
|
2024-07-05 05:28:49 +08:00
|
|
|
using Velopack.Sources;
|
2024-07-05 06:00:45 +08:00
|
|
|
using UpdateManager = Velopack.UpdateManager;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-07-06 15:39:27 +08:00
|
|
|
namespace osu.Desktop.Updater
|
2018-03-27 17:57:20 +08:00
|
|
|
{
|
2024-07-05 06:00:45 +08:00
|
|
|
public partial class VeloUpdateManager : Game.Updater.UpdateManager
|
2018-03-27 17:57:20 +08:00
|
|
|
{
|
2024-07-05 06:00:45 +08:00
|
|
|
private readonly UpdateManager updateManager;
|
2022-08-02 22:23:54 +08:00
|
|
|
private INotificationOverlay notificationOverlay = null!;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-09-12 13:52:11 +08:00
|
|
|
[Resolved]
|
|
|
|
private OsuGameBase game { get; set; } = null!;
|
|
|
|
|
2023-05-23 17:06:04 +08:00
|
|
|
[Resolved]
|
|
|
|
private ILocalUserPlayInfo? localUserInfo { get; set; }
|
|
|
|
|
2024-07-05 05:28:49 +08:00
|
|
|
public VeloUpdateManager()
|
|
|
|
{
|
|
|
|
const string? github_token = null; // TODO: populate.
|
2024-07-05 06:00:45 +08:00
|
|
|
updateManager = new UpdateManager(new GithubSource(@"https://github.com/ppy/osu", github_token, false), new UpdateOptions
|
|
|
|
{
|
|
|
|
AllowVersionDowngrade = true
|
|
|
|
});
|
2024-07-05 05:28:49 +08:00
|
|
|
}
|
|
|
|
|
2018-03-27 17:57:20 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2022-04-19 05:18:10 +08:00
|
|
|
private void load(INotificationOverlay notifications)
|
2018-03-27 17:57:20 +08:00
|
|
|
{
|
2022-04-19 05:18:10 +08:00
|
|
|
notificationOverlay = notifications;
|
2018-03-27 17:57:20 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-03-08 11:57:16 +08:00
|
|
|
protected override async Task<bool> PerformUpdateCheck() => await checkForUpdateAsync().ConfigureAwait(false);
|
2020-05-07 14:07:22 +08:00
|
|
|
|
2024-06-27 03:25:41 +08:00
|
|
|
private async Task<bool> checkForUpdateAsync(UpdateProgressNotification? notification = null)
|
2018-03-27 17:57:20 +08:00
|
|
|
{
|
2020-05-05 09:31:11 +08:00
|
|
|
// should we schedule a retry on completion of this check?
|
2019-06-28 19:37:53 +08:00
|
|
|
bool scheduleRecheck = true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-03-27 17:57:20 +08:00
|
|
|
try
|
|
|
|
{
|
2023-05-23 17:06:04 +08:00
|
|
|
// Avoid any kind of update checking while gameplay is running.
|
|
|
|
if (localUserInfo?.IsPlaying.Value == true)
|
|
|
|
return false;
|
|
|
|
|
2024-06-27 03:25:41 +08:00
|
|
|
var info = await updateManager.CheckForUpdatesAsync().ConfigureAwait(false);
|
2020-10-06 12:18:42 +08:00
|
|
|
|
2024-07-05 05:28:49 +08:00
|
|
|
// Handle no updates available.
|
2024-06-27 03:25:41 +08:00
|
|
|
if (info == null)
|
2020-10-06 12:18:42 +08:00
|
|
|
{
|
2024-07-05 05:28:49 +08:00
|
|
|
// If there's no updates pending restart, bail and retry later.
|
|
|
|
if (!updateManager.IsUpdatePendingRestart) return false;
|
|
|
|
|
|
|
|
// If there is an update pending restart, show the notification to restart again.
|
|
|
|
notificationOverlay.Post(new UpdateApplicationCompleteNotification
|
2020-10-06 12:18:42 +08:00
|
|
|
{
|
2024-07-05 05:28:49 +08:00
|
|
|
Activated = () =>
|
2022-09-12 13:52:11 +08:00
|
|
|
{
|
2024-07-05 05:28:49 +08:00
|
|
|
restartToApplyUpdate();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return true;
|
2020-10-06 12:18:42 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-07-09 17:23:27 +08:00
|
|
|
scheduleRecheck = false;
|
|
|
|
|
2018-03-27 17:57:20 +08:00
|
|
|
if (notification == null)
|
|
|
|
{
|
2022-09-12 13:52:11 +08:00
|
|
|
notification = new UpdateProgressNotification
|
|
|
|
{
|
|
|
|
CompletionClickAction = restartToApplyUpdate,
|
|
|
|
};
|
|
|
|
|
2018-03-27 17:57:20 +08:00
|
|
|
Schedule(() => notificationOverlay.Post(notification));
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-09-12 13:52:11 +08:00
|
|
|
notification.StartDownload();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-03-27 17:57:20 +08:00
|
|
|
try
|
|
|
|
{
|
2024-06-27 03:25:41 +08:00
|
|
|
await updateManager.DownloadUpdatesAsync(info, p => notification.Progress = p / 100f).ConfigureAwait(false);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-03-27 17:57:20 +08:00
|
|
|
notification.State = ProgressNotificationState.Completed;
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
2024-07-05 05:45:34 +08:00
|
|
|
// In the case of an error, a separate notification will be displayed.
|
|
|
|
notification.FailDownload();
|
|
|
|
Logger.Error(e, @"update failed!");
|
2018-03-27 17:57:20 +08:00
|
|
|
}
|
|
|
|
}
|
2024-07-05 05:28:49 +08:00
|
|
|
catch (Exception e)
|
2018-03-27 17:57:20 +08:00
|
|
|
{
|
|
|
|
// we'll ignore this and retry later. can be triggered by no internet connection or thread abortion.
|
2021-07-12 13:55:09 +08:00
|
|
|
scheduleRecheck = true;
|
2024-07-05 05:28:49 +08:00
|
|
|
Logger.Error(e, @"update check failed!");
|
2018-03-27 17:57:20 +08:00
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
2019-06-28 19:37:53 +08:00
|
|
|
if (scheduleRecheck)
|
2018-03-27 17:57:20 +08:00
|
|
|
{
|
2020-05-05 09:31:11 +08:00
|
|
|
// check again in 30 minutes.
|
2021-07-02 13:43:48 +08:00
|
|
|
Scheduler.AddDelayed(() => Task.Run(async () => await checkForUpdateAsync().ConfigureAwait(false)), 60000 * 30);
|
2018-03-27 17:57:20 +08:00
|
|
|
}
|
|
|
|
}
|
2020-10-06 12:00:02 +08:00
|
|
|
|
|
|
|
return true;
|
2018-03-27 17:57:20 +08:00
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2022-09-12 13:52:11 +08:00
|
|
|
private bool restartToApplyUpdate()
|
2020-10-06 12:18:42 +08:00
|
|
|
{
|
2024-06-27 03:25:41 +08:00
|
|
|
updateManager.WaitExitThenApplyUpdates(null);
|
|
|
|
Schedule(() => game.AttemptExit());
|
|
|
|
return true;
|
2018-11-19 20:29:29 +08:00
|
|
|
}
|
2018-03-27 17:57:20 +08:00
|
|
|
}
|
|
|
|
}
|