omniauth-zeuswpi 0.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f85d928de8aa7f50169f211a5e0d7274b953fd52f2659968028346ce41339d46
4
- data.tar.gz: df0ac1cb065f9be81d7f097c1bbb64075adbb2b7d8ec939e77e2ff2f532eab67
3
+ metadata.gz: 3047793de70a726eda03f7557cadedc1ed1e71f74a7445b4983792fb7803d22d
4
+ data.tar.gz: 3648312903e7bd536a85eaad13b442975ef01de0277594d9b1556a7a38ac28a5
5
5
  SHA512:
6
- metadata.gz: 2c1606e92208e7529748e6f4f804e8dae9ad1a7fad8d1b147fd9467ef6e6b4ea1feb1b9face4022cacb29c71c92cbd000df5332b22e3225a4d05eb0a19b57479
7
- data.tar.gz: 37ed560d4ec48400fd9502c7dc3b3e4a9ab63935871dbc52567b2cbdcd85db8db1a5d4258fc1c80a7468ab2e84c775593472ae2ee15c7920fac9fc8b7ddbfe1c
6
+ metadata.gz: 6bc6a0d28bee8556d9e2f26f558b2e15c98e9169bea6aef5c7876241fcf42ae21528e64612e0693218811af8145e5b411994762b50ef432af097933166edf952
7
+ data.tar.gz: 26c0f4043c9857840a183cc308da78c437b85d83f87fa2c35a4e5c80223cc52e62872db206ac66774934d2b368143ef7e0b5ab67096ced015283a5ccbaf8a3c2
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 3.3.7
data/Gemfile.lock ADDED
@@ -0,0 +1,43 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ omniauth-zeuswpi (1.0.0)
5
+ omniauth-oauth2 (~> 1.7.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ faraday (2.3.0)
11
+ faraday-net_http (~> 2.0)
12
+ ruby2_keywords (>= 0.0.4)
13
+ faraday-net_http (2.0.3)
14
+ hashie (5.0.0)
15
+ jwt (2.3.0)
16
+ multi_json (1.15.0)
17
+ multi_xml (0.6.0)
18
+ oauth2 (1.4.9)
19
+ faraday (>= 0.17.3, < 3.0)
20
+ jwt (>= 1.0, < 3.0)
21
+ multi_json (~> 1.3)
22
+ multi_xml (~> 0.5)
23
+ rack (>= 1.2, < 3)
24
+ omniauth (2.1.0)
25
+ hashie (>= 3.4.6)
26
+ rack (>= 2.2.3)
27
+ rack-protection
28
+ omniauth-oauth2 (1.7.2)
29
+ oauth2 (~> 1.4)
30
+ omniauth (>= 1.9, < 3)
31
+ rack (2.2.3)
32
+ rack-protection (2.2.0)
33
+ rack
34
+ ruby2_keywords (0.0.5)
35
+
36
+ PLATFORMS
37
+ x86_64-darwin-21
38
+
39
+ DEPENDENCIES
40
+ omniauth-zeuswpi!
41
+
42
+ BUNDLED WITH
43
+ 2.3.13
data/README.md ADDED
@@ -0,0 +1,75 @@
1
+ [![Gem Version](https://badge.fury.io/rb/omniauth-zeuswpi.svg)](https://badge.fury.io/rb/omniauth-zeuswpi)
2
+
3
+ # OmniAuth Zeus WPI Zauth Strategy
4
+
5
+ Strategy to authenticate with [Zeus WPI](https://zeus.gent) via OAuth2 in OmniAuth, powered by [Zauth](https://github.com/ZeusWPI/zauth).
6
+
7
+ ## Installation
8
+
9
+ Add to your `Gemfile`
10
+ ```ruby
11
+ gem 'omniauth-oauth2'
12
+ gem 'omniauth-zeuswpi'
13
+ gem 'omniauth-rails_csrf_protection'
14
+ ```
15
+
16
+ And run `bundle install`
17
+
18
+ ## Usage
19
+
20
+ _Note: Change `User` to your specific User model_
21
+
22
+ 1. Add the strategy to the omniauth config:
23
+
24
+ ```ruby
25
+ config.omniauth :zeuswpi,
26
+ Rails.application.credentials.omniauth_client_id,
27
+ Rails.application.credentials.omniauth_client_secret,
28
+ token_params: { parse: :json }
29
+ ```
30
+
31
+ 2. Add a callbacks controller:
32
+ ```ruby
33
+ class CallbacksController < Devise::OmniauthCallbacksController
34
+ # See https://github.com/omniauth/omniauth/wiki/FAQ#rails-session-is-clobbered-after-callback-on-developer-strategy
35
+ skip_before_action :verify_authenticity_token, only: :zeuswpi
36
+
37
+ def zeuswpi
38
+ @user = User.from_omniauth(request.env["omniauth.auth"])
39
+ sign_in_and_redirect @user, event: :authentication
40
+ end
41
+
42
+ def after_omniauth_failure_path_for(scope)
43
+ root_path
44
+ end
45
+ end
46
+ ```
47
+
48
+ 3. Add the Devise Omniauth routes:
49
+ ```ruby
50
+ devise_for :users, controllers: {
51
+ omniauth_callbacks: 'callbacks'
52
+ }
53
+ ```
54
+
55
+ 4. Make your User model omniauthable:
56
+ ```ruby
57
+ devise :omniauthable, omniauth_providers: %i[zeuswpi]
58
+ ```
59
+
60
+ 5. Add the `from_omniauth` helper to your `User` model:
61
+ ```ruby
62
+ def self.from_omniauth(auth)
63
+ find_or_create_by!(name: auth.uid) do |user|
64
+ # additional initialisation here
65
+ end
66
+ end
67
+
68
+ ```
69
+ 6. Add a button to your website:
70
+ ```
71
+ <%= button_to "Log in with Zeus WPI",
72
+ user_zeuswpi_omniauth_authorize_path %>
73
+ ```
74
+
75
+
@@ -15,7 +15,7 @@ module OmniAuth
15
15
  # This is where you pass the options you would pass when
16
16
  # initializing your consumer from the OAuth gem.
17
17
  option :client_options, {
18
- site: 'https://adams.ugent.be',
18
+ site: 'https://zauth.zeus.gent',
19
19
  authorize_url: '/oauth/authorize/',
20
20
  token_url: '/oauth/token/'
21
21
  }
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module ZeusWPI
5
- VERSION = '0.0.1'
5
+ VERSION = '1.1.0'
6
6
  end
7
7
  end
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
11
11
  gem.license = 'MIT'
12
12
  gem.summary = %(A Zeus WPI strategy for OmniAuth 1.x)
13
13
  gem.description = %(A Zeus WPI strategy for OmniAuth 1.x. This allows you to login to Zauth with your ruby app.)
14
- gem.authors = ['Tom Naessens, Zeus WPI']
14
+ gem.authors = ['Tom Naessens', 'Zeus WPI']
15
15
  gem.email = ['']
16
16
  gem.homepage = 'https://github.com/ZeusWPI/omniauth-zeuswpi'
17
17
 
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-zeuswpi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
- - Tom Naessens, Zeus WPI
7
+ - Tom Naessens
8
+ - Zeus WPI
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2022-05-24 00:00:00.000000000 Z
12
+ date: 2025-02-16 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: omniauth-oauth2
@@ -33,8 +34,11 @@ extensions: []
33
34
  extra_rdoc_files: []
34
35
  files:
35
36
  - ".gitignore"
37
+ - ".tool-versions"
36
38
  - Gemfile
39
+ - Gemfile.lock
37
40
  - LICENSE
41
+ - README.md
38
42
  - lib/omniauth-zeuswpi.rb
39
43
  - lib/omniauth/strategies/zeuswpi.rb
40
44
  - lib/omniauth/zeuswpi.rb
@@ -59,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
59
63
  - !ruby/object:Gem::Version
60
64
  version: '0'
61
65
  requirements: []
62
- rubygems_version: 3.3.7
66
+ rubygems_version: 3.5.22
63
67
  signing_key:
64
68
  specification_version: 4
65
69
  summary: A Zeus WPI strategy for OmniAuth 1.x