mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-12 17:44:31 +00:00
commit
ce734dd1b2
5 changed files with 43 additions and 46 deletions
|
@ -29,6 +29,7 @@ use App\Util\ActivityPub\{
|
||||||
Outbox
|
Outbox
|
||||||
};
|
};
|
||||||
use Zttp\Zttp;
|
use Zttp\Zttp;
|
||||||
|
use App\Services\InstanceService;
|
||||||
|
|
||||||
class FederationController extends Controller
|
class FederationController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -142,13 +143,19 @@ class FederationController extends Controller
|
||||||
|
|
||||||
$headers = $request->headers->all();
|
$headers = $request->headers->all();
|
||||||
$payload = $request->getContent();
|
$payload = $request->getContent();
|
||||||
|
if(!$payload || empty($payload)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
$obj = json_decode($payload, true, 8);
|
$obj = json_decode($payload, true, 8);
|
||||||
|
if(!isset($obj['id'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$domain = parse_url($obj['id'], PHP_URL_HOST);
|
||||||
|
if(in_array($domain, InstanceService::getBannedDomains())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if(isset($obj['type']) && $obj['type'] === 'Delete') {
|
if(isset($obj['type']) && $obj['type'] === 'Delete') {
|
||||||
if(!isset($obj['id'])) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
usleep(5000);
|
|
||||||
$lockKey = 'pf:ap:del-lock:' . hash('sha256', $obj['id']);
|
$lockKey = 'pf:ap:del-lock:' . hash('sha256', $obj['id']);
|
||||||
if( isset($obj['actor']) &&
|
if( isset($obj['actor']) &&
|
||||||
isset($obj['object']) &&
|
isset($obj['object']) &&
|
||||||
|
@ -160,20 +167,19 @@ class FederationController extends Controller
|
||||||
) {
|
) {
|
||||||
if(Cache::get($lockKey) !== null) {
|
if(Cache::get($lockKey) !== null) {
|
||||||
return;
|
return;
|
||||||
|
} else {
|
||||||
|
Cache::put($lockKey, 1, 3600);
|
||||||
|
usleep(5000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Cache::put($lockKey, 1, 3600);
|
|
||||||
dispatch(new DeleteWorker($headers, $payload))->onQueue('delete');
|
dispatch(new DeleteWorker($headers, $payload))->onQueue('delete');
|
||||||
} else {
|
} else {
|
||||||
if(!isset($obj['id'])) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
usleep(5000);
|
|
||||||
$lockKey = 'pf:ap:user-inbox:activity:' . hash('sha256', $obj['id']);
|
$lockKey = 'pf:ap:user-inbox:activity:' . hash('sha256', $obj['id']);
|
||||||
if(Cache::get($lockKey) !== null) {
|
if(Cache::get($lockKey) !== null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Cache::put($lockKey, 1, 3600);
|
Cache::put($lockKey, 1, 3600);
|
||||||
|
usleep(5000);
|
||||||
dispatch(new InboxValidator($username, $headers, $payload))->onQueue('high');
|
dispatch(new InboxValidator($username, $headers, $payload))->onQueue('high');
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
@ -186,12 +192,22 @@ class FederationController extends Controller
|
||||||
|
|
||||||
$headers = $request->headers->all();
|
$headers = $request->headers->all();
|
||||||
$payload = $request->getContent();
|
$payload = $request->getContent();
|
||||||
|
|
||||||
|
if(!$payload || empty($payload)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$obj = json_decode($payload, true, 8);
|
$obj = json_decode($payload, true, 8);
|
||||||
|
if(!isset($obj['id'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$domain = parse_url($obj['id'], PHP_URL_HOST);
|
||||||
|
if(in_array($domain, InstanceService::getBannedDomains())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if(isset($obj['type']) && $obj['type'] === 'Delete') {
|
if(isset($obj['type']) && $obj['type'] === 'Delete') {
|
||||||
if(!isset($obj['id'])) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
$lockKey = 'pf:ap:del-lock:' . hash('sha256', $obj['id']);
|
$lockKey = 'pf:ap:del-lock:' . hash('sha256', $obj['id']);
|
||||||
if( isset($obj['actor']) &&
|
if( isset($obj['actor']) &&
|
||||||
isset($obj['object']) &&
|
isset($obj['object']) &&
|
||||||
|
@ -217,15 +233,6 @@ class FederationController extends Controller
|
||||||
{
|
{
|
||||||
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
||||||
|
|
||||||
$profile = Profile::whereNull('remote_url')
|
|
||||||
->whereUsername($username)
|
|
||||||
->whereIsPrivate(false)
|
|
||||||
->firstOrFail();
|
|
||||||
|
|
||||||
if($profile->status != null) {
|
|
||||||
abort(404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$obj = [
|
$obj = [
|
||||||
'@context' => 'https://www.w3.org/ns/activitystreams',
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
||||||
'id' => $request->getUri(),
|
'id' => $request->getUri(),
|
||||||
|
@ -240,15 +247,6 @@ class FederationController extends Controller
|
||||||
{
|
{
|
||||||
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
abort_if(!config_cache('federation.activitypub.enabled'), 404);
|
||||||
|
|
||||||
$profile = Profile::whereNull('remote_url')
|
|
||||||
->whereUsername($username)
|
|
||||||
->whereIsPrivate(false)
|
|
||||||
->firstOrFail();
|
|
||||||
|
|
||||||
if($profile->status != null) {
|
|
||||||
abort(404);
|
|
||||||
}
|
|
||||||
|
|
||||||
$obj = [
|
$obj = [
|
||||||
'@context' => 'https://www.w3.org/ns/activitystreams',
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
||||||
'id' => $request->getUri(),
|
'id' => $request->getUri(),
|
||||||
|
|
|
@ -49,12 +49,15 @@ class InboxValidator implements ShouldQueue
|
||||||
{
|
{
|
||||||
$username = $this->username;
|
$username = $this->username;
|
||||||
$headers = $this->headers;
|
$headers = $this->headers;
|
||||||
|
|
||||||
|
if(empty($headers) || empty($this->payload) || !isset($headers['signature']) || !isset($headers['date'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$payload = json_decode($this->payload, true, 8);
|
$payload = json_decode($this->payload, true, 8);
|
||||||
|
|
||||||
$profile = Profile::whereNull('domain')->whereUsername($username)->first();
|
|
||||||
|
|
||||||
if(isset($payload['id'])) {
|
if(isset($payload['id'])) {
|
||||||
$lockKey = hash('sha256', $payload['id']);
|
$lockKey = 'ap:icid:' . hash('sha256', $payload['id']);
|
||||||
if(Cache::get($lockKey) !== null) {
|
if(Cache::get($lockKey) !== null) {
|
||||||
// Job processed already
|
// Job processed already
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -62,9 +65,7 @@ class InboxValidator implements ShouldQueue
|
||||||
Cache::put($lockKey, 1, 3600);
|
Cache::put($lockKey, 1, 3600);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!isset($headers['signature']) || !isset($headers['date'])) {
|
$profile = Profile::whereNull('domain')->whereUsername($username)->first();
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(empty($profile) || empty($headers) || empty($payload)) {
|
if(empty($profile) || empty($headers) || empty($payload)) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -47,10 +47,15 @@ class InboxWorker implements ShouldQueue
|
||||||
{
|
{
|
||||||
$profile = null;
|
$profile = null;
|
||||||
$headers = $this->headers;
|
$headers = $this->headers;
|
||||||
|
|
||||||
|
if(empty($headers) || empty($this->payload) || !isset($headers['signature']) || !isset($headers['date'])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$payload = json_decode($this->payload, true, 8);
|
$payload = json_decode($this->payload, true, 8);
|
||||||
|
|
||||||
if(isset($payload['id'])) {
|
if(isset($payload['id'])) {
|
||||||
$lockKey = hash('sha256', $payload['id']);
|
$lockKey = 'ap:icid:' . hash('sha256', $payload['id']);
|
||||||
if(Cache::get($lockKey) !== null) {
|
if(Cache::get($lockKey) !== null) {
|
||||||
// Job processed already
|
// Job processed already
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -58,14 +63,6 @@ class InboxWorker implements ShouldQueue
|
||||||
Cache::put($lockKey, 1, 3600);
|
Cache::put($lockKey, 1, 3600);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!isset($headers['signature']) || !isset($headers['date'])) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(empty($headers) || empty($payload)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if($this->verifySignature($headers, $payload) == true) {
|
if($this->verifySignature($headers, $payload) == true) {
|
||||||
(new Inbox($headers, $profile, $payload))->handle();
|
(new Inbox($headers, $profile, $payload))->handle();
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -65,7 +65,7 @@ class AvatarObserver
|
||||||
@unlink($path);
|
@unlink($path);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($avatar->cdn_url) {
|
if($avatar->cdn_url && config_cache('pixelfed.cloud_storage')) {
|
||||||
$disk = Storage::disk(config('filesystems.cloud'));
|
$disk = Storage::disk(config('filesystems.cloud'));
|
||||||
$base = Str::startsWith($avatar->media_path, 'cache/avatars/');
|
$base = Str::startsWith($avatar->media_path, 'cache/avatars/');
|
||||||
if($base && $disk->exists($avatar->media_path)) {
|
if($base && $disk->exists($avatar->media_path)) {
|
||||||
|
|
|
@ -79,6 +79,7 @@ class MediaService
|
||||||
'mediaType' => $s['mime'],
|
'mediaType' => $s['mime'],
|
||||||
'url' => $s['url'],
|
'url' => $s['url'],
|
||||||
'name' => $s['description'],
|
'name' => $s['description'],
|
||||||
|
'summary' => $s['description'],
|
||||||
'blurhash' => $s['blurhash'],
|
'blurhash' => $s['blurhash'],
|
||||||
'license' => $license
|
'license' => $license
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue