mirror of https://github.com/pixelfed/pixelfed.git
Add ActivityPub Move validator
This commit is contained in:
parent
42424028b0
commit
909a6c725b
|
@ -0,0 +1,23 @@
|
|||
<?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();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue