Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
226 changes: 226 additions & 0 deletions src/FusionAuth/FusionAuthClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,22 @@ public function approveDevice($client_id, $client_secret, $token, $user_code)
->go();
}

/**
* Approve a device grant.
*
* @param array $request The request object containing the device approval information and optional tenantId.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function approveDeviceWithRequest($request)
{
return $this->start()->uri("/oauth2/device/approve")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Cancels the user action.
*
Expand Down Expand Up @@ -331,6 +347,22 @@ public function clientCredentialsGrant($client_id, $client_secret, $scope = NULL
->go();
}

/**
* Make a Client Credentials grant request to obtain an access token.
*
* @param array $request The client credentials grant request containing client authentication, scope and optional tenantId.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function clientCredentialsGrantWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/token")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Adds a comment to the user's account.
*
Expand Down Expand Up @@ -1676,6 +1708,45 @@ public function deleteWebhook($webhookId)
->go();
}

/**
* Start the Device Authorization flow using form-encoded parameters
*
* @param string $client_id The unique client identifier. The client Id is the Id of the FusionAuth Application in which you are attempting to authenticate.
* @param string $client_secret (Optional) The client secret. This value may optionally be provided in the request body instead of the Authorization header.
* @param string $scope (Optional) A space-delimited string of the requested scopes. Defaults to all scopes configured in the Application's OAuth configuration.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function deviceAuthorize($client_id, $client_secret, $scope = NULL)
{
$post_data = array(
'client_id' => $client_id,
'client_secret' => $client_secret,
'scope' => $scope
);
return $this->startAnonymous()->uri("/oauth2/device_authorize")
->bodyHandler(new FormDataBodyHandler($post_data))
->post()
->go();
}

/**
* Start the Device Authorization flow using a request body
*
* @param array $request The device authorization request containing client authentication, scope, and optional device metadata.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function deviceAuthorizeWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/device_authorize")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Disable two-factor authentication for a user.
*
Expand Down Expand Up @@ -1790,6 +1861,40 @@ public function exchangeOAuthCodeForAccessTokenUsingPKCE($code, $client_id, $cli
->go();
}

/**
* Exchanges an OAuth authorization code and code_verifier for an access token.
* Makes a request to the Token endpoint to exchange the authorization code returned from the Authorize endpoint and a code_verifier for an access token.
*
* @param array $request The PKCE OAuth code access token exchange request.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function exchangeOAuthCodeForAccessTokenUsingPKCEWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/token")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Exchanges an OAuth authorization code for an access token.
* Makes a request to the Token endpoint to exchange the authorization code returned from the Authorize endpoint for an access token.
*
* @param array $request The OAuth code access token exchange request.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function exchangeOAuthCodeForAccessTokenWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/token")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Exchange a Refresh Token for an Access Token.
* If you will be using the Refresh Token Grant, you will make a request to the Token endpoint to exchange the user’s refresh token for an access token.
Expand Down Expand Up @@ -1820,6 +1925,23 @@ public function exchangeRefreshTokenForAccessToken($refresh_token, $client_id, $
->go();
}

/**
* Exchange a Refresh Token for an Access Token.
* If you will be using the Refresh Token Grant, you will make a request to the Token endpoint to exchange the user’s refresh token for an access token.
*
* @param array $request The refresh token access token exchange request.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function exchangeRefreshTokenForAccessTokenWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/token")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Exchange a refresh token for a new JWT.
*
Expand Down Expand Up @@ -1868,6 +1990,23 @@ public function exchangeUserCredentialsForAccessToken($username, $password, $cli
->go();
}

/**
* Exchange User Credentials for a Token.
* If you will be using the Resource Owner Password Credential Grant, you will make a request to the Token endpoint to exchange the user’s email and password for an access token.
*
* @param array $request The user credentials access token exchange request.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function exchangeUserCredentialsForAccessTokenWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/token")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Begins the forgot password sequence, which kicks off an email to the user so that they can reset their password.
*
Expand Down Expand Up @@ -2109,6 +2248,22 @@ public function introspectAccessToken($client_id, $token)
->go();
}

/**
* Inspect an access token issued as the result of the User based grant such as the Authorization Code Grant, Implicit Grant, the User Credentials Grant or the Refresh Grant.
*
* @param array $request The access token introspection request.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function introspectAccessTokenWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/introspect")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Inspect an access token issued as the result of the Client Credentials Grant.
*
Expand All @@ -2128,6 +2283,22 @@ public function introspectClientCredentialsAccessToken($token)
->go();
}

/**
* Inspect an access token issued as the result of the Client Credentials Grant.
*
* @param array $request The client credentials access token.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function introspectClientCredentialsAccessTokenWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/introspect")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Issue a new access token (JWT) for the requested Application after ensuring the provided JWT is valid. A valid
* access token is properly signed and not expired.
Expand Down Expand Up @@ -4534,6 +4705,44 @@ public function retrieveUserCodeUsingAPIKey($user_code)
->go();
}

/**
* Retrieve a user_code that is part of an in-progress Device Authorization Grant.
*
* This API is useful if you want to build your own login workflow to complete a device grant.
*
* This request will require an API key.
*
* @param array $request The user code retrieval request including optional tenantId.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function retrieveUserCodeUsingAPIKeyWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/device/user-code")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Retrieve a user_code that is part of an in-progress Device Authorization Grant.
*
* This API is useful if you want to build your own login workflow to complete a device grant.
*
* @param array $request The user code retrieval request.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function retrieveUserCodeWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/device/user-code")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Retrieves all the comments for the user with the given Id.
*
Expand Down Expand Up @@ -6267,6 +6476,23 @@ public function validateDevice($user_code, $client_id)
->go();
}

/**
* Validates the end-user provided user_code from the user-interaction of the Device Authorization Grant.
* If you build your own activation form you should validate the user provided code prior to beginning the Authorization grant.
*
* @param array $request The device validation request.
*
* @return ClientResponse The ClientResponse.
* @throws \Exception
*/
public function validateDeviceWithRequest($request)
{
return $this->startAnonymous()->uri("/oauth2/device/validate")
->bodyHandler(new JSONBodyHandler($request))
->post()
->go();
}

/**
* Validates the provided JWT (encoded JWT string) to ensure the token is valid. A valid access token is properly
* signed and not expired.
Expand Down