123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- namespace App\Services;
- use Cache;
- use Config;
- use App\Models\ConfigCache as ConfigCacheModel;
- class ConfigCacheService
- {
- const CACHE_KEY = 'config_cache:_v0-key:';
- public static function get($key)
- {
- $cacheKey = self::CACHE_KEY . $key;
- $ttl = now()->addHours(12);
- return Cache::remember($cacheKey, $ttl, function() use($key) {
- $allowed = [
- 'app.name',
- 'app.short_description',
- 'app.description',
- 'app.rules',
- 'pixelfed.max_photo_size',
- 'pixelfed.max_album_length',
- 'pixelfed.image_quality',
- 'pixelfed.media_types',
- 'pixelfed.open_registration',
- 'federation.activitypub.enabled',
- 'instance.stories.enabled',
- 'pixelfed.oauth_enabled',
- 'pixelfed.import.instagram.enabled',
- 'pixelfed.bouncer.enabled',
- 'pixelfed.enforce_email_verification',
- 'pixelfed.max_account_size',
- 'pixelfed.enforce_account_limit',
- 'uikit.custom.css',
- 'uikit.custom.js',
- 'uikit.show_custom.css',
- 'uikit.show_custom.js',
- 'about.title',
- 'pixelfed.cloud_storage',
- 'account.autofollow',
- 'account.autofollow_usernames',
- 'config.discover.features',
- // 'system.user_mode'
- ];
- if(!config('instance.enable_cc')) {
- return config($key);
- }
- if(!in_array($key, $allowed)) {
- return config($key);
- }
- $v = config($key);
- $c = ConfigCacheModel::where('k', $key)->first();
- if($c) {
- return $c->v ?? config($key);
- }
- if(!$v) {
- return;
- }
- $cc = new ConfigCacheModel;
- $cc->k = $key;
- $cc->v = $v;
- $cc->save();
- return $v;
- });
- }
- public static function put($key, $val)
- {
- $exists = ConfigCacheModel::whereK($key)->first();
- if($exists) {
- $exists->v = $val;
- $exists->save();
- Cache::put(self::CACHE_KEY . $key, $val, now()->addHours(12));
- return self::get($key);
- }
- $cc = new ConfigCacheModel;
- $cc->k = $key;
- $cc->v = $val;
- $cc->save();
- Cache::put(self::CACHE_KEY . $key, $val, now()->addHours(12));
- return self::get($key);
- }
- }
|