Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stechstudio/laravel-jwt

Helper package that makes it easy to generate, consume, and protect routes with JWT tokens in Laravel
https://github.com/stechstudio/laravel-jwt

jwt jwt-token laravel

Last synced: 3 days ago
JSON representation

Helper package that makes it easy to generate, consume, and protect routes with JWT tokens in Laravel

Awesome Lists containing this project

README

        

![](https://user-images.githubusercontent.com/203749/218332026-c858a5c5-357a-4cbb-bbfd-a6397b24a4c3.png)

# Laravel JWT Tools

[![Latest Version on Packagist](https://img.shields.io/packagist/v/stechstudio/laravel-jwt.svg?style=flat-square)](https://packagist.org/packages/stechstudio/laravel-jwt)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
![Build Status](https://img.shields.io/endpoint?url=https://app.chipperci.com/projects/dc325ad7-6039-4345-8e77-828492ba0bf1/status/v2&style=flat-square)

This package wraps the excellent [lcobucci/jwt](https://github.com/lcobucci/jwt) library with the following benefits:

1) `JWT` facade with helper methods to quickly generate and parse tokens.
2) Enforces a minimal set of claims for generated tokens, like `aud`, `iss`, and `exp`.
3) Validate parsed tokens to ensure our required claims are set properly with signature present and valid.
4) HTTP Middleware to validate a route-specific JWT
5) Request macro to easily access route-specific JWT claims

## Quickstart

### Installation

```php
composer require stechstudio/laravel-jwt
```

### Simple example

You can generate a simple JWT with the `get` method.

```php
$jwt = JWT::get('token-id', ['myclaim' => 'somevalue']);
```

This will generate a token with the ID provided and an array of claims, returning the string token.

### Lifetime

The default token expiration is set to 10 minutes which you can configure, or you can specify a custom lifetime value as a third parameter when creating the token:

```php
$jwt = JWT::get('token-id', ['anything' => 'here'], 3600);
```

This token will expire in one hour. You can also specify the lifetime with Carbon:

```php
$jwt = JWT::get('token-id', ['anything' => 'here'], now()->addMinutes(60));
```

### Signing key

If you are generating a JWT that will be consumed by a different app (very common use case in our company) you can specify the signing key as the fourth parameter.

```php
$jwt = JWT::get('token-id', ['anything' => 'here'], 3600, config('services.otherapp.key'));
```

## Configuration

This package tries to pick sane defaults, while also allowing you to change configs through your .env file.

**Signature key**

Every token is signed. The `JWT_SIGNING_KEY` value is used is available, otherwise `APP_KEY` will be used as the signing key.

**Lifetime**

Default lifetime is 600 seconds / 10 minutes. You can change the default by specifying the number of seconds as `JWT_LIFETIME`.

**Issuer**

The default token issuer (`iss` claim) is your `APP_NAME` lowercase. You can specify a different issuer name via `JWT_ISSUER`.

**Audience**

The default token audience (`aud` claim) is your `APP_NAME` lowercase. You can specify a different audience name via `JWT_AUDIENCE`.

## Building tokens fluently

So far we've looked at the `JWT::get()` helper method which is super quick for simple needs.

For more control over your token you can create it fluently instead.

You can use any of the methods provided by the [underlying `Builder` class](https://lcobucci-jwt.readthedocs.io/en/latest/issuing-tokens/), along with a few new ones like `signWith` and `lifetime`.

```php
$token = JWT::identifiedBy('my-token-id')
->lifetime(3600)
->signWith('custom-signing-key-with-256-bits')
->issuedBy("my-app")
->permittedFor("receiving-app")
->withClaim('myclaim', 'any value')
->getToken()
->toString();
```

## Parsing

You can parse a JWT string into a token:

```php
$token = JWT::parse("... JWT string ...");
```

An exception will be thrown if the JWT cannot be parsed.

## Validate received tokens

Just as this package has opinions on what a generated token should include, we want to ensure those minimums are set appropriately on any received tokens.

After parsing a received token, simply call `isValid` or `validate`, depending on whether you want a boolean result or exceptions thrown. Make sure to pass in the expected token ID.

```php
$token = JWT::parse("... JWT string ...");

$token->isValid('expected-token-id'); // Returns true or false

$token->validate('expected-token-id'); // Throws exceptions for any validation failure
```

At this point you can be certain that the token:

1) Is signed, and the signature is verified (using the configured signature key)
2) Is within the permitted timeframe (has not expired)
3) Is intended for your app (`aud` claim matches the configured audience)
4) Has the expected ID

### Validation exceptions

When calling `validate('expected-token-id')` the following exceptions will be thrown depending on the validation failure:

- `STS\JWT\Exceptions\InvalidSignature`
- `STS\JWT\Exceptions\TokenExpired`
- `STS\JWT\Exceptions\InvalidAudience`
- `STS\JWT\Exceptions\InvalidID`
- `STS\JWT\Exceptions\ValidationException` will be used for any other types of validation failures.

## Retrieving claims

Once you've parsed and validated a token, you can retrieve all token claims with `getClaims` or simply `toArray`.

If you'd like to just retrieve your custom payload claims, use `getPayload`;

```php
// Make our string token
$jwt = JWT::get('token-id', ['foo' => 'bar']);

// Parse it and validate
$token = JWT::parse($jwt)->validate('token-id');

// Ignore registered claims, just get our custom claims
$token->getPayload(); // [ foo => bar ]
```

Or to retrieve just one claim, use `get` passing in the name of the claim. You can optionally pass in a default value as the second parameter;

```php
$token->get("foo"); // bar

$token->get("invalid"); // null

$token->get("invalid", "quz"); // quz
```

## Route middleware

We frequently use JWTs to authorize a request. These are sometimes generated and consumed by the same app, but more frequently they are for cross-app authorization.

You can use the included `jwt` middleware to validate a JWT request. The middleware will look for the JWT in a number of places:

1) As a request parameter named `jwt` or `token`
2) As a route paramater named `jwt` or `token`
3) In the Authorization header either as `Token JWT` or `Bearer :base64encodedJWT`

If a token is found in any of these locations it will be parsed and validated.

### Token ID

By default, the token ID will be expected to match the route name.

For example, with this following route the token will need an ID of `my.home`:

```php
Route::get('/home', [Controller::class, 'home'])->name('my.home')->middleware('jwt');
```

You can specify the required ID by passing it as a middleware parameter:

```php
Route::get('/home', [Controller::class, 'home'])->middleware('jwt:expected-id');
```

## Access claims on request

### All token claims

The Laravel `Request` has a `getClaim` macro on it, so you can grab claims from anywhere.

Example when injecting `$request` into a controller method:

```php
use Illuminate\Http\Request;

class Controller {
public function home(Request $request)
{
echo $request->getClaim('aud'); // The token audience
}
}
```

### Custom payload merged

The token payload (custom claims added to the JWT, not part of the core registered claim set) is merged onto the request attributes, so you can access these just like any other request attribute.

If the JWT has a `foo` claim, you can directly access `$request->foo` or `$request->input('foo')` or even `request('foo')` using the global request helper.

_**Note**: When the payload is merged onto the request, there is a chance that we are stomping on some existing request attributes. Because we **really** trust the payload in a validated JWT, we prefer this behavior. However if you want to disable set `JWT_MERGE_PAYLOAD=false` in your .env file._