mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-11 00:54:50 +00:00
24 lines
505 B
PHP
24 lines
505 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Util\ActivityPub\Validator;
|
||
|
|
||
|
use Illuminate\Validation\Rule;
|
||
|
use Validator;
|
||
|
|
||
|
class MoveValidator
|
||
|
{
|
||
|
public static function validate($payload)
|
||
|
{
|
||
|
return Validator::make($payload, [
|
||
|
'@context' => 'required',
|
||
|
'type' => [
|
||
|
'required',
|
||
|
Rule::in(['Move']),
|
||
|
],
|
||
|
'actor' => 'required|url',
|
||
|
'object' => 'required|url',
|
||
|
'target' => 'required|url',
|
||
|
])->passes();
|
||
|
}
|
||
|
}
|