mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-05-31 14:12:07 +05:30
35 lines
893 B
PHP
35 lines
893 B
PHP
<?php
|
|
/**
|
|
* OAuth 2.0 Redirect URI generator
|
|
*
|
|
* @package league/oauth2-server
|
|
* @author Alex Bilbie <hello@alexbilbie.com>
|
|
* @copyright Copyright (c) Alex Bilbie
|
|
* @license http://mit-license.org/
|
|
* @link https://github.com/thephpleague/oauth2-server
|
|
*/
|
|
|
|
namespace League\OAuth2\Server\Utils;
|
|
|
|
/**
|
|
* RedirectUri class
|
|
*/
|
|
class RedirectUri
|
|
{
|
|
/**
|
|
* Generate a new redirect uri
|
|
*
|
|
* @param string $uri The base URI
|
|
* @param array $params The query string parameters
|
|
* @param string $queryDelimiter The query string delimiter (default: "?")
|
|
*
|
|
* @return string The updated URI
|
|
*/
|
|
public static function make($uri, $params = [], $queryDelimiter = '?')
|
|
{
|
|
$uri .= (strstr($uri, $queryDelimiter) === false) ? $queryDelimiter : '&';
|
|
|
|
return $uri . http_build_query($params);
|
|
}
|
|
}
|