aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsWebApplicationExtensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsWebApplicationExtensions.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsWebApplicationExtensions.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsWebApplicationExtensions.cs b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsWebApplicationExtensions.cs
new file mode 100644
index 0000000..a771547
--- /dev/null
+++ b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/SecretsWebApplicationExtensions.cs
@@ -0,0 +1,42 @@
+using CrupestApi.Commons;
+
+namespace CrupestApi.Secrets;
+
+public static class SecretsWebApplicationExtensions
+{
+ public static WebApplication UseCatchVerifySecretException(this WebApplication app)
+ {
+ app.Use(async (context, next) =>
+ {
+ try
+ {
+ await next(context);
+ }
+ catch (VerifySecretException e)
+ {
+ await context.Response.WriteErrorMessageAsync(e.Message, 401);
+ }
+ });
+
+ return app;
+ }
+
+ public static async Task CheckSecret(this HttpContext context, string key)
+ {
+ var secretsService = context.RequestServices.GetRequiredService<ISecretsService>();
+ await secretsService.VerifySecretForHttpRequestAsync(context.Request, SecretsConstants.SecretManagementKey);
+ }
+
+ public static WebApplication MapSecrets(this WebApplication app, string path)
+ {
+ app.MapGet(path, async (context) =>
+ {
+ await context.CheckSecret(SecretsConstants.SecretManagementKey);
+ var secretsService = context.RequestServices.GetRequiredService<ISecretsService>();
+ var secrets = secretsService.GetSecretListAsync();
+ await context.Response.WriteJsonAsync(secrets);
+ });
+
+ return app;
+ }
+}