mirror of https://github.com/pixelfed/pixelfed.git
24 lines
512 B
PHP
24 lines
512 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Zttp\Zttp;
|
|
use App\Profile;
|
|
use App\Util\ActivityPub\Helpers;
|
|
use App\Util\ActivityPub\HttpSignature;
|
|
|
|
class ActivityPubFetchService
|
|
{
|
|
public static function get($url)
|
|
{
|
|
$headers = HttpSignature::instanceActorSign($url, false, [
|
|
'Accept' => 'application/activity+json, application/json',
|
|
'User-Agent' => '(Pixelfed/'.config('pixelfed.version').'; +'.config('app.url').')'
|
|
]);
|
|
|
|
return Zttp::withHeaders($headers)
|
|
->timeout(30)
|
|
->get($url)
|
|
->body();
|
|
}
|
|
} |