mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Add Undo Follow validator
This commit is contained in:
parent
3174233598
commit
3efd27f847
1 changed files with 30 additions and 0 deletions
30
app/Util/ActivityPub/Validator/UndoFollow.php
Normal file
30
app/Util/ActivityPub/Validator/UndoFollow.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
namespace App\Util\ActivityPub\Validator;
|
||||
|
||||
use Validator;
|
||||
use Illuminate\Validation\Rule;
|
||||
|
||||
class UndoFollow {
|
||||
|
||||
public static function validate($payload)
|
||||
{
|
||||
$valid = Validator::make($payload, [
|
||||
'@context' => 'required',
|
||||
'id' => 'required|string',
|
||||
'type' => [
|
||||
'required',
|
||||
Rule::in(['Undo'])
|
||||
],
|
||||
'actor' => 'required|url',
|
||||
'object.actor' => 'required|url',
|
||||
'object.object' => 'required|url',
|
||||
'object.type' => [
|
||||
'required',
|
||||
Rule::in(['Follow'])
|
||||
],
|
||||
])->passes();
|
||||
|
||||
return $valid;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue