kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
		
			
				
	
	
		
			19 wiersze
		
	
	
		
			399 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			19 wiersze
		
	
	
		
			399 B
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace App\Util\Webfinger;
 | 
						|
 | 
						|
use App\Util\Lexer\Nickname;
 | 
						|
 | 
						|
class WebfingerUrl
 | 
						|
{
 | 
						|
    public static function generateWebfingerUrl($url)
 | 
						|
    {
 | 
						|
        $url = Nickname::normalizeProfileUrl($url);
 | 
						|
        $domain = $url['domain'];
 | 
						|
        $username = $url['username'];
 | 
						|
        $path = "https://{$domain}/.well-known/webfinger?resource=acct:{$username}@{$domain}";
 | 
						|
 | 
						|
        return $path;
 | 
						|
    }
 | 
						|
}
 |