2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-07-06 15:39:42 +08:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using osu.Framework;
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-07-06 15:39:42 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2020-01-17 18:21:27 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2018-07-06 15:39:42 +08:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
|
|
|
|
|
2019-09-24 17:03:01 +08:00
|
|
|
|
namespace osu.Game.Updater
|
2018-07-06 15:39:42 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An update manager that shows notifications if a newer release is detected.
|
|
|
|
|
/// Installation is left up to the user.
|
|
|
|
|
/// </summary>
|
2019-09-24 17:03:01 +08:00
|
|
|
|
public class SimpleUpdateManager : UpdateManager
|
2018-07-06 15:39:42 +08:00
|
|
|
|
{
|
|
|
|
|
private string version;
|
2020-02-14 21:14:00 +08:00
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private GameHost host { get; set; }
|
2018-07-06 15:39:42 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-02-14 21:14:00 +08:00
|
|
|
|
private void load(OsuGameBase game)
|
2018-07-06 15:39:42 +08:00
|
|
|
|
{
|
|
|
|
|
version = game.Version;
|
|
|
|
|
|
|
|
|
|
if (game.IsDeployedBuild)
|
2019-10-30 23:09:08 +08:00
|
|
|
|
Schedule(() => Task.Run(checkForUpdateAsync));
|
2018-07-06 15:39:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async void checkForUpdateAsync()
|
|
|
|
|
{
|
2018-12-06 13:59:17 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2020-01-17 18:21:27 +08:00
|
|
|
|
var releases = new OsuJsonWebRequest<GitHubRelease>("https://api.github.com/repos/ppy/osu/releases/latest");
|
2018-07-06 15:39:42 +08:00
|
|
|
|
|
2018-12-06 13:59:17 +08:00
|
|
|
|
await releases.PerformAsync();
|
2018-07-06 15:39:42 +08:00
|
|
|
|
|
2018-12-06 13:59:17 +08:00
|
|
|
|
var latest = releases.ResponseObject;
|
|
|
|
|
|
|
|
|
|
if (latest.TagName != version)
|
2018-07-06 15:39:42 +08:00
|
|
|
|
{
|
2019-09-24 17:03:01 +08:00
|
|
|
|
Notifications.Post(new SimpleNotification
|
2018-07-06 15:39:42 +08:00
|
|
|
|
{
|
2018-12-06 13:59:17 +08:00
|
|
|
|
Text = $"A newer release of osu! has been found ({version} → {latest.TagName}).\n\n"
|
|
|
|
|
+ "Click here to download the new version, which can be installed over the top of your existing installation",
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.Upload,
|
2018-12-06 13:59:17 +08:00
|
|
|
|
Activated = () =>
|
|
|
|
|
{
|
|
|
|
|
host.OpenUrlExternally(getBestUrl(latest));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// we shouldn't crash on a web failure. or any failure for the matter.
|
2018-07-06 15:39:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string getBestUrl(GitHubRelease release)
|
|
|
|
|
{
|
|
|
|
|
GitHubAsset bestAsset = null;
|
|
|
|
|
|
|
|
|
|
switch (RuntimeInfo.OS)
|
|
|
|
|
{
|
|
|
|
|
case RuntimeInfo.Platform.Windows:
|
2019-01-06 00:35:33 +08:00
|
|
|
|
bestAsset = release.Assets?.Find(f => f.Name.EndsWith(".exe"));
|
2018-07-06 15:39:42 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-07-06 15:39:42 +08:00
|
|
|
|
case RuntimeInfo.Platform.MacOsx:
|
2019-01-06 00:35:33 +08:00
|
|
|
|
bestAsset = release.Assets?.Find(f => f.Name.EndsWith(".app.zip"));
|
2018-07-06 15:39:42 +08:00
|
|
|
|
break;
|
2019-09-24 17:03:01 +08:00
|
|
|
|
|
2020-02-21 18:16:08 +08:00
|
|
|
|
case RuntimeInfo.Platform.Linux:
|
|
|
|
|
bestAsset = release.Assets?.Find(f => f.Name.EndsWith(".AppImage"));
|
|
|
|
|
break;
|
|
|
|
|
|
2019-09-24 17:03:01 +08:00
|
|
|
|
case RuntimeInfo.Platform.Android:
|
2019-09-24 17:34:54 +08:00
|
|
|
|
// on our testing device this causes the download to magically disappear.
|
|
|
|
|
//bestAsset = release.Assets?.Find(f => f.Name.EndsWith(".apk"));
|
2019-09-24 17:03:01 +08:00
|
|
|
|
break;
|
2018-07-06 15:39:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return bestAsset?.BrowserDownloadUrl ?? release.HtmlUrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class GitHubRelease
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("html_url")]
|
|
|
|
|
public string HtmlUrl { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("tag_name")]
|
|
|
|
|
public string TagName { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("assets")]
|
|
|
|
|
public List<GitHubAsset> Assets { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class GitHubAsset
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("name")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("browser_download_url")]
|
|
|
|
|
public string BrowserDownloadUrl { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|