Git Product home page Git Product logo

Comments (4)

simpleneeraj avatar simpleneeraj commented on June 18, 2024

Hello, I've successfully implemented and tested the provided code on both development and production environments for my website. This information might be beneficial for you.

Full code

import { secrets } from '@/config';
import { NextConfig } from 'next';
import { NextResponse } from 'next/server';
import type { NextRequest } from 'next/server';
import ironCookie from './server/session';
import { getIronSession } from 'iron-session';

const password = String(process.env.NEXT_IRON_SESSION_PASSWORD);

const auth = ['/account/sign-in', '/account/sign-up', '/account/forgot-password', '/account/change-password'];

export async function middleware(request: NextRequest) {
  /**
   * Default User Middleware
   */
  const session = await getIronSession<any>(request.cookies as any, {
    password,
    cookieName: secrets.USER_SESSION,
  });

  const userId = session?.id;
  if (auth.includes(request.nextUrl.pathname)) {
    if (userId) {
      return NextResponse.redirect(new URL('/account/dashboard', request.url), 308);
    }
  } else {
    if (!userId) {
      return NextResponse.redirect(new URL('/account/sign-in', request.url), 308);
    }
  }
}

// See "Matching Paths" below to learn more
export const config: NextConfig = {
  matcher: [
    '/account/:path*', // matches /auth and /account/anything-else
  ],
};

from iron-session.

yvza avatar yvza commented on June 18, 2024

Hello I try to follow exemple here : https://get-iron-session.vercel.app/app-router-client-component-route-handler-swr but when I try to protect page with middleware like the example, I got this error : "Invariant: Method expects to have requestAsyncStorage, none available"

Get session in example (in middleware) (the problem is with the cookies() I think) :

const session = await getIronSession<SessionData>( cookies(), sessionOptions[request.nextUrl.pathname] );

And when I use this, the middleware work and page is protected :

      const session = await getIronSession<SessionData>(request, res, {
           cookieName: "iron-examples-app-router-client-component-route-handler-swr",
          password: "complex_password_at_least_32_characters_long",
          cookieOptions: {
               secure: process.env.NODE_ENV === "production",
          },
      });

Of course both sessions must be equal (password and cookieName) Then I can use this as in the second example or I must keep the cookie()

Thank for your help

iron-session: ^8.0.1 next: 13.4.8

i got same error

this is my code:

'use server'
import type { NextApiRequest, NextApiResponse } from "next";
import { cookies } from "next/headers";

export default async function handler(
  req: NextApiRequest,
  res: NextApiResponse
) {
  const response = cookies()
  res.status(200).json({ result: response })
}

Env

"next": "14.0.4",
"react": "^18",

from iron-session.

yvza avatar yvza commented on June 18, 2024

Hello I try to follow exemple here : https://get-iron-session.vercel.app/app-router-client-component-route-handler-swr but when I try to protect page with middleware like the example, I got this error : "Invariant: Method expects to have requestAsyncStorage, none available"
Get session in example (in middleware) (the problem is with the cookies() I think) :
const session = await getIronSession<SessionData>( cookies(), sessionOptions[request.nextUrl.pathname] );
And when I use this, the middleware work and page is protected :

      const session = await getIronSession<SessionData>(request, res, {
           cookieName: "iron-examples-app-router-client-component-route-handler-swr",
          password: "complex_password_at_least_32_characters_long",
          cookieOptions: {
               secure: process.env.NODE_ENV === "production",
          },
      });

Of course both sessions must be equal (password and cookieName) Then I can use this as in the second example or I must keep the cookie()
Thank for your help
iron-session: ^8.0.1 next: 13.4.8

i got same error

this is my code:

'use server'
import type { NextApiRequest, NextApiResponse } from "next";
import { cookies } from "next/headers";

export default async function handler(
  req: NextApiRequest,
  res: NextApiResponse
) {
  const response = cookies()
  res.status(200).json({ result: response })
}

Env

"next": "14.0.4",
"react": "^18",

i managed this issue using this approach, everything is working now

https://github.com/vvo/iron-session/blob/main/examples/next/src/pages/api/pages-router-api-route-swr/session.ts

hope it helps

from iron-session.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.