|
1 | 1 | using Azure.Functions.Cli.Arm.Models;
|
2 | 2 | using Azure.Functions.Cli.Common;
|
| 3 | +using Azure.Functions.Cli.Models; |
3 | 4 | using Colors.Net;
|
4 | 5 | using Newtonsoft.Json;
|
5 | 6 | using System;
|
@@ -51,61 +52,58 @@ public static async Task<DeployStatus> WaitForRemoteBuild(HttpClient client, Sit
|
51 | 52 |
|
52 | 53 | private static async Task<string> GetLatestDeploymentId(HttpClient client, Site functionApp)
|
53 | 54 | {
|
54 |
| - var json = await InvokeRequest<List<Dictionary<string, string>>>(client, HttpMethod.Get, "/deployments"); |
| 55 | + var deployments = await InvokeRequest<List<DeploymentResponse>>(client, HttpMethod.Get, "/deployments"); |
55 | 56 |
|
56 | 57 | // Automatically ordered by received time
|
57 |
| - var latestDeployment = json.First(); |
58 |
| - if (latestDeployment.TryGetValue("status", out string statusString)) |
| 58 | + var latestDeployment = deployments.First(); |
| 59 | + DeployStatus? status = latestDeployment.Status; |
| 60 | + if (status == DeployStatus.Building || status == DeployStatus.Deploying |
| 61 | + || status == DeployStatus.Success || status == DeployStatus.Failed) |
59 | 62 | {
|
60 |
| - DeployStatus status = ConvertToDeployementStatus(statusString); |
61 |
| - if (status == DeployStatus.Building || status == DeployStatus.Deploying |
62 |
| - || status == DeployStatus.Success || status == DeployStatus.Failed) |
63 |
| - { |
64 |
| - return latestDeployment["id"]; |
65 |
| - } |
| 63 | + return latestDeployment.Id; |
66 | 64 | }
|
67 | 65 | return null;
|
68 | 66 | }
|
69 | 67 |
|
70 | 68 | private static async Task<DeployStatus> GetDeploymentStatusById(HttpClient client, Site functionApp, string id)
|
71 | 69 | {
|
72 |
| - Dictionary<string, string> json = await InvokeRequest<Dictionary<string, string>>(client, HttpMethod.Get, $"/deployments/{id}"); |
73 |
| - if (!json.TryGetValue("status", out string statusString)) |
| 70 | + var deploymentInfo = await InvokeRequest<DeploymentResponse>(client, HttpMethod.Get, $"/deployments/{id}"); |
| 71 | + DeployStatus? status = deploymentInfo.Status; |
| 72 | + if (status == null) |
74 | 73 | {
|
75 | 74 | return DeployStatus.Unknown;
|
76 | 75 | }
|
77 |
| - |
78 |
| - return ConvertToDeployementStatus(statusString); |
| 76 | + return status.Value; |
79 | 77 | }
|
80 | 78 |
|
81 | 79 | private static async Task<DateTime> DisplayDeploymentLog(HttpClient client, Site functionApp, string id, DateTime lastUpdate, Uri innerUrl = null, StringBuilder innerLogger = null)
|
82 | 80 | {
|
83 | 81 | string logUrl = innerUrl != null ? innerUrl.ToString() : $"/deployments/{id}/log";
|
84 | 82 | StringBuilder sbLogger = innerLogger != null ? innerLogger : new StringBuilder();
|
85 | 83 |
|
86 |
| - var json = await InvokeRequest<List<Dictionary<string, string>>>(client, HttpMethod.Get, logUrl); |
87 |
| - var logs = json.Where(dict => DateTime.Parse(dict["log_time"]) > lastUpdate || dict["details_url"] != null); |
| 84 | + var deploymentLogs = await InvokeRequest<List<DeploymentLogResponse>>(client, HttpMethod.Get, logUrl); |
| 85 | + var newLogs = deploymentLogs.Where(deploymentLog => deploymentLog.LogTime > lastUpdate || !string.IsNullOrEmpty(deploymentLog.DetailsUrlString)); |
88 | 86 | DateTime currentLogDatetime = lastUpdate;
|
89 | 87 |
|
90 |
| - foreach (var log in logs) |
| 88 | + foreach (var log in newLogs) |
91 | 89 | {
|
92 | 90 | // Filter out details_url log
|
93 |
| - if (DateTime.Parse(log["log_time"]) > lastUpdate) |
| 91 | + if (log.LogTime > lastUpdate) |
94 | 92 | {
|
95 |
| - sbLogger.AppendLine(log["message"]); |
| 93 | + sbLogger.AppendLine(log.Message); |
96 | 94 | }
|
97 | 95 |
|
98 | 96 | // Recursively log details_url from scm/api/deployments/xxx/log endpoint
|
99 |
| - if (log["details_url"] != null && Uri.TryCreate(log["details_url"], UriKind.Absolute, out Uri detailsUrl)) |
| 97 | + if (!string.IsNullOrEmpty(log.DetailsUrlString) && Uri.TryCreate(log.DetailsUrlString, UriKind.Absolute, out Uri detailsUrl)) |
100 | 98 | {
|
101 | 99 | DateTime innerLogDatetime = await DisplayDeploymentLog(client, functionApp, id, currentLogDatetime, detailsUrl, sbLogger);
|
102 | 100 | currentLogDatetime = innerLogDatetime > currentLogDatetime ? innerLogDatetime : currentLogDatetime;
|
103 | 101 | }
|
104 | 102 | }
|
105 | 103 |
|
106 |
| - if (logs.LastOrDefault() != null) |
| 104 | + if (newLogs.LastOrDefault() != null) |
107 | 105 | {
|
108 |
| - DateTime lastLogDatetime = DateTime.Parse(logs.Last()["log_time"]); |
| 106 | + DateTime lastLogDatetime = newLogs.Last().LogTime; |
109 | 107 | currentLogDatetime = lastLogDatetime > currentLogDatetime ? lastLogDatetime : currentLogDatetime;
|
110 | 108 | }
|
111 | 109 |
|
@@ -139,14 +137,5 @@ await RetryHelper.Retry(async () =>
|
139 | 137 | return default(T);
|
140 | 138 | }
|
141 | 139 | }
|
142 |
| - |
143 |
| - private static DeployStatus ConvertToDeployementStatus(string statusString) |
144 |
| - { |
145 |
| - if (Enum.TryParse(statusString, out DeployStatus result)) |
146 |
| - { |
147 |
| - return result; |
148 |
| - } |
149 |
| - return DeployStatus.Unknown; |
150 |
| - } |
151 | 140 | }
|
152 | 141 | }
|
0 commit comments