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-10-24 04:03:00 +08:00
|
|
|
|
|
2022-08-24 16:39:22 +08:00
|
|
|
|
using System;
|
2018-10-24 04:03:00 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-10-24 04:03:00 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2022-08-24 16:39:22 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-10-24 04:03:00 +08:00
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Overlays;
|
2022-08-24 16:39:22 +08:00
|
|
|
|
using osu.Game.Overlays.Dialog;
|
2018-10-24 04:03:00 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
|
{
|
|
|
|
|
public class ExternalLinkOpener : Component
|
|
|
|
|
{
|
2020-02-14 23:02:10 +08:00
|
|
|
|
[Resolved]
|
2022-08-24 16:39:22 +08:00
|
|
|
|
private GameHost host { get; set; } = null!;
|
2020-02-14 21:14:00 +08:00
|
|
|
|
|
2020-02-14 21:59:51 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2022-08-24 16:39:22 +08:00
|
|
|
|
private IDialogOverlay? dialogOverlay { get; set; }
|
2020-02-14 21:14:00 +08:00
|
|
|
|
|
2022-08-24 16:39:22 +08:00
|
|
|
|
private Bindable<bool> externalLinkWarning = null!;
|
2018-10-24 04:03:00 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2020-02-14 21:14:00 +08:00
|
|
|
|
private void load(OsuConfigManager config)
|
2018-10-24 04:03:00 +08:00
|
|
|
|
{
|
2018-11-02 04:52:07 +08:00
|
|
|
|
externalLinkWarning = config.GetBindable<bool>(OsuSetting.ExternalLinkWarning);
|
2018-10-24 04:03:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-27 13:53:11 +08:00
|
|
|
|
public void OpenUrlExternally(string url, bool bypassWarning = false)
|
2018-10-24 04:03:00 +08:00
|
|
|
|
{
|
2022-08-24 16:39:22 +08:00
|
|
|
|
if (!bypassWarning && externalLinkWarning.Value && dialogOverlay != null)
|
2022-08-24 15:42:16 +08:00
|
|
|
|
dialogOverlay.Push(new ExternalLinkDialog(url, () => host.OpenUrlExternally(url), () => host.GetClipboard()?.SetText(url)));
|
2018-10-24 04:03:00 +08:00
|
|
|
|
else
|
2018-11-02 04:52:07 +08:00
|
|
|
|
host.OpenUrlExternally(url);
|
2018-10-24 04:03:00 +08:00
|
|
|
|
}
|
2022-08-24 16:39:22 +08:00
|
|
|
|
|
|
|
|
|
public class ExternalLinkDialog : PopupDialog
|
|
|
|
|
{
|
|
|
|
|
public ExternalLinkDialog(string url, Action openExternalLinkAction, Action copyExternalLinkAction)
|
|
|
|
|
{
|
|
|
|
|
HeaderText = "Just checking...";
|
|
|
|
|
BodyText = $"You are about to leave osu! and open the following link in a web browser:\n\n{url}";
|
|
|
|
|
|
|
|
|
|
Icon = FontAwesome.Solid.ExclamationTriangle;
|
|
|
|
|
|
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
|
|
|
{
|
|
|
|
|
new PopupDialogOkButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Yes. Go for it.",
|
|
|
|
|
Action = openExternalLinkAction
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"Copy URL to the clipboard instead.",
|
|
|
|
|
Action = copyExternalLinkAction
|
|
|
|
|
},
|
|
|
|
|
new PopupDialogCancelButton
|
|
|
|
|
{
|
|
|
|
|
Text = @"No! Abort mission!"
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-24 04:03:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|