1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-16 07:20:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/General/UpdateSettings.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

135 lines
4.7 KiB
C#
Raw Normal View History

// 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
using System.Threading.Tasks;
using osu.Framework;
2016-11-09 07:13:20 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
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;
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;
using SharpCompress.Archives.Zip;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Settings.Sections.General
{
public partial class UpdateSettings : SettingsSubsection
{
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; }
2023-11-27 15:56:11 +08:00
[Resolved]
private INotificationOverlay? notifications { get; set; }
[Resolved]
private Storage storage { get; set; } = null!;
2023-11-27 15:56:11 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config, OsuGame? game)
2016-11-04 10:43:00 +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,
Current = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream),
});
if (updateManager?.CanCheckForUpdate == true)
2020-05-07 14:07:22 +08:00
{
Add(checkForUpdatesButton = new SettingsButton
{
2021-08-11 15:25:08 +08:00
Text = GeneralSettingsStrings.CheckUpdate,
Action = () =>
{
checkForUpdatesButton.Enabled.Value = false;
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(task => Schedule(() =>
{
2022-01-06 21:54:43 +08:00
if (!task.GetResultSafely())
{
notifications?.Post(new SimpleNotification
{
Text = GeneralSettingsStrings.RunningLatestRelease(game!.Version),
Icon = FontAwesome.Solid.CheckCircle,
});
}
checkForUpdatesButton.Enabled.Value = true;
}));
}
});
}
2020-05-07 14:07:22 +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,
Keywords = new[] { @"logs", @"files", @"access", "directory" },
Action = () => storage.PresentExternally(),
});
2020-05-14 16:40:43 +08:00
Add(new SettingsButton
{
Text = GeneralSettingsStrings.ExportLogs,
Keywords = new[] { @"bug", "report", "logs", "files" },
Action = () => Task.Run(exportLogs),
});
2020-05-14 16:40:43 +08:00
Add(new SettingsButton
{
2021-08-11 15:25:08 +08:00
Text = GeneralSettingsStrings.ChangeFolderLocation,
Action = () => game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
2020-05-14 16:40:43 +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;
}
}
}