mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add InstanceService
This commit is contained in:
parent
35393edfef
commit
c20a9dfefe
1 changed files with 30 additions and 0 deletions
30
app/Services/InstanceService.php
Normal file
30
app/Services/InstanceService.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
namespace App\Services;
|
||||
|
||||
use Cache;
|
||||
use App\Instance;
|
||||
|
||||
class InstanceService
|
||||
{
|
||||
public static function getBannedDomains()
|
||||
{
|
||||
return Cache::remember('instances:banned:domains', now()->addHours(12), function() {
|
||||
return Instance::whereBanned(true)->pluck('domain')->toArray();
|
||||
});
|
||||
}
|
||||
|
||||
public static function getUnlistedDomains()
|
||||
{
|
||||
return Cache::remember('instances:unlisted:domains', now()->addHours(12), function() {
|
||||
return Instance::whereUnlisted(true)->pluck('domain')->toArray();
|
||||
});
|
||||
}
|
||||
|
||||
public static function getNsfwDomains()
|
||||
{
|
||||
return Cache::remember('instances:auto_cw:domains', now()->addHours(12), function() {
|
||||
return Instance::whereAutoCw(true)->pluck('domain')->toArray();
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue