%PDF- %PDF-
Direktori : /home/forge/takeaseat.eco-n-tech.co.uk/.nuxt/ |
Current File : //home/forge/takeaseat.eco-n-tech.co.uk/.nuxt/auth.js |
import Middleware from './middleware' import { Auth, authMiddleware, ExpiredAuthSessionError } from '~auth/runtime' // Active schemes import { LaravelJWTScheme } from '~auth/runtime' Middleware.auth = authMiddleware export default function (ctx, inject) { // Options const options = { "resetOnError": false, "ignoreExceptions": false, "scopeKey": "scope", "rewriteRedirects": true, "fullPathRedirect": false, "watchLoggedIn": false, "redirect": { "login": "/", "logout": "/", "home": "/", "callback": "/" }, "vuex": { "namespace": "auth" }, "cookie": { "prefix": "auth.", "options": { "path": "/" } }, "localStorage": { "prefix": "auth." }, "defaultStrategy": "laravelJWT" } // Create a new Auth instance const $auth = new Auth(ctx, options) // Register strategies // laravelJWT $auth.registerStrategy('laravelJWT', new LaravelJWTScheme($auth, { "url": "http://api-takeaseat.eco-n-tech.co.uk/api/", "endpoints": { "login": { "url": "http://api-takeaseat.eco-n-tech.co.uk/api/auth/login", "method": "post" }, "refresh": { "url": "http://api-takeaseat.eco-n-tech.co.uk/api/auth/refresh", "method": "post" }, "logout": { "url": "http://api-takeaseat.eco-n-tech.co.uk/api/auth/logout", "method": "post" }, "user": { "url": "http://api-takeaseat.eco-n-tech.co.uk/api/auth/user", "method": "get" } }, "token": { "property": "token", "maxAge": 3600 }, "refreshToken": { "property": false, "data": false, "maxAge": 1209600, "required": false, "tokenRequired": true }, "name": "laravelJWT", "user": { "property": false }, "clientId": false, "grantType": false })) // Inject it to nuxt context as $auth inject('auth', $auth) ctx.$auth = $auth // Initialize auth return $auth.init().catch(error => { if (process.client) { // Don't console log expired auth session errors. This error is common, and expected to happen. // The error happens whenever the user does an ssr request (reload/initial navigation) with an expired refresh // token. We don't want to log this as an error. if (error instanceof ExpiredAuthSessionError) { return } console.error('[ERROR] [AUTH]', error) } }) }