上一篇,我們實現了基於 DotNetty
的通訊基礎模組的搭建,本篇,主要實現待發布 Web 專案的整合。
為了測試, 我建立了一個基於 .NET 4.8 的 Web 專案 OpenDeploy.TestWebProject
我本機的程式碼倉儲路徑是: D:\Projects\Back\dotnet\Study\OpenDeploy.TestWebProject
Git
是一個開源的分散式版本控制系統。我們使用它實現自動化檢測需要釋出的檔案。
Gitee
, 倉儲地址如下: OpenDeply.TestWebProject
Git
命令/// <summary> 解決方案領域模型 </summary>
[Table("Solution")]
public class Solution
{
[Key]
public int Id { get; set; }
/// <summary> 解決方案名稱 </summary>
public string SolutionName { get; set; } = string.Empty;
/// <summary> 解決方案Git倉儲路徑 </summary>
public string GitRepositoryPath { get; set; } = string.Empty;
}
/// <summary> 確定設定解決方案 </summary>
[RelayCommand]
private void OkConfigSolution()
{
try
{
if (string.IsNullOrEmpty(ConfigSolution.SolutionName))
{
throw new Exception("請填寫解決方案名稱");
}
if (!GitHelper.IsValidRepository(ConfigSolution.GitRepositoryPath))
{
throw new Exception("非法的Git倉儲路徑");
}
}
catch (Exception ex)
{
Growl.ClearGlobal();
Growl.WarningGlobal(ex.Message);
return;
}
//持久化到Sqlite
solutionRepository.AddSolution(ConfigSolution.Map2Entity());
Growl.SuccessGlobal("操作成功");
//重新載入解決方案
LoadSolutions();
//關閉彈窗
configSolutionDialog?.Close();
}
/// <summary> 執行git命令 </summary>
private async Task RunGitCommand(string cmd)
{
var loading = Loading.Show();
string output = string.Empty;
LogText = string.Empty;
await Task.Run(() =>
{
var _process = new Process();
_process.StartInfo.WorkingDirectory = GitRepositoryPath;
_process.StartInfo.FileName = "cmd.exe";
_process.StartInfo.Arguments = "/C " + cmd;
_process.StartInfo.UseShellExecute = false;
_process.StartInfo.CreateNoWindow = true;
_process.StartInfo.RedirectStandardInput = true;
_process.StartInfo.RedirectStandardOutput = true;
_process.StartInfo.RedirectStandardError = true;
_process.Start();//啟動程式
output = _process.StandardOutput.ReadToEnd();
if (string.IsNullOrEmpty(output))
{
output = _process.StandardError.ReadToEnd();
if (string.IsNullOrEmpty(output))
{
output = "沒有返回值";
}
}
_process.WaitForExit();
_process.Close();
});
LogText = output;
loading.Close();
}
至此,我們實現了待發布專案的設定與發現,簡單整合了常用的 Git
命令等
專案暫且就叫
OpenDeploy
吧
歡迎大家拍磚,Star
計劃下一步,實現一鍵釋出,自動檢測到自上次釋出以來的程式碼變化,自動識別要釋出的檔案,一次性打包通過 DotNetty
傳送到伺服器