mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Lint
This commit is contained in:
parent
f4ef96e847
commit
ad30498dbc
1 changed files with 6 additions and 5 deletions
|
@ -72,14 +72,14 @@ class FederationController extends Controller
|
||||||
return response()->json($res, 200, [], JSON_UNESCAPED_SLASHES);
|
return response()->json($res, 200, [], JSON_UNESCAPED_SLASHES);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(str_starts_with($resource, 'https://')) {
|
if (str_starts_with($resource, 'https://')) {
|
||||||
if(str_starts_with($resource, 'https://' . $domain . '/users/')) {
|
if (str_starts_with($resource, 'https://'.$domain.'/users/')) {
|
||||||
$username = str_replace('https://' . $domain . '/users/', '', $resource);
|
$username = str_replace('https://'.$domain.'/users/', '', $resource);
|
||||||
if(strlen($username) > 15) {
|
if (strlen($username) > 15) {
|
||||||
return response('', 400);
|
return response('', 400);
|
||||||
}
|
}
|
||||||
$stripped = str_replace(['_', '.', '-'], '', $username);
|
$stripped = str_replace(['_', '.', '-'], '', $username);
|
||||||
if(!ctype_alnum($stripped)) {
|
if (! ctype_alnum($stripped)) {
|
||||||
return response('', 400);
|
return response('', 400);
|
||||||
}
|
}
|
||||||
$key = 'federation:webfinger:sha256:url-username:'.$username;
|
$key = 'federation:webfinger:sha256:url-username:'.$username;
|
||||||
|
@ -92,6 +92,7 @@ class FederationController extends Controller
|
||||||
}
|
}
|
||||||
$webfinger = (new Webfinger($profile))->generate();
|
$webfinger = (new Webfinger($profile))->generate();
|
||||||
Cache::put($key, $webfinger, 1209600);
|
Cache::put($key, $webfinger, 1209600);
|
||||||
|
|
||||||
return response()->json($webfinger, 200, [], JSON_UNESCAPED_SLASHES)
|
return response()->json($webfinger, 200, [], JSON_UNESCAPED_SLASHES)
|
||||||
->header('Access-Control-Allow-Origin', '*');
|
->header('Access-Control-Allow-Origin', '*');
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue