Update AutolinkService, optimize lookups

pull/5356/head
Daniel Supernault 3 months ago
parent 9eeb7b6741
commit eac2c19601
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -2,53 +2,25 @@
namespace App\Services; namespace App\Services;
use Cache;
use App\Profile; use App\Profile;
use Illuminate\Support\Str; use Cache;
use Illuminate\Support\Facades\Http; use Purify;
use App\Util\Webfinger\WebfingerUrl;
class AutolinkService class AutolinkService
{ {
const CACHE_KEY = 'pf:services:autolink:'; const CACHE_KEY = 'pf:services:autolink:mue:';
public static function mentionedUsernameExists($username)
{
$key = 'pf:services:autolink:userexists:' . hash('sha256', $username);
return Cache::remember($key, 3600, function() use($username) { public static function mentionedUsernameExists($username)
$remote = Str::of($username)->contains('@'); {
$profile = Profile::whereUsername($username)->first(); if (str_starts_with($username, '@')) {
if($profile) { if (substr_count($username, '@') === 1) {
if($profile->domain != null) { $username = substr($username, 1);
$instance = InstanceService::getByDomain($profile->domain); }
if($instance && $instance->banned == true) { }
return false; $name = Purify::clean(strtolower($username));
}
}
return true;
} else {
if($remote) {
$parts = explode('@', $username);
$domain = last($parts);
$instance = InstanceService::getByDomain($domain);
if($instance) { return Cache::remember(self::CACHE_KEY.base64_encode($name), 7200, function () use ($name) {
if($instance->banned == true) { return Profile::where('username', $name)->exists();
return false; });
} else { }
$wf = WebfingerUrl::generateWebfingerUrl($username);
$res = Http::head($wf);
return $res->ok();
}
} else {
$wf = WebfingerUrl::generateWebfingerUrl($username);
$res = Http::head($wf);
return $res->ok();
}
}
}
return false;
});
}
} }

Loading…
Cancel
Save