phpway / one-auth-server
Simple OAuth2 server implementation with limited functionality designed for Single Page Applications
Requires
- php: ^7.4 || ^8.0
- hidehalo/nanoid-php: ^1.1
- psr/http-message: ^1.1|^2.0
README
OneAuth server is very simple OAuth2 server implementation with limited functionality specifically designed for authenticating single page applications (SPA) according to the workflow described below with exclusive use of reference tokens only.
If you need a fully-featured OAuth2 server implementation, you can look up the official OAuth page https://oauth.net/code/php/.
Features
At the moment, OneAuth server provides 3 controllers:
AuthorizeController
- handle requests for obtaining theAuthorization Code
which is one-time use, short-lived random code to be used by SPA for obtaining theAccess Token
.TokenController
- handle requests for obtaining theAccess Token
.ResourceController
- to verify API requests.
Request data required for each controller together with response details are described in the workflow below.
Since OneAuth server is designed for authenticating SPAs, all communication between OneAuth server and the client app is transparent to the user (either via url search params, or via sending form data in POST requests), meaning there is no back channel for exchanging data between these two entities.
Thus, there is no client secret
in the workflow as the SPA has no mechanism to hide it. But it uses PKCE protection that requires the client app sending code verifier
(random string) hash in the initial request for the authorization code, and then sending code verifier in plain text when exchanging this authorization code for the access token.
PSR-7 Request / Response
OneAuth server uses PSR-7 compatible request and response objects for handling requests to obtain authorization codes and/or access tokens. Thus, you will need to provide a PSR-7 implementation that best fits your application. Here are few options you can choose from:
- Slim-Psr7 - Slim Framework PSR-7 implementation
- httpsoft/http-message & httpsoft/http-server-request - Fast, strict and lightweight implementation
To send the response to the client, you will also need to implement a response emitter, or use an existing one (for example ResponseEmitter.php from the Slim framework).
SPA Workflow
TODOs
- Add resource controller for protecting APIs
- Recognize token in headers
- Recognize token in GET
- Recognize token in POST
- Implement revoking tokens
- Individual token
- All for given user
- Add functionality for refresh tokens