Inheritance: BindableBase
Example #1
0
 void PerformLoadTestLog() {
     var log = new LoadLogViewModel();
     if (LoadLogService.ShowDialog(MessageButton.OKCancel, "Load log", log) == MessageResult.OK) {
         string url = log.Url;
         if (string.IsNullOrEmpty(url)) {
             MessageBoxService.Show("Build url is not specified.", "Build log error", MessageBoxButton.OK, MessageBoxImage.Error);
             return;
         }
         var match = parseBuildRegex.Match(url);
         if (!match.Success) {
             MessageBoxService.Show("Specified url doesn`t match the pattern:\r\nhttp://{server}/{namespace}/{name}/builds/{buildId}", "Build log error", MessageBoxButton.OK, MessageBoxImage.Error);
             return;
         }
         var repo = $@"http://{match.Groups["server"]}/{match.Groups["nspace"]}/{match.Groups["name"]}.git";
         var artifacts = Repositories.SelectedBranch.DownloadArtifacts(repo, new Build() { Id = Convert.ToInt32(match.Groups["build"].Value) });
         if (artifacts == null) {
             MessageBoxService.Show("Build artifacts not found", "Build log error", MessageBoxButton.OK, MessageBoxImage.Error);
             return;
         }
         ArtifactsViewModel model = new ArtifactsViewModel(new ArtifactsFile() { FileName = "test.zip" }, artifacts);
         ShowLogsService.Show(model);
     }
 }