Skip to content
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

added openID connect module #20803

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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 composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@
"drupal/openapi_jsonapi": "^3.0",
"drupal/openapi_ui": "^1.0@RC",
"drupal/openapi_ui_swagger": "^1.0",
"drupal/openid_connect": "^1.4",
"drupal/override_node_options": "^2.4",
"drupal/paragraphs": "^1.5",
"drupal/paragraphs_browser": "^1.1",
Expand Down
71 changes: 70 additions & 1 deletion composer.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "46b8bd53fe5d8c2e978d0d1d2187ed29",
"content-hash": "95f644fa78a487f97eeff754c5e96f16",
"packages": [
{
"name": "asm89/stack-cors",
Expand Down Expand Up @@ -11381,6 +11381,75 @@
"issues": "http://drupal.org/project/issues/openapi_ui_swagger"
}
},
{
"name": "drupal/openid_connect",
"version": "1.4.0",
"source": {
"type": "git",
"url": "https://git.drupalcode.org/project/openid_connect.git",
"reference": "8.x-1.4"
},
"dist": {
"type": "zip",
"url": "https://ftp.drupal.org/files/projects/openid_connect-8.x-1.4.zip",
"reference": "8.x-1.4",
"shasum": "9bdbfa6365d10b2029bdaee9fbd82265aa6d4fa4"
},
"require": {
"drupal/core": "^9.5 || ^10",
"ext-json": "*"
},
"type": "drupal-module",
"extra": {
"drupal": {
"version": "8.x-1.4",
"datestamp": "1698170385",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
}
}
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "bojanz",
"homepage": "https://www.drupal.org/user/86106"
},
{
"name": "jcnventura",
"homepage": "https://www.drupal.org/user/122464"
},
{
"name": "mstrelan",
"homepage": "https://www.drupal.org/user/314289"
},
{
"name": "pfrilling",
"homepage": "https://www.drupal.org/user/169695"
},
{
"name": "pjcdawkins",
"homepage": "https://www.drupal.org/user/1025236"
},
{
"name": "sanduhrs",
"homepage": "https://www.drupal.org/user/28074"
}
],
"description": "A pluggable client implementation for the OpenID Connect protocol.",
"homepage": "https://www.drupal.org/project/openid_connect",
"keywords": [
"Drupal"
],
"support": {
"source": "https://git.drupalcode.org/project/openid_connect",
"issues": "https://www.drupal.org/project/issues/openid_connect"
}
},
{
"name": "drupal/override_node_options",
"version": "2.9.0",
Expand Down
1 change: 1 addition & 0 deletions config/sync/core.extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ module:
openapi_jsonapi: 0
openapi_ui: 0
openapi_ui_swagger: 0
openid_connect: 0
options: 0
override_node_options: 0
page_cache: 0
Expand Down
7 changes: 7 additions & 0 deletions config/sync/openid_connect.settings.facebook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
_core:
default_config_hash: XE2MqevnEK7g2Hi3bBsxJUUcbYQBm9AjQR6foDyycRY
enabled: false
settings:
client_id: null
client_secret: null
api_version: null
9 changes: 9 additions & 0 deletions config/sync/openid_connect.settings.generic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
_core:
default_config_hash: FJ7FfwlYzcbFfG0AqVPlqsLJIRhkzS1Rv6eO1vssSkM
enabled: false
settings:
client_id: null
client_secret: null
authorization_endpoint: 'https://example.com/oauth2/authorize'
token_endpoint: 'https://example.com/oauth2/token'
userinfo_endpoint: 'https://example.com/oauth2/UserInfo'
6 changes: 6 additions & 0 deletions config/sync/openid_connect.settings.github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
_core:
default_config_hash: h0ctmI-lSknN6e9qvO8PKjAPEeopeDR4FnxTYhGcD1k
enabled: false
settings:
client_id: null
client_secret: null
6 changes: 6 additions & 0 deletions config/sync/openid_connect.settings.google.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
_core:
default_config_hash: h0ctmI-lSknN6e9qvO8PKjAPEeopeDR4FnxTYhGcD1k
enabled: false
settings:
client_id: null
client_secret: null
6 changes: 6 additions & 0 deletions config/sync/openid_connect.settings.linkedin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
_core:
default_config_hash: h0ctmI-lSknN6e9qvO8PKjAPEeopeDR4FnxTYhGcD1k
enabled: false
settings:
client_id: null
client_secret: null
7 changes: 7 additions & 0 deletions config/sync/openid_connect.settings.okta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
_core:
default_config_hash: 7F1ngE9fiONEo0Nk1cfez_GTGzhHBLuPaHlrDqYI_hg
enabled: false
settings:
client_id: null
client_secret: null
okta_domain: null
8 changes: 8 additions & 0 deletions config/sync/openid_connect.settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
_core:
default_config_hash: YpBA3MmDuJpZ9SM3DE4kR0lTY89bf2y3g0sS7s3TQ4k
always_save_userinfo: true
connect_existing_users: false
override_registration_settings: false
user_login_display: hidden
userinfo_mappings:
timezone: zoneinfo
Loading