Skip to content

OpenID Certified™ OAuth 2.0 Authorization Server implementation for Node.js

License

Notifications You must be signed in to change notification settings

akrasnov87/node-oidc-provider

 
 

Repository files navigation

oidc-provider

This module provides an OAuth 2.0 (RFC 6749) Authorization Server with support for OpenID Connect (OIDC) and many other additional features and standards.

Table of Contents

Implemented specs & features

The following specifications are implemented by oidc-provider (not exhaustive):

Note that not all features are enabled by default, check the configuration section on how to enable them.

Supported Access Token formats:

The following draft specifications are implemented by oidc-provider:

Updates to draft specification versions are released as MINOR library versions, if you utilize these specification implementations consider using the tilde ~ operator in your package.json since breaking changes may be introduced as part of these version updates. Alternatively acknowledge the version and be notified of breaking changes as part of your CI.

Certification

OpenID Certification
Filip Skokan has certified that oidc-provider conforms to the following profiles of the OpenID Connect™ protocol.

  • Basic, Implicit, Hybrid, Config, Dynamic, Form Post, and 3rd Party-Init OP profiles
  • Back-Channel Logout and RP-Initiated Logout
  • FAPI 1.0 Advanced (w/ Private Key JWT, MTLS, JARM, PAR, CIBA)

Sponsor

auth0-logo If you want to quickly add OpenID Connect authentication to Node.js apps, feel free to check out Auth0's Node.js SDK and free plan. Create an Auth0 account; it's free!

Support

If you or your company use this module, or you need help using/upgrading the module, please consider becoming a sponsor so I can continue maintaining it and adding new features carefree. The only way to guarantee you get feedback from the author & sole maintainer of this module is to support the package through GitHub Sponsors.

Documentation & Configuration

oidc-provider can be mounted to existing connect, express, fastify, hapi, or koa applications, see how. The provider allows to be extended and configured in various ways to fit a variety of uses. See the documentation and example folder.

import Provider from 'oidc-provider';
const configuration = {
  // refer to the documentation for other available configuration
  clients: [{
    client_id: 'foo',
    client_secret: 'bar',
    redirect_uris: ['http://lvh.me:8080/cb'],
    // ... other client properties
  }],
};

const oidc = new Provider('http://localhost:3000', configuration);

oidc.listen(3000, () => {
  console.log('oidc-provider listening on port 3000, check http://localhost:3000/.well-known/openid-configuration');
});

Recipes

Collection of useful configuration use cases are available over at recipes.

Events

oidc-provider instances are event emitters, using event handlers you can hook into the various actions and i.e. emit metrics that react to specific triggers. See the list of available emitted event names and their description.

Тестирование

Устанавливаем, чтобы прокинуть данные наружу:

sudo snap install ngrok

Запускаем (возможно нужно будет применить токен, надо авторизоваться)

ngrok http 3000

Переходи на сайт https://oidcdebugger.com/ и заполняем информацию, тестируем

Хранилище

Провайдер работает только специальной БД для RPC-сервиса, например us-db-ci_purgeable. В указанную БД требуется добавить информацию из schema.sql

Примечание: набор информации для профиля может отличаться, поэтому может потребоваться корректировка функции oidc.sf_verify_user

Контейнер

Сборка

docker build -t akrasnov87/node-oidc-provider:0.0.1 .

Либо вызвать ./build.sh или yarn build:image

Примечание: при выполнении команды yarn build:image версия для контейнера берётся из ./package.json

Запуск

docker run -d --rm --env-file=./.env --name node-oidc-provider -p 3000:3000 akrasnov87/node-oidc-provider:0.0.1

После запуска хост будет доступен по адресу http://localhost:3000/dev/.well-known/openid-configuration

Примечание: виртуальный путь /dev может быть изменёт в файле .conf/dev.conf

Для удобства можно вывести каталог .conf через volumes, чтобы была возможность управлять настройками и данными по клиентским приложениям clients.json

Конфигурация

В папке .conf хранятся конфигурационные данные. Пример настройки для PostgreSQL:

connection_string="host:server;port:5432;user:root;password:secret;database:database-name"
virtual_dir_path="/dev/"
issuer="https://648d-94-232-56-134.ngrok-free.app"
debug=false
port=7001
couchdb_host=""

Получение последних изменений

git remote add upstream https://github.com/panva/node-oidc-provider.git
git pull upstream main

Интеграция с Budibase

Budibase

About

OpenID Certified™ OAuth 2.0 Authorization Server implementation for Node.js

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.7%
  • TypeScript 0.6%
  • EJS 0.6%
  • PLpgSQL 0.1%
  • Dockerfile 0.0%
  • Shell 0.0%