0.0
The project is in a healthy, maintained state
Implementation of personal access tokens on top of rodauth.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.0
 Project Readme

Personal Access Tokens for Rodauth

This is an extension to the rodauth gem which implements Personal Access Tokens for an authorization server.

Installation

Add this line to your application's Gemfile:

gem 'rodauth-pat'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install rodauth-pat

Usage

After setting up basic rodauth, you can enable the feature:

plugin :rodauth do
  enable :login, :personal_access_tokens
end

# then, inside roda

route do |r|
  r.rodauth

  # This will setup 3 routes for management of the Personal Access Tokens:
  # There are not strictly required for operation of #require_token_authentication
  #
  #   * /personal-access-tokens             Show non-revoked tokens
  #   * /personal_access_tokens/:id/revoke  Revoke existing tokens
  #   * /personal_access_tokens/new         Create new tokens
  rodauth.load_personal_access_token_routes

  r.get "public" do
    "public!"
  end

  r.get "protected" do
    rodauth.require_authentication
    "secret!"
  end

  r.get "api" do
    rodauth.require_token_authentication
    "secret with api!"
  end
end