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-04-13 17:19:50 +08:00
|
|
|
|
|
2020-06-08 06:39:33 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2019-02-28 12:09:38 +08:00
|
|
|
|
using osu.Framework;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2022-01-03 16:31:12 +08:00
|
|
|
|
using osu.Framework.Extensions;
|
2020-10-06 12:00:02 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2023-11-28 16:59:21 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2016-11-03 10:22:34 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2020-05-14 16:40:43 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2016-12-02 06:28:20 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-11 15:25:08 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2020-10-06 12:00:02 +08:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2020-05-14 16:40:43 +08:00
|
|
|
|
using osu.Game.Overlays.Settings.Sections.Maintenance;
|
2020-05-07 14:07:22 +08:00
|
|
|
|
using osu.Game.Updater;
|
2023-11-27 16:13:11 +08:00
|
|
|
|
using SharpCompress.Archives.Zip;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.General
|
2016-11-12 18:44:16 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public partial class UpdateSettings : SettingsSubsection
|
2016-11-12 18:44:16 +08:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
protected override LocalisableString Header => GeneralSettingsStrings.UpdateHeader;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-11-27 15:56:11 +08:00
|
|
|
|
private SettingsButton checkForUpdatesButton = null!;
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private UpdateManager? updateManager { get; set; }
|
2020-06-12 17:36:36 +08:00
|
|
|
|
|
2023-11-27 15:56:11 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private INotificationOverlay? notifications { get; set; }
|
2020-10-06 12:00:02 +08:00
|
|
|
|
|
2023-12-07 15:18:54 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private Storage storage { get; set; } = null!;
|
|
|
|
|
|
2023-11-27 15:56:11 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2023-12-13 18:01:06 +08:00
|
|
|
|
private void load(OsuConfigManager config, OsuGame? game)
|
2016-11-04 10:43:00 +08:00
|
|
|
|
{
|
2019-02-28 12:09:38 +08:00
|
|
|
|
Add(new SettingsEnumDropdown<ReleaseStream>
|
2016-11-09 07:13:20 +08:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
LabelText = GeneralSettingsStrings.ReleaseStream,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream),
|
2019-02-28 12:09:38 +08:00
|
|
|
|
});
|
|
|
|
|
|
2020-10-06 19:57:39 +08:00
|
|
|
|
if (updateManager?.CanCheckForUpdate == true)
|
2020-05-07 14:07:22 +08:00
|
|
|
|
{
|
2020-06-15 21:19:11 +08:00
|
|
|
|
Add(checkForUpdatesButton = new SettingsButton
|
2020-06-12 17:36:36 +08:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.CheckUpdate,
|
2020-06-15 21:19:11 +08:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = false;
|
2022-01-03 16:31:12 +08:00
|
|
|
|
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(task => Schedule(() =>
|
2020-10-06 12:00:02 +08:00
|
|
|
|
{
|
2022-01-06 21:54:43 +08:00
|
|
|
|
if (!task.GetResultSafely())
|
2020-10-06 12:00:02 +08:00
|
|
|
|
{
|
2020-10-06 20:28:59 +08:00
|
|
|
|
notifications?.Post(new SimpleNotification
|
2020-10-06 12:00:02 +08:00
|
|
|
|
{
|
2023-12-13 18:01:06 +08:00
|
|
|
|
Text = GeneralSettingsStrings.RunningLatestRelease(game!.Version),
|
2020-10-06 12:00:02 +08:00
|
|
|
|
Icon = FontAwesome.Solid.CheckCircle,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = true;
|
|
|
|
|
}));
|
2020-06-15 21:19:11 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-05-07 14:07:22 +08:00
|
|
|
|
|
2019-02-28 12:09:38 +08:00
|
|
|
|
if (RuntimeInfo.IsDesktop)
|
|
|
|
|
{
|
|
|
|
|
Add(new SettingsButton
|
2016-11-09 07:13:20 +08:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.OpenOsuFolder,
|
2023-01-23 14:10:34 +08:00
|
|
|
|
Keywords = new[] { @"logs", @"files", @"access", "directory" },
|
2022-03-24 22:40:46 +08:00
|
|
|
|
Action = () => storage.PresentExternally(),
|
2019-02-28 12:09:38 +08:00
|
|
|
|
});
|
2020-05-14 16:40:43 +08:00
|
|
|
|
|
2023-11-27 16:13:11 +08:00
|
|
|
|
Add(new SettingsButton
|
|
|
|
|
{
|
2023-11-28 16:59:05 +08:00
|
|
|
|
Text = GeneralSettingsStrings.ExportLogs,
|
|
|
|
|
Keywords = new[] { @"bug", "report", "logs", "files" },
|
2023-12-07 15:18:54 +08:00
|
|
|
|
Action = () => Task.Run(exportLogs),
|
2023-11-27 16:13:11 +08:00
|
|
|
|
});
|
|
|
|
|
|
2020-05-14 16:40:43 +08:00
|
|
|
|
Add(new SettingsButton
|
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.ChangeFolderLocation,
|
2023-12-13 18:01:06 +08:00
|
|
|
|
Action = () => game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
|
2020-05-14 16:40:43 +08:00
|
|
|
|
});
|
2019-02-28 12:09:38 +08:00
|
|
|
|
}
|
2016-11-12 18:44:16 +08:00
|
|
|
|
}
|
2023-12-07 15:18:54 +08:00
|
|
|
|
|
|
|
|
|
private void exportLogs()
|
|
|
|
|
{
|
|
|
|
|
ProgressNotification notification = new ProgressNotification
|
|
|
|
|
{
|
|
|
|
|
State = ProgressNotificationState.Active,
|
|
|
|
|
Text = "Exporting logs...",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
notifications?.Post(notification);
|
|
|
|
|
|
|
|
|
|
const string archive_filename = "exports/compressed-logs.zip";
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var logStorage = Logger.Storage;
|
|
|
|
|
|
|
|
|
|
using (var outStream = storage.CreateFileSafely(archive_filename))
|
|
|
|
|
using (var zip = ZipArchive.Create())
|
|
|
|
|
{
|
|
|
|
|
foreach (string? f in logStorage.GetFiles(string.Empty, "*.log")) zip.AddEntry(f, logStorage.GetStream(f), true);
|
|
|
|
|
|
|
|
|
|
zip.SaveTo(outStream);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
notification.State = ProgressNotificationState.Cancelled;
|
|
|
|
|
|
|
|
|
|
// cleanup if export is failed or canceled.
|
|
|
|
|
storage.Delete(archive_filename);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
notification.CompletionText = "Exported logs! Click to view.";
|
|
|
|
|
notification.CompletionClickAction = () => storage.PresentFileExternally(archive_filename);
|
|
|
|
|
|
|
|
|
|
notification.State = ProgressNotificationState.Completed;
|
|
|
|
|
}
|
2016-11-12 18:44:16 +08:00
|
|
|
|
}
|
|
|
|
|
}
|