2020-04-27 05:43:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Services;
|
|
|
|
|
2021-09-20 06:21:16 +00:00
|
|
|
use Illuminate\Support\Facades\Http;
|
2020-04-27 05:43:54 +00:00
|
|
|
use App\Profile;
|
|
|
|
use App\Util\ActivityPub\Helpers;
|
|
|
|
use App\Util\ActivityPub\HttpSignature;
|
2022-12-05 07:46:55 +00:00
|
|
|
use Illuminate\Http\Client\ConnectionException;
|
2020-04-27 05:43:54 +00:00
|
|
|
|
|
|
|
class ActivityPubFetchService
|
|
|
|
{
|
2021-01-17 19:51:07 +00:00
|
|
|
public static function get($url)
|
2020-04-27 05:43:54 +00:00
|
|
|
{
|
2021-01-26 04:44:07 +00:00
|
|
|
if(!Helpers::validateUrl($url)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-09-20 06:21:16 +00:00
|
|
|
$headers = HttpSignature::instanceActorSign($url, false);
|
2022-12-23 14:12:59 +00:00
|
|
|
$headers['Accept'] = 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"';
|
2021-09-20 06:21:16 +00:00
|
|
|
$headers['User-Agent'] = '(Pixelfed/'.config('pixelfed.version').'; +'.config('app.url').')';
|
2021-01-17 19:51:07 +00:00
|
|
|
|
2022-12-05 07:46:55 +00:00
|
|
|
try {
|
|
|
|
$res = Http::withHeaders($headers)
|
|
|
|
->timeout(10)
|
|
|
|
->get($url);
|
|
|
|
} catch (ConnectionException $e) {
|
|
|
|
return;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(!$res->ok()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return $res->body();
|
2020-04-27 05:43:54 +00:00
|
|
|
}
|
2021-09-20 06:21:16 +00:00
|
|
|
}
|