Skip to content

alfianazizi/ally-driver-authentik

Repository files navigation

Adonis Ally Authentik Driver

NPM version

Authentik driver for AdonisJS Ally

You can test this for another IdP like Keycloak i guess (not tested)

Getting started

1. Install the package

Install the package from your command line.

npm install --save adonis-ally-authentik

or

yarn add adonis-ally-authentik

2. Configure the package

node ace configure adonis-ally-authentik

3. Register the service inside the configuration file config/ally.ts

// config/ally.ts
import { defineConfig } from '@adonisjs/ally'
import { AuthentikDriver } from 'adonis-ally-authentik'
import env from '#start/env'

const allyConfig = defineConfig({
  authentik: AuthentikDriverService({
    driver: 'authentik',
    clientId: env.get('AUTHENTIK_CLIENT_ID', ''),
    clientSecret: env.get('AUTHENTIK_CLIENT_SECRET', ''),
    callbackUrl: env.get('AUTHENTIK_CALLBACK_URL', ''),
    authorizeUrl: env.get('AUTHENTIK_AUTHORIZE_URL', ''),
    accessTokenUrl: env.get('AUTHENTIK_ACCESSTOKEN_URL', ''),
    userInfoUrl: env.get('AUTHENTIK_USERINFO_URL', ''),
  })
})

Scopes

The default scopes is "openid email profile", you can define it on the config with scopes

Contributing

  1. Fork the repo
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'feat: Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request

License

MIT

About

Authentik driver of adonisjs ally

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •