2024-04-07 02:56:53 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
2024-04-27 00:12:03 -07:00
|
|
|
|
using System.Text.Json;
|
2024-04-27 07:05:17 -07:00
|
|
|
|
using System.Text.Json.Serialization;
|
2024-04-05 22:14:22 -07:00
|
|
|
|
|
2024-04-09 00:00:52 -07:00
|
|
|
|
using Avalonia.Media.Imaging;
|
|
|
|
|
using Avalonia.Platform;
|
|
|
|
|
|
2024-04-05 22:14:22 -07:00
|
|
|
|
namespace SourceGit.Models
|
|
|
|
|
{
|
2024-04-08 02:39:52 -07:00
|
|
|
|
public class ExternalTool
|
2024-04-05 22:14:22 -07:00
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2024-04-06 00:01:07 -07:00
|
|
|
|
public string Icon { get; set; } = string.Empty;
|
2024-04-05 22:14:22 -07:00
|
|
|
|
public string Executable { get; set; } = string.Empty;
|
|
|
|
|
public string OpenCmdArgs { get; set; } = string.Empty;
|
|
|
|
|
|
2024-04-09 00:00:52 -07:00
|
|
|
|
public Bitmap IconImage
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2024-04-27 00:11:38 -07:00
|
|
|
|
if (string.IsNullOrWhiteSpace(Icon))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var icon = AssetLoader.Open(new Uri($"avares://SourceGit/Resources/ExternalToolIcons/{Icon}.png", UriKind.RelativeOrAbsolute));
|
|
|
|
|
return new Bitmap(icon);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2024-04-09 00:00:52 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-05 22:14:22 -07:00
|
|
|
|
public void Open(string repo)
|
|
|
|
|
{
|
|
|
|
|
Process.Start(new ProcessStartInfo()
|
|
|
|
|
{
|
|
|
|
|
WorkingDirectory = repo,
|
|
|
|
|
FileName = Executable,
|
|
|
|
|
Arguments = string.Format(OpenCmdArgs, repo),
|
|
|
|
|
UseShellExecute = false,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-07 02:56:53 -07:00
|
|
|
|
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public class JetBrainsState
|
|
|
|
|
{
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("version")]
|
|
|
|
|
public int Version { get; set; } = 0;
|
|
|
|
|
[JsonPropertyName("appVersion")]
|
|
|
|
|
public string AppVersion { get; set; } = string.Empty;
|
|
|
|
|
[JsonPropertyName("tools")]
|
|
|
|
|
public List<JetBrainsTool> Tools { get; set; } = new List<JetBrainsTool>();
|
2024-04-27 05:54:26 -07:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-27 00:12:03 -07:00
|
|
|
|
public class JetBrainsTool
|
|
|
|
|
{
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("channelId")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string ChannelId { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("toolId")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string ToolId { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("productCode")]
|
2024-04-27 00:12:03 -07:00
|
|
|
|
public string ProductCode { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("tag")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string Tag { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("displayName")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string DisplayName { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("displayVersion")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string DisplayVersion { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("buildNumber")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string BuildNumber { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("installLocation")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string InstallLocation { get; set; }
|
2024-04-27 07:05:17 -07:00
|
|
|
|
[JsonPropertyName("launchCommand")]
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public string LaunchCommand { get; set; }
|
2024-04-27 00:12:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-08 02:39:52 -07:00
|
|
|
|
public class ExternalToolsFinder
|
2024-04-07 02:56:53 -07:00
|
|
|
|
{
|
2024-04-08 02:39:52 -07:00
|
|
|
|
public List<ExternalTool> Founded
|
2024-04-07 02:56:53 -07:00
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
private set;
|
2024-04-08 02:39:52 -07:00
|
|
|
|
} = new List<ExternalTool>();
|
2024-04-07 02:56:53 -07:00
|
|
|
|
|
2024-04-27 05:54:26 -07:00
|
|
|
|
public void TryAdd(string name, string icon, string args, string env, Func<string> finder)
|
|
|
|
|
{
|
|
|
|
|
var path = Environment.GetEnvironmentVariable(env);
|
|
|
|
|
if (string.IsNullOrEmpty(path) || !File.Exists(path))
|
|
|
|
|
{
|
|
|
|
|
path = finder();
|
|
|
|
|
if (string.IsNullOrEmpty(path) || !File.Exists(path))
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Founded.Add(new ExternalTool
|
|
|
|
|
{
|
|
|
|
|
Name = name,
|
|
|
|
|
Icon = icon,
|
|
|
|
|
OpenCmdArgs = args,
|
|
|
|
|
Executable = path
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-07 02:56:53 -07:00
|
|
|
|
public void VSCode(Func<string> platform_finder)
|
|
|
|
|
{
|
2024-04-09 00:00:52 -07:00
|
|
|
|
TryAdd("Visual Studio Code", "vscode", "\"{0}\"", "VSCODE_PATH", platform_finder);
|
2024-04-07 02:56:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void VSCodeInsiders(Func<string> platform_finder)
|
|
|
|
|
{
|
2024-04-09 00:00:52 -07:00
|
|
|
|
TryAdd("Visual Studio Code - Insiders", "vscode_insiders", "\"{0}\"", "VSCODE_INSIDERS_PATH", platform_finder);
|
2024-04-07 02:56:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Fleet(Func<string> platform_finder)
|
|
|
|
|
{
|
2024-04-09 00:00:52 -07:00
|
|
|
|
TryAdd("JetBrains Fleet", "fleet", "\"{0}\"", "FLEET_PATH", platform_finder);
|
2024-04-07 02:56:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SublimeText(Func<string> platform_finder)
|
|
|
|
|
{
|
2024-04-09 00:00:52 -07:00
|
|
|
|
TryAdd("Sublime Text", "sublime_text", "\"{0}\"", "SUBLIME_TEXT_PATH", platform_finder);
|
2024-04-07 02:56:53 -07:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-27 00:12:03 -07:00
|
|
|
|
public void FindJetBrainsFromToolbox(Func<string> platform_finder)
|
2024-04-07 02:56:53 -07:00
|
|
|
|
{
|
2024-04-27 05:54:26 -07:00
|
|
|
|
var exclude = new List<string> { "fleet", "dotmemory", "dottrace", "resharper-u", "androidstudio" };
|
|
|
|
|
var supported_icons = new List<string> { "CL", "DB", "DL", "DS", "GO", "IC", "IU", "JB", "PC", "PS", "PY", "QA", "QD", "RD", "RM", "RR", "WRS", "WS" };
|
|
|
|
|
var state = Path.Combine(platform_finder(), "state.json");
|
2024-04-27 00:12:03 -07:00
|
|
|
|
if (File.Exists(state))
|
2024-04-07 02:56:53 -07:00
|
|
|
|
{
|
2024-04-27 05:54:26 -07:00
|
|
|
|
var stateData = JsonSerializer.Deserialize(File.ReadAllText(state), JsonCodeGen.Default.JetBrainsState);
|
|
|
|
|
foreach (var tool in stateData.Tools)
|
2024-04-27 00:12:03 -07:00
|
|
|
|
{
|
2024-04-27 05:54:26 -07:00
|
|
|
|
if (exclude.Contains(tool.ToolId.ToLowerInvariant()))
|
|
|
|
|
continue;
|
2024-04-07 02:56:53 -07:00
|
|
|
|
|
2024-04-27 05:54:26 -07:00
|
|
|
|
Founded.Add(new ExternalTool
|
|
|
|
|
{
|
|
|
|
|
Name = $"JetBrains {tool.DisplayName} {tool.DisplayVersion}",
|
|
|
|
|
Icon = supported_icons.Contains(tool.ProductCode) ? $"JetBrains/{tool.ProductCode}" : $"JetBrains/JB",
|
|
|
|
|
OpenCmdArgs = "\"{0}\"",
|
|
|
|
|
Executable = Path.Combine(tool.InstallLocation, tool.LaunchCommand),
|
|
|
|
|
});
|
|
|
|
|
}
|
2024-04-27 00:12:03 -07:00
|
|
|
|
}
|
2024-04-07 02:56:53 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-05 22:14:22 -07:00
|
|
|
|
}
|