fix(backend): save data exports as data-export.zip

change the random base 64 to a directory rather than part of the
filename, so that users downloading their exports aren't greeted with a
completely incomprehensible file in their downloads folder
This commit is contained in:
sam 2024-12-19 16:19:27 +01:00
parent 96725cc304
commit 661c3eab0f
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
3 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ public class ExportsController(
}
private string ExportUrl(Snowflake userId, string filename) =>
$"{config.MediaBaseUrl}/data-exports/{userId}/{filename}.zip";
$"{config.MediaBaseUrl}/data-exports/{userId}/{filename}/data-export.zip";
[HttpPost]
public async Task<IActionResult> QueueDataExportAsync()

View file

@ -220,5 +220,5 @@ public class CreateDataExportInvocable(
}
private static string ExportPath(Snowflake userId, string b64) =>
$"data-exports/{userId}/{b64}.zip";
$"data-exports/{userId}/{b64}/data-export.zip";
}

View file

@ -128,5 +128,5 @@ public class DataCleanupService(
}
private static string ExportPath(Snowflake userId, string b64) =>
$"data-exports/{userId}/{b64}.zip";
$"data-exports/{userId}/{b64}/data-export.zip";
}