diff options
author | crupest <crupest@outlook.com> | 2022-12-02 11:04:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-02 13:35:35 +0800 |
commit | 879fb614c6853ab3bb83155c82722afb2933fc60 (patch) | |
tree | 2f80b57945408b8af83556a4efe5a92dea98e025 /docker/crupest-api/CrupestApi/CrupestApi.Secrets/ISecretsService.cs | |
parent | 31416d8e047e4209f797881fd24e0e77256f3da1 (diff) | |
download | crupest-879fb614c6853ab3bb83155c82722afb2933fc60.tar.gz crupest-879fb614c6853ab3bb83155c82722afb2933fc60.tar.bz2 crupest-879fb614c6853ab3bb83155c82722afb2933fc60.zip |
...
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Secrets/ISecretsService.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Secrets/ISecretsService.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Secrets/ISecretsService.cs b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/ISecretsService.cs new file mode 100644 index 0000000..c42fbdc --- /dev/null +++ b/docker/crupest-api/CrupestApi/CrupestApi.Secrets/ISecretsService.cs @@ -0,0 +1,21 @@ +namespace CrupestApi.Secrets; + +public interface ISecretsService +{ + Task<List<SecretInfo>> GetSecretListAsync(bool includeExpired = false, bool includeRevoked = false); + + Task<List<SecretInfo>> GetSecretListByKeyAsync(string key, bool includeExpired = false, bool includeRevoked = false); + + Task<bool> VerifySecretAsync(string key, string secret); + + // Check if "secret" query param exists and is only one. Then check the secret is valid for given key. + // If check fails, will throw a VerifySecretException with proper message that can be send to client. + Task VerifySecretForHttpRequestAsync(HttpRequest request, string key, string queryKey = "secret"); + + Task<SecretInfo> CreateSecretAsync(string key, string description, DateTime? expireTime = null); + + Task RevokeSecretAsync(string secret); + + // Throw SecretNotExistException if request secret does not exist. + Task<SecretInfo> ModifySecretAsync(string secret, SecretModifyRequest modifyRequest); +} |