2018-12-30 06:10:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Util\ActivityPub\Validator;
|
|
|
|
|
|
|
|
use Validator;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
|
|
|
class Announce {
|
|
|
|
|
|
|
|
public static function validate($payload)
|
|
|
|
{
|
|
|
|
$valid = Validator::make($payload, [
|
|
|
|
'@context' => 'required',
|
|
|
|
'id' => 'required|string',
|
|
|
|
'type' => [
|
|
|
|
'required',
|
|
|
|
Rule::in(['Announce'])
|
|
|
|
],
|
2020-04-30 02:27:36 +00:00
|
|
|
'actor' => 'required|url',
|
2018-12-30 06:10:14 +00:00
|
|
|
'published' => 'required|date',
|
|
|
|
'to' => 'required',
|
|
|
|
'cc' => 'required',
|
2020-04-30 02:27:36 +00:00
|
|
|
'object' => 'required|url'
|
2018-12-30 06:10:14 +00:00
|
|
|
])->passes();
|
|
|
|
|
|
|
|
return $valid;
|
|
|
|
}
|
|
|
|
}
|