mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Diagnostics;
|
|
|
|
namespace Toolbox.Library
|
|
{
|
|
public class WebUtil
|
|
{
|
|
public static void OpenDonation() {
|
|
OpenURLEncoded("aHR0cHM6Ly9rby1maS5jb20vc2ltcGx5a3hn");
|
|
}
|
|
|
|
public static void OpenURLEncoded(string encodedString)
|
|
{
|
|
byte[] data = Convert.FromBase64String(encodedString);
|
|
OpenURL(Encoding.UTF8.GetString(data));
|
|
}
|
|
|
|
public static void OpenURL(string url)
|
|
{
|
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) {
|
|
Process.Start(new ProcessStartInfo(url) { UseShellExecute = true }); // Works ok on windows
|
|
}
|
|
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) {
|
|
Process.Start("xdg-open", url); // Works ok on linux
|
|
}
|
|
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) {
|
|
Process.Start("open", url); // Not tested
|
|
}
|
|
}
|
|
}
|
|
}
|