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
|
|
|
|
|
|
|
using System;
|
2018-07-06 15:39:27 +08:00
|
|
|
using System.Threading.Tasks;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-03-27 18:29:27 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Logging;
|
|
|
|
using osu.Game;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
using Squirrel;
|
2018-11-19 20:29:29 +08:00
|
|
|
using LogLevel = Splat.LogLevel;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-07-06 15:39:27 +08:00
|
|
|
namespace osu.Desktop.Updater
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2019-09-24 17:03:01 +08:00
|
|
|
public class SquirrelUpdateManager : osu.Game.Updater.UpdateManager
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
private UpdateManager updateManager;
|
|
|
|
private NotificationOverlay notificationOverlay;
|
|
|
|
|
2019-06-28 20:26:31 +08:00
|
|
|
public Task PrepareUpdateAsync() => UpdateManager.RestartAppWhenExited();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-07-29 17:14:06 +08:00
|
|
|
private static readonly Logger logger = Logger.GetLogger("updater");
|
|
|
|
|
2020-10-06 12:18:42 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Whether an update has been downloaded but not yet applied.
|
|
|
|
/// </summary>
|
|
|
|
private bool updatePending;
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2020-06-08 06:39:33 +08:00
|
|
|
private void load(NotificationOverlay notification)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
notificationOverlay = notification;
|
|
|
|
|
2020-05-08 08:48:27 +08:00
|
|
|
Splat.Locator.CurrentMutable.Register(() => new SquirrelLogger(), typeof(Splat.ILogger));
|
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
|
|
|
|
2020-10-06 12:00:02 +08:00
|
|
|
private async Task<bool> checkForUpdateAsync(bool useDeltaPatching = true, UpdateProgressNotification notification = null)
|
2018-04-13 17:19:50 +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
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2021-03-08 11:57:16 +08:00
|
|
|
updateManager ??= await UpdateManager.GitHubUpdateManager(@"https://github.com/ppy/osu", @"osulazer", null, null, true).ConfigureAwait(false);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2021-03-08 11:57:16 +08:00
|
|
|
var info = await updateManager.CheckForUpdate(!useDeltaPatching).ConfigureAwait(false);
|
2020-10-06 12:18:42 +08:00
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
if (info.ReleasesToApply.Count == 0)
|
2020-10-06 12:18:42 +08:00
|
|
|
{
|
|
|
|
if (updatePending)
|
|
|
|
{
|
|
|
|
// the user may have dismissed the completion notice, so show it again.
|
|
|
|
notificationOverlay.Post(new UpdateCompleteNotification(this));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-05-05 09:31:11 +08:00
|
|
|
// no updates available. bail and retry later.
|
2020-10-06 12:00:02 +08:00
|
|
|
return false;
|
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-04-13 17:19:50 +08:00
|
|
|
if (notification == null)
|
|
|
|
{
|
|
|
|
notification = new UpdateProgressNotification(this) { State = ProgressNotificationState.Active };
|
|
|
|
Schedule(() => notificationOverlay.Post(notification));
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.Progress = 0;
|
|
|
|
notification.Text = @"Downloading update...";
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2021-03-08 11:57:16 +08:00
|
|
|
await updateManager.DownloadReleases(info.ReleasesToApply, p => notification.Progress = p / 100f).ConfigureAwait(false);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
notification.Progress = 0;
|
|
|
|
notification.Text = @"Installing update...";
|
|
|
|
|
2021-03-08 11:57:16 +08:00
|
|
|
await updateManager.ApplyReleases(info, p => notification.Progress = p / 100f).ConfigureAwait(false);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
notification.State = ProgressNotificationState.Completed;
|
2020-10-06 12:18:42 +08:00
|
|
|
updatePending = true;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
if (useDeltaPatching)
|
|
|
|
{
|
2019-07-29 17:14:06 +08:00
|
|
|
logger.Add(@"delta patching failed; will attempt full download!");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2020-05-05 09:31:11 +08:00
|
|
|
// could fail if deltas are unavailable for full update path (https://github.com/Squirrel/Squirrel.Windows/issues/959)
|
|
|
|
// try again without deltas.
|
2021-03-08 11:57:16 +08:00
|
|
|
await checkForUpdateAsync(false, notification).ConfigureAwait(false);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-06-28 20:26:31 +08:00
|
|
|
notification.State = ProgressNotificationState.Cancelled;
|
2018-04-13 17:19:50 +08:00
|
|
|
Logger.Error(e, @"update failed!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception)
|
|
|
|
{
|
|
|
|
// 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;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
2019-06-28 19:37:53 +08:00
|
|
|
if (scheduleRecheck)
|
2018-04-13 17:19:50 +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-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
2020-10-06 12:00:02 +08:00
|
|
|
|
|
|
|
return true;
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
updateManager?.Dispose();
|
|
|
|
}
|
|
|
|
|
2020-10-06 12:18:42 +08:00
|
|
|
private class UpdateCompleteNotification : ProgressCompletionNotification
|
|
|
|
{
|
|
|
|
[Resolved]
|
|
|
|
private OsuGame game { get; set; }
|
|
|
|
|
|
|
|
public UpdateCompleteNotification(SquirrelUpdateManager updateManager)
|
|
|
|
{
|
|
|
|
Text = @"Update ready to install. Click to restart!";
|
|
|
|
|
|
|
|
Activated = () =>
|
|
|
|
{
|
|
|
|
updateManager.PrepareUpdateAsync()
|
2021-07-02 13:43:48 +08:00
|
|
|
.ContinueWith(_ => updateManager.Schedule(() => game?.GracefullyExit()));
|
2020-10-06 12:18:42 +08:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private class UpdateProgressNotification : ProgressNotification
|
|
|
|
{
|
|
|
|
private readonly SquirrelUpdateManager updateManager;
|
|
|
|
|
|
|
|
public UpdateProgressNotification(SquirrelUpdateManager updateManager)
|
|
|
|
{
|
|
|
|
this.updateManager = updateManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override Notification CreateCompletionNotification()
|
|
|
|
{
|
2020-10-06 12:18:42 +08:00
|
|
|
return new UpdateCompleteNotification(updateManager);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-10-06 12:18:42 +08:00
|
|
|
private void load(OsuColour colours)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
IconContent.AddRange(new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = ColourInfo.GradientVertical(colours.YellowDark, colours.Yellow)
|
|
|
|
},
|
|
|
|
new SpriteIcon
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
2019-04-02 18:55:24 +08:00
|
|
|
Icon = FontAwesome.Solid.Upload,
|
2018-04-13 17:19:50 +08:00
|
|
|
Colour = Color4.White,
|
|
|
|
Size = new Vector2(20),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-11-19 20:29:29 +08:00
|
|
|
|
|
|
|
private class SquirrelLogger : Splat.ILogger, IDisposable
|
|
|
|
{
|
|
|
|
public LogLevel Level { get; set; } = LogLevel.Info;
|
|
|
|
|
|
|
|
public void Write(string message, LogLevel logLevel)
|
|
|
|
{
|
|
|
|
if (logLevel < Level)
|
|
|
|
return;
|
|
|
|
|
2019-05-15 13:12:59 +08:00
|
|
|
logger.Add(message);
|
2018-11-19 20:29:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|