Skip to content

implement oidc as a new provider #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ OAuth:
- Microsoft
- Github
- Gitlab
- OIDC / oAuth2

## Installation

Expand Down
1 change: 1 addition & 0 deletions lib/code0/identities.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
require_relative "identities/provider/google"
require_relative "identities/provider/discord"
require_relative "identities/provider/github"
require_relative "identities/provider/oidc"

module Code0
module Identities
Expand Down
63 changes: 63 additions & 0 deletions lib/code0/identities/provider/oidc.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# frozen_string_literal: true

module Code0
module Identities
module Provider
class Oidc < BaseOauth
def token_url
config[:token_url]
end

def token_payload(code)
{ code: code,
grant_type: "authorization_code",
redirect_uri: config[:redirect_uri],
client_id: config[:client_id],
client_secret: config[:client_secret] }
end

def user_details_url
config[:user_details_url]
end

def authorization_url
config[:user_details_url]
end

def create_identity(response, *)
body = response.parsed_response

Identity.new(config[:provider_name],
find_attribute(body, config[:attribute_statements][:identifier]),
find_attribute(body, config[:attribute_statements][:username]),
find_attribute(body, config[:attribute_statements][:email]),
find_attribute(body, config[:attribute_statements][:firstname]),
find_attribute(body, config[:attribute_statements][:lastname]))
end

def config
config = super

# rubocop:disable Layout/LineLength
config[:provider_name] ||= :oidc
config[:attribute_statements] ||= {}
config[:attribute_statements][:identifier] ||= %w[sub id identifier]
config[:attribute_statements][:username] ||= %w[username name login]
config[:attribute_statements][:email] ||= %w[email mail]
config[:attribute_statements][:firstname] ||= %w[first_name firstname firstName givenname given_name givenName]
config[:attribute_statements][:lastname] ||= %w[last_name lastname lastName family_name familyName familyname]
# rubocop:enable Layout/LineLength

config
end

def find_attribute(attributes, attribute_statements)
attribute_statements.each do |statement|
return attributes[statement] unless attributes[statement].nil?
end
nil
end
end
end
end
end
17 changes: 17 additions & 0 deletions sig/code0/identities/provider/oidc.rbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module Code0
module Identities
module Provider
class Oidc < BaseOauth
def token_url: () -> String

def token_payload: (code: String) -> { code: String, grant_type: "authorization_code", redirect_uri: String, client_id: String, client_secret: String }

def user_details_url: () -> String

def authorization_url: () -> String

def create_identity: (response: Net::HTTPResponse) -> Identity
end
end
end
end