Skip to content

Commit 5288385

Browse files
committed
Fix broken JIRA backups
* The endpoints for JIRA cloud instance backups have changed yet again. The new backup progress URL was identified as part of the workaround for JRACLOUD-67169. https://jira.atlassian.com/browse/JRACLOUD-67169?_ga=2.65690921.667524349.1513995124-996925628.1504012227
1 parent f359cbf commit 5288385

File tree

3 files changed

+42
-34
lines changed

3 files changed

+42
-34
lines changed

AtlassianCloudBackupsLibrary/BackupAtlassianServiceV2.cs

+40-32
Original file line numberDiff line numberDiff line change
@@ -251,50 +251,58 @@ public async Task<IBackupJob> Execute(bool runCleanUpOnly = false)
251251

252252
if (resultPropExists)
253253
{
254-
var resultProp = JObject.Parse(body["result"].ToString());
255-
256-
var mediaId = resultProp["mediaFileId"].ToString();
257-
258-
var mediaFileName = resultProp["fileName"].ToString();
259-
260-
backupFileName = mediaId + "/" + mediaFileName;
261254
backupCreated = true;
262-
263-
Logger.Current.Log(_logLabel, "Backup file generation complete.");
255+
256+
var resultProp = body["result"];
257+
258+
if (resultProp != null)
259+
{
260+
backupFileName = resultProp.ToString();
261+
262+
Logger.Current.Log(_logLabel, "Backup file generation complete.");
263+
}
264+
else
265+
{
266+
Logger.Current.Log(_logLabel, "[DEBUG] Result node: " + resultProp);
267+
Logger.Current.Log(_logLabel, "Unable to get backup link from the service. You must download it manually!");
268+
}
264269
}
265270
}
266271

267272
System.Threading.Thread.Sleep(5000);
268273
}
269274

270-
var backupFileUrl = string.Format(_service.BaseUrl, Account) + _service.DownloadUrlBase +
271-
backupFileName;
272-
273-
Logger.Current.Log(_logLabel,
274-
string.Format("Getting generated backup file from {0}", backupFileUrl));
275-
// Download the backup
276-
using (var fileResponse = await Client.GetAsync(_service.DownloadUrlBase + backupFileName,
277-
HttpCompletionOption.ResponseHeadersRead))
275+
if (!string.IsNullOrEmpty(backupFileName))
278276
{
279-
Logger.Current.Log(_logLabel,
280-
string.Format("Downloading {0} bytes of data...",
281-
fileResponse.Content.Headers.ContentLength));
277+
var backupFileUrl = string.Format(_service.BaseUrl, Account) + _service.DownloadUrlBase +
278+
backupFileName;
282279

283-
using (var stream = await fileResponse.Content.ReadAsStreamAsync())
280+
Logger.Current.Log(_logLabel,
281+
string.Format("Getting generated backup file from {0}", backupFileUrl));
282+
// Download the backup
283+
using (var fileResponse = await Client.GetAsync(_service.DownloadUrlBase + backupFileName,
284+
HttpCompletionOption.ResponseHeadersRead))
284285
{
285-
using (var outStream =
286-
File.Open(
287-
Path.Combine(BackupDestination,
288-
string.Format(FileName, DateTime.Now.ToString("MMddyy"))), FileMode.Create))
286+
Logger.Current.Log(_logLabel,
287+
string.Format("Downloading {0} bytes of data...",
288+
fileResponse.Content.Headers.ContentLength.ToString()));
289+
290+
using (var stream = await fileResponse.Content.ReadAsStreamAsync())
289291
{
290-
await stream.CopyToAsync(outStream);
292+
using (var outStream =
293+
File.Open(
294+
Path.Combine(BackupDestination,
295+
string.Format(FileName, DateTime.Now.ToString("MMddyy"))), FileMode.Create))
296+
{
297+
await stream.CopyToAsync(outStream);
298+
}
291299
}
292300
}
293-
294-
if (File.Exists("backupTaskID"))
295-
{
296-
File.Delete("backupTaskID");
297-
}
301+
}
302+
303+
if (File.Exists("backupTaskID"))
304+
{
305+
File.Delete("backupTaskID");
298306
}
299307

300308
Logger.Current.Log(_logLabel, "Download complete.");
@@ -329,7 +337,7 @@ private string GetServiceToBeBackedUpLabel()
329337

330338
switch (typeof(T).Name)
331339
{
332-
case "JIRAService":
340+
case "JiraService":
333341
serviceToBeBackedUp = "JIRA";
334342
break;
335343
case "ConfluenceService":

AtlassianCloudBackupsLibrary/Helpers/Logger.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void Init(string logPath, string logFileName)
3535

3636
public void Log(string topic, string entry)
3737
{
38-
var logEntry = string.Format("{0} [{1}] {2}", DateTime.Now, topic, entry);
38+
var logEntry = string.Format("{0} [{1}] {2}", DateTime.Now.ToString(), topic, entry);
3939

4040
File.AppendAllLines(Path.Combine(_logLocation, _logFile), new[] { logEntry });
4141
Console.WriteLine(logEntry);

AtlassianCloudBackupsLibrary/JiraService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public JiraService()
1414
BaseUrl = "https://{0}.atlassian.net/";
1515
AuthUrl = "rest/auth/1/session";
1616
BackupTriggerUrl = "rest/backup/1/export/runbackup";
17-
BackupProgressUrl = "rest/internal/2/task/progress/{0}";
17+
BackupProgressUrl = "rest/backup/1/export/getProgress?taskId={0}";
1818
DownloadUrlBase = "plugins/servlet/export/download/";
1919
LastTaskIdUrl = "rest/backup/1/export/lastTaskId";
2020
}

0 commit comments

Comments
 (0)