Add MediaBlocklistService

pull/2354/head
Daniel Supernault 2020-07-26 22:14:57 -06:00
rodzic 8ffad2b615
commit 5d0a24a779
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 44 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,44 @@
<?php
namespace App\Services;
use Cache;
use Illuminate\Support\Facades\File;
use App\Media;
use App\MediaBlocklist;
class MediaBlocklistService
{
public static function get()
{
return MediaBlocklist::whereActive(true)
->pluck('sha256')
->toArray();
}
public static function exists($hash)
{
$hashes = self::get();
return in_array($hash, $hashes) == true;
}
public static function remove($hash)
{
if(!self::exists($hash)) {
return;
}
MediaBlocklist::whereSha256($hash)->delete();
return;
}
public static function add($hash, $metadata)
{
$m = new MediaBlocklist;
$m->sha256 = $hash;
$m->active = true;
$m->metadata = json_encode($metadata);
$m->save();
return $m;
}
}