JSPM

strapi-plugin-impersonation

0.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q31946F
  • License MIT

A plugin to enable impersonation in strapi

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (strapi-plugin-impersonation) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Strapi v4 - Impersonation Plugin

    Impersonate any user on your site right from strapi

    GitHub package.json version Monthly download on NPM

    This plugin allows all admin users with sufficient permissions to impersonate any user on your site! So use it with caution!

    Use cases

    • development environment where you do not want to save users passwords
    • staging/testing environment with randomly generated user accounts where you do not want to have static passwords
    • production environment when users report some problems on the website and you cannot reproduce the issue in development/staging (use with caution!!)

    Requirements

    This plugin requires the following, in order to work correctly:

    • Strapi v4 (this plugin is not compatible with v3)
    • The plugin users-permissions installed and enabled (@strapi/plugin-users-permissions [npm])
    • After setup configure your BaseURL on the frontend (see Configuration)

    Unless you have the previous set up, the button on the right where you can impersonatethe user will not show up.

    Installation

    # with npm
    $ npm install strapi-plugin-impersonation
    # or with yarn
    $ yarn add strapi-plugin-impersonation

    After successful installation you have to build a fresh package that includes plugin UI:

    # with npm
    $ npm run build && npm run develop
    # or with yarn
    $ yarn build && yarn develop

    Configuration

    To work this plugin needs a Base URL where the token will be inserted.

    This URL can be set in Settings > Users & Permissions Plugin > Impersonation Plugin

    Settings page

    To get it working in your frontend you will need to setup a route that reads the jwt-token from URL parameters. This can be an API, a serverSide page that will set a cookie or alternatively in the case of saving the user authentication in localStorage a page that reads it from the browser query.

    Here is an example to get it working in a Next.js Application on the Frontend:

    import { useRouter } from 'next/router'
    import { useAuth } from 'lib/auth'
    
    function ImpersonationPage() {
      const router = useRouter()
      // Some kind of hook where you can set your jwt token
      const {setToken} = useAuth()
    
      useEffect(() => {
        const token = router.query['jwt']
        setToken(token)
        router.push('/')
      }, [router])
    
      return <div>redirecting...</div>
    }