|
| 1 | +// Copyright (c) MASA Stack All rights reserved. |
| 2 | +// Licensed under the MIT License. See LICENSE.txt in the project root for license information. |
| 3 | + |
| 4 | +namespace Masa.Contrib.Authentication.Oidc.Cache.Caches; |
| 5 | + |
| 6 | +public class ApiResourceCache : IApiResourceCache |
| 7 | +{ |
| 8 | + IMemoryCacheClient _memoryCacheClient; |
| 9 | + |
| 10 | + public ApiResourceCache(IMemoryCacheClient memoryCacheClient) |
| 11 | + { |
| 12 | + _memoryCacheClient = memoryCacheClient; |
| 13 | + } |
| 14 | + |
| 15 | + public async Task<List<ApiResourceModel>> GetListAsync(IEnumerable<string> names) |
| 16 | + { |
| 17 | + var keys = names.Select(name => $"{CacheKeyConstants.API_RESOURCE_KEY}_{name}"); |
| 18 | + var apiResources = await _memoryCacheClient.GetListAsync<ApiResourceModel>(keys.ToArray()); |
| 19 | + return apiResources.Where(i => i is not null).ToList()!; |
| 20 | + } |
| 21 | + |
| 22 | + public async Task<List<ApiResourceModel>> GetListAsync() |
| 23 | + { |
| 24 | + var apiResources = await _memoryCacheClient.GetAsync<List<ApiResourceModel>>(CacheKeyConstants.API_RESOURCE_KEY) ?? new(); |
| 25 | + return apiResources; |
| 26 | + } |
| 27 | + |
| 28 | + public async Task SetAsync(ApiResource apiResource) |
| 29 | + { |
| 30 | + var model = apiResource.ToModel(); |
| 31 | + string key = $"{CacheKeyConstants.API_RESOURCE_KEY}_{apiResource.Name}"; |
| 32 | + await _memoryCacheClient.SetAsync(key, model); |
| 33 | + // update list cache |
| 34 | + var list = await GetListAsync(); |
| 35 | + list.Set(model, item => item.Name); |
| 36 | + await UpdateListAsync(list); |
| 37 | + } |
| 38 | + |
| 39 | + public async Task SetRangeAsync(IEnumerable<ApiResource> apiResources) |
| 40 | + { |
| 41 | + var models = apiResources.Select(apiScope => apiScope.ToModel()); |
| 42 | + var map = models.ToDictionary(model => $"{CacheKeyConstants.API_RESOURCE_KEY}_{model.Name}", model => model); |
| 43 | + await _memoryCacheClient.SetListAsync(map); |
| 44 | + // update list cache |
| 45 | + var list = await GetListAsync(); |
| 46 | + list.SetRange(models, item => item.Name); |
| 47 | + await UpdateListAsync(list); |
| 48 | + } |
| 49 | + |
| 50 | + public async Task RemoveAsync(ApiResource apiResource) |
| 51 | + { |
| 52 | + string key = $"{CacheKeyConstants.API_RESOURCE_KEY}_{apiResource.Name}"; |
| 53 | + await _memoryCacheClient.RemoveAsync<ApiResourceModel>(key); |
| 54 | + // update list cache |
| 55 | + var list = await GetListAsync(); |
| 56 | + list.Remove(item => item.Name == apiResource.Name); |
| 57 | + await UpdateListAsync(list); |
| 58 | + } |
| 59 | + |
| 60 | + public async Task ResetAsync(IEnumerable<ApiResource> apiResources) |
| 61 | + { |
| 62 | + var models = apiResources.Select(apiScope => apiScope.ToModel()); |
| 63 | + await UpdateListAsync(models); |
| 64 | + var map = models.ToDictionary(model => $"{CacheKeyConstants.API_RESOURCE_KEY}_{model.Name}", model => model); |
| 65 | + await _memoryCacheClient.SetListAsync(map); |
| 66 | + } |
| 67 | + |
| 68 | + private async Task UpdateListAsync(IEnumerable<ApiResourceModel> models) |
| 69 | + { |
| 70 | + await _memoryCacheClient.SetAsync(CacheKeyConstants.API_RESOURCE_KEY, models); |
| 71 | + } |
| 72 | +} |
0 commit comments