388 lines
9.9 KiB
Plaintext
388 lines
9.9 KiB
Plaintext
---
|
|
title: Authentication Operations
|
|
label: Operations
|
|
order: 30
|
|
desc: Enabling Authentication automatically makes key operations available such as Login, Logout, Verify, Unlock, Reset Password and more.
|
|
keywords: authentication, config, configuration, documentation, Content Management System, cms, headless, javascript, node, react, express
|
|
---
|
|
|
|
Enabling Authentication on a Collection automatically exposes additional auth-based operations in the Local, REST, and GraphQL APIs.
|
|
|
|
### Access
|
|
|
|
The Access operation returns what a logged in user can and can't do with the collections and globals that are registered via your config. This data can be immensely helpful if your app needs to show and hide certain features based on access control, as the Payload Admin panel does.
|
|
|
|
**REST API endpoint**:
|
|
|
|
`GET http://localhost:3000/api/access`
|
|
|
|
Example response:
|
|
```js
|
|
{
|
|
canAccessAdmin: true,
|
|
license: 'LICENSE_KEY_HERE',
|
|
collections: {
|
|
pages: {
|
|
create: {
|
|
permission: true,
|
|
},
|
|
read: {
|
|
permission: true,
|
|
},
|
|
update: {
|
|
permission: true,
|
|
},
|
|
delete: {
|
|
permission: true,
|
|
},
|
|
fields: {
|
|
title: {
|
|
create: {
|
|
permission: true,
|
|
},
|
|
read: {
|
|
permission: true,
|
|
},
|
|
update: {
|
|
permission: true,
|
|
},
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
**Example GraphQL Query**:
|
|
|
|
```
|
|
query {
|
|
Access {
|
|
pages {
|
|
read {
|
|
permission
|
|
}
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
### Me
|
|
|
|
Returns either a logged in user with token or null when there is no logged in user.
|
|
|
|
**REST API endpoint**:
|
|
|
|
`GET http://localhost:3000/api/[collection-slug]/me`
|
|
|
|
Example response:
|
|
```js
|
|
{
|
|
user: { // The JWT "payload" ;) from the logged in user
|
|
email: 'dev@payloadcms.com',
|
|
createdAt: "2020-12-27T21:16:45.645Z",
|
|
updatedAt: "2021-01-02T18:37:41.588Z",
|
|
id: "5ae8f9bde69e394e717c8832"
|
|
},
|
|
token: '34o4345324...', // The token that can be used to authenticate the user
|
|
exp: 1609619861, // Unix timestamp representing when the user's token will expire
|
|
}
|
|
```
|
|
|
|
**Example GraphQL Query**:
|
|
|
|
```
|
|
query {
|
|
Me[collection-singular-label] {
|
|
user {
|
|
email
|
|
}
|
|
exp
|
|
}
|
|
}
|
|
```
|
|
|
|
### Login
|
|
|
|
Accepts an `email` and `password`. On success, it will return the logged in user as well as a token that can be used to authenticate. In the GraphQL and REST APIs, this operation also automatically sets an HTTP-only cookie including the user's token. If you pass an Express `res` to the Local API operation, Payload will set a cookie there as well.
|
|
|
|
**Example REST API login**:
|
|
```js
|
|
const res = await fetch('http://localhost:3000/api/[collection-slug]/login', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
email: 'dev@payloadcms.com',
|
|
password: 'this-is-not-our-password...or-is-it?',
|
|
})
|
|
})
|
|
|
|
const json = await res.json();
|
|
|
|
// JSON will be equal to the following:
|
|
/*
|
|
{
|
|
user: {
|
|
email: 'dev@payloadcms.com',
|
|
createdAt: "2020-12-27T21:16:45.645Z",
|
|
updatedAt: "2021-01-02T18:37:41.588Z",
|
|
id: "5ae8f9bde69e394e717c8832"
|
|
},
|
|
token: '34o4345324...',
|
|
exp: 1609619861
|
|
}
|
|
*/
|
|
```
|
|
|
|
**Example GraphQL Mutation**:
|
|
|
|
```
|
|
mutation {
|
|
login[collection-singular-label](email: "dev@payloadcms.com", password: "yikes") {
|
|
user {
|
|
email
|
|
}
|
|
exp
|
|
token
|
|
}
|
|
}
|
|
```
|
|
|
|
**Example Local API login**:
|
|
|
|
```js
|
|
const result = await payload.login({
|
|
collection: '[collection-slug]',
|
|
data: {
|
|
email: 'dev@payloadcms.com',
|
|
password: 'get-out',
|
|
},
|
|
})
|
|
```
|
|
|
|
### Logout
|
|
|
|
As Payload sets HTTP-only cookies, logging out cannot be done by just removing a cookie in JavaScript, as HTTP-only cookies are inaccessible by JS within the browser. So, Payload exposes a `logout` operation to delete the token in a safe way.
|
|
|
|
**Example REST API logout**:
|
|
```js
|
|
const res = await fetch('http://localhost:3000/api/[collection-slug]/logout', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
```
|
|
|
|
**Example GraphQL Mutation**:
|
|
|
|
```
|
|
mutation {
|
|
logout[collection-singular-label]
|
|
}
|
|
```
|
|
|
|
### Refresh
|
|
|
|
Allows for "refreshing" JWTs. If your user has a token that is about to expire, but the user is still active and using the app, you might want to use the `refresh` operation to receive a new token by sending the operation the token that is about to expire.
|
|
|
|
This operation requires a non-expired token to send back a new one. If the user's token has already expired, you will need to allow them to log in again to retrieve a new token.
|
|
|
|
If successful, this operation will automatically renew the user's HTTP-only cookie and will send back the updated token in JSON.
|
|
|
|
**Example REST API token refresh**:
|
|
```js
|
|
const res = await fetch('http://localhost:3000/api/[collection-slug]/refresh', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
|
|
const json = await res.json();
|
|
|
|
// JSON will be equal to the following:
|
|
/*
|
|
{
|
|
user: {
|
|
email: 'dev@payloadcms.com',
|
|
createdAt: "2020-12-27T21:16:45.645Z",
|
|
updatedAt: "2021-01-02T18:37:41.588Z",
|
|
id: "5ae8f9bde69e394e717c8832"
|
|
},
|
|
refreshedToken: '34o4345324...',
|
|
exp: 1609619861
|
|
}
|
|
*/
|
|
```
|
|
|
|
**Example GraphQL Mutation**:
|
|
|
|
```
|
|
mutation {
|
|
refreshToken[collection-singular-label] {
|
|
user {
|
|
email
|
|
}
|
|
refreshedToken
|
|
}
|
|
}
|
|
```
|
|
|
|
<Banner type="success">
|
|
The Refresh operation will automatically find the user's token in either a JWT header or the HTTP-only cookie. But, you can specify the token you're looking to refresh by providing the REST API with a `token` within the JSON body of the request, or by providing the GraphQL resolver a `token` arg.
|
|
</Banner>
|
|
|
|
### Verify by Email
|
|
|
|
If your collection supports email verification, the Verify operation will be exposed which accepts a verification token and sets the user's `_verified` property to `true`, thereby allowing the user to authenticate with the Payload API.
|
|
|
|
**Example REST API user verification**:
|
|
```js
|
|
const res = await fetch(`http://localhost:3000/api/[collection-slug]/verify/${TOKEN_HERE}`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
```
|
|
|
|
**Example GraphQL Mutation**:
|
|
|
|
```
|
|
mutation {
|
|
verifyEmail[collection-singular-label](token: "TOKEN_HERE")
|
|
}
|
|
```
|
|
|
|
**Example Local API verification**:
|
|
|
|
```js
|
|
const result = await payload.verifyEmail({
|
|
collection: '[collection-slug]',
|
|
token: 'TOKEN_HERE',
|
|
})
|
|
```
|
|
|
|
### Unlock
|
|
|
|
If a user locks themselves out and you wish to deliberately unlock them, you can utilize the Unlock operation. The Admin panel features an Unlock control automatically for all collections that feature max login attempts, but you can programmatically unlock users as well by using the Unlock operation.
|
|
|
|
To restrict who is allowed to unlock users, you can utilize the [`unlock`](/docs/access-control/overview#unlock) access control function.
|
|
|
|
**Example REST API unlock**:
|
|
```js
|
|
const res = await fetch(`http://localhost:3000/api/[collection-slug]/unlock`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
```
|
|
|
|
**Example GraphQL Mutation**:
|
|
|
|
```
|
|
mutation {
|
|
unlock[collection-singular-label]
|
|
}
|
|
```
|
|
|
|
**Example Local API unlock**:
|
|
|
|
```js
|
|
const result = await payload.unlock({
|
|
collection: '[collection-slug]',
|
|
})
|
|
```
|
|
|
|
### Forgot Password
|
|
|
|
Payload comes with built-in forgot password functionality. Submitting an email address to the Forgot Password operation will generate an email and send it to the respective email address with a link to reset their password.
|
|
|
|
The link to reset the user's password contains a token which is what allows the user to securely reset their password.
|
|
|
|
By default, the Forgot Password operations send users to the Payload Admin panel to reset their password, but you can customize the generated email to send users to the frontend of your app instead by [overriding the email HTML](/docs/authentication/config#forgot-password).
|
|
|
|
**Example REST API Forgot Password**:
|
|
```js
|
|
const res = await fetch(`http://localhost:3000/api/[collection-slug]/forgot-password`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
email: 'dev@payloadcms.com',
|
|
}),
|
|
})
|
|
```
|
|
|
|
**Example GraphQL Mutation**:
|
|
|
|
```
|
|
mutation {
|
|
forgotPassword[collection-singular-label](email: "dev@payloadcms.com")
|
|
}
|
|
```
|
|
|
|
**Example Local API forgot password**:
|
|
|
|
```js
|
|
const token = await payload.forgotPassword({
|
|
collection: '[collection-slug]',
|
|
data: {
|
|
email: 'dev@payloadcms.com',
|
|
},
|
|
disableEmail: false // you can disable the auto-generation of email via local API
|
|
})
|
|
```
|
|
|
|
<Banner type="success">
|
|
<strong>Tip:</strong><br/>
|
|
You can stop the reset-password email from being sent via using the local API. This is helpful if you need to create user accounts programmatically, but not set their password for them. This effectively generates a reset password token which you can then use to send to a page you create, allowing a user to "complete" their account by setting their password. In the background, you'd use the token to "reset" their password.
|
|
</Banner>
|
|
|
|
### Reset Password
|
|
|
|
After a user has "forgotten" their password and a token is generated, that token can be used to send to the reset password operation along with a new password which will allow the user to reset their password securely.
|
|
|
|
**Example REST API Reset Password**:
|
|
```js
|
|
const res = await fetch(`http://localhost:3000/api/[collection-slug]/reset-password`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
token: 'TOKEN_GOES_HERE'
|
|
password: 'not-today',
|
|
}),
|
|
})
|
|
|
|
const json = await res.json();
|
|
|
|
// JSON will be equal to the following:
|
|
/*
|
|
{
|
|
user: {
|
|
email: 'dev@payloadcms.com',
|
|
createdAt: "2020-12-27T21:16:45.645Z",
|
|
updatedAt: "2021-01-02T18:37:41.588Z",
|
|
id: "5ae8f9bde69e394e717c8832"
|
|
},
|
|
token: '34o4345324...',
|
|
exp: 1609619861
|
|
}
|
|
*/
|
|
```
|
|
|
|
**Example GraphQL Mutation**:
|
|
|
|
```
|
|
mutation {
|
|
resetPassword[collection-singular-label](token: "TOKEN_GOES_HERE", password: "not-today")
|
|
}
|
|
```
|