![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/@nuxtjs/auth-next/templates/ |
import Middleware from './middleware' import { Auth, authMiddleware, ExpiredAuthSessionError } from '~auth/runtime' // Active schemes <%= options.schemeImports.map(i => `import { ${i.name}${i.name !== i.as ? ' as ' + i.as : '' } } from '${i.from}'`).join('\n') %> Middleware.auth = authMiddleware export default function (ctx, inject) { // Options const options = <%= JSON.stringify(options.options, null, 2) %> // Create a new Auth instance const $auth = new Auth(ctx, options) // Register strategies <%= options.strategies.map(strategy => { const scheme = options.strategyScheme[strategy.name] const schemeOptions = JSON.stringify(strategy, null, 2) return `// ${strategy.name}\n $auth.registerStrategy('${strategy.name}', new ${scheme.as}($auth, ${schemeOptions}))` }).join('\n\n ') %> // 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) } }) }