diff options
author | hellekin <hellekin@cepheide.org> | 2020-10-05 21:51:37 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2020-10-05 21:51:37 +0200 |
commit | 48031dde29d6dc4a0ba84c445ae4c07627257d4a (patch) | |
tree | fdbe4b896b04ad9e39ebb0b73516b77b61330dd2 /config | |
parent | 81fb71f0510a5464634a65d97939f6fa54f419dd (diff) | |
download | incommon-map-48031dde29d6dc4a0ba84c445ae4c07627257d4a.tar.gz |
Configure Discourse SSO
We're creating a minimal User model that will be filled from SSO.
We also configure Inflections so we can use SSO instead of Sso which
looks weird for a module named after an acronym.
Use Discourse as SSO: https://meta.discourse.org/t/using-discourse-as-a-sso-provider/32974
Diffstat (limited to 'config')
-rw-r--r-- | config/initializers/inflections.rb | 6 | ||||
-rw-r--r-- | config/initializers/session_store.rb | 6 | ||||
-rw-r--r-- | config/initializers/sso_config.rb | 2 |
3 files changed, 14 insertions, 0 deletions
diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb index ac033bf..13e8739 100644 --- a/config/initializers/inflections.rb +++ b/config/initializers/inflections.rb @@ -14,3 +14,9 @@ # ActiveSupport::Inflector.inflections(:en) do |inflect| # inflect.acronym 'RESTful' # end + +ActiveSupport::Inflector.inflections do |inflect| + inflect.irregular 'human', 'humans' + inflect.acronym 'API' + inflect.acronym 'SSO' +end diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb new file mode 100644 index 0000000..4af1519 --- /dev/null +++ b/config/initializers/session_store.rb @@ -0,0 +1,6 @@ +if Rails.env.production? + # Only serve session cookies over HTTPS + Rails.application.config.session_store :cookie_store, key: 'map_session', expire_after: 7.days, httponly: true, secure: true +else + Rails.application.config.session_store :cookie_store, key: 'map_session', expire_after: 7.days +end diff --git a/config/initializers/sso_config.rb b/config/initializers/sso_config.rb index b3f23f7..f5413ff 100644 --- a/config/initializers/sso_config.rb +++ b/config/initializers/sso_config.rb @@ -9,6 +9,8 @@ # end # end +require 'sso/from_discourse' + SSO::FromDiscourse.config = { sso_url: 'https://talk.incommon.cc/session/sso_provider', return_url: "http://localhost:3000/authenticate", |