strongmind-auth 1.0.8 → 1.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe8a1065a1aaff5f3ed20999981c7201aaccc6db7e7aab98f5e775a2b1e6911d
4
- data.tar.gz: 5d5740e266cd5ee581800f9f18ffda6d71fa5c5ceb6ff9957384ec509773eb26
3
+ metadata.gz: f48f262a82aa122f2c2e02f24a80af05e8ddc16c47b03f74e2ae6cd1e75f7b02
4
+ data.tar.gz: 178b4506c5e76422842f944e74f4fb24e94785085be8a3fa62699a3d12d1b88c
5
5
  SHA512:
6
- metadata.gz: 29c1de0ced18e7d4f1d3244c725c86fc8d34b496a46c2fc265e930b0a23ba29e853407e6fafd95d7fcdb54e39a1fca6c91e540d008f19edaaff1f3ae38f6f433
7
- data.tar.gz: 61f1111cbfab644070ffe0d3a377fa50e6043737e1a87e3420869a1502924b7a07d33a38fcb04afb37925d01984f82a88d9aeb9f012ae1f110f5edaa485d47c5
6
+ metadata.gz: 0fc9d5270f0f4c4f94db091278e00b928c3ba566d1a6eaa0c400ca6aa5b2ed59cbe1bf3169d69ad22906394a9c0a9cfe9195d4e65069cb465db54321eb87edb0
7
+ data.tar.gz: 3e3a8968049708aa7cf9db09d2a08387c95c59b92a19f84bdeaf070319ea85e7c3b19eb46160cb6ecc6cfe0acb75d34d244ee451e6dd90afdc3786f054e8812f
@@ -22,7 +22,19 @@ module Users
22
22
  end
23
23
 
24
24
  def failure
25
- redirect_to root_url
25
+ client_errors = [
26
+ "#<AttrRequired::AttrMissing: 'identifier' required.>",
27
+ "#<Rack::OAuth2::Client::Error: invalid_client>",
28
+ ]
29
+ if client_errors.include?(request.env['omniauth.error'].inspect)
30
+ render
31
+ else
32
+ redirect_to root_path
33
+ end
34
+ end
35
+
36
+ def passthru
37
+ redirect_to root_path
26
38
  end
27
39
  end
28
40
 
@@ -0,0 +1,32 @@
1
+ Your StrongMind identity client does not appear to be configured correctly.
2
+ <br/>
3
+ Please follow these steps:
4
+ <br/>
5
+ <br/>
6
+ <%
7
+ app_name = Rails.application.class.name.split("::").first
8
+ app_url = ENV['APP_BASE_URL']
9
+ stage_url = "https://devlogin.strongmind.com/Clients/Create?ClientID=#{app_name}&RedirectURL=#{app_url}/users/auth/strongmind/callback"
10
+ prod_url = "https://login.strongmind.com/Clients/Create?ClientID=#{app_name}&RedirectURL=#{app_url}/users/auth/strongmind/callback"
11
+ %>
12
+
13
+ <ol style="list-style: decimal">
14
+ <li>
15
+ <%= link_to "Create Client in Staging Identity Server", stage_url %>
16
+ </li>
17
+ <li>
18
+ <%= link_to "Create Client in Production Identity Server", prod_url %>
19
+ </li>
20
+ <li>
21
+ Set the following environment variables in your .env file:
22
+ <br/>
23
+ <br/>
24
+ <pre>
25
+ IDENTITY_CLIENT_ID=<%= app_name %><br/>IDENTITY_CLIENT_SECRET={use the secret you generated for the client}
26
+ </pre>
27
+
28
+ </li>
29
+ <li>
30
+ Restart your server.
31
+ </li>
32
+ </ol>
@@ -2,6 +2,14 @@
2
2
 
3
3
  return if defined? Rails::Generators
4
4
 
5
+ # if Devise is not present in Gemfile
6
+ unless File.read('Gemfile').include?('devise')
7
+ `rails g strongmind:install`
8
+ `rails db:migrate`
9
+
10
+ raise "StrongMind Auth and Navigation installed. Please restart your server."
11
+ end
12
+
5
13
  # Assuming you have not yet modified this file, each configuration option below
6
14
  # is set to its default value. Note that some are commented out while others
7
15
  # are not: uncommented lines are intended to protect your configuration from
@@ -1,5 +1,5 @@
1
1
  module Strongmind
2
2
  module Auth
3
- VERSION = "1.0.8"
3
+ VERSION = "1.0.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strongmind-auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Belding
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-14 00:00:00.000000000 Z
11
+ date: 2024-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -114,6 +114,7 @@ files:
114
114
  - app/models/user_base.rb
115
115
  - app/views/layouts/_loading_navbar.html.erb
116
116
  - app/views/logins/index.html.erb
117
+ - app/views/users/omniauth_callbacks/failure.html.erb
117
118
  - config/initializers/devise.rb
118
119
  - config/routes.rb
119
120
  - lib/generators/strongmind/USAGE