lockie 0.3.1 → 0.4.1
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 +4 -4
- data/README.md +6 -2
- data/lib/lockie/failure_app.rb +6 -3
- data/lib/lockie/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a87647ec7963dd3953e0409c1d850a6e722b5a18571bae84086f31f68ab15ac8
|
4
|
+
data.tar.gz: 19c6d8fa8f2b6d65012162a39a5aa9ce03bb32e285ed261a520e532fa497c24a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b84e03fe168abe2a12e3b194894f0d512acac984681b04d4a8c2e53b3c399dfb6fe6df9adfc7794cd292f1c276bd59fd4dc2258138abc5eec2e82c4a650f2fc5
|
7
|
+
data.tar.gz: 306fb63d6cfa264c1ef6f18c72d9ec311d7ef90816ac36022d2bb102f17d6dcd71be95d6f313a97e062ef8bd688f257166b720108ca48ea514223526d95ea8d3
|
data/README.md
CHANGED
@@ -9,7 +9,7 @@ A drop-in, none assuming warden based Password and JWT authentication for Rails
|
|
9
9
|
Add this line to your application's Gemfile:
|
10
10
|
|
11
11
|
```ruby
|
12
|
-
gem 'lockie', '~> 0.3.
|
12
|
+
gem 'lockie', '~> 0.3.3'
|
13
13
|
```
|
14
14
|
|
15
15
|
And then execute:
|
@@ -41,8 +41,12 @@ Session controller
|
|
41
41
|
class SessionController < ApplicationController
|
42
42
|
skip_before_action :authenticate!, only: [:new]
|
43
43
|
|
44
|
+
def new
|
45
|
+
session[:callback_url] = params[:callback_url] if params[:callback_url]
|
46
|
+
end
|
47
|
+
|
44
48
|
def create
|
45
|
-
redirect_to
|
49
|
+
redirect_to session[:callback_url] || root_url
|
46
50
|
end
|
47
51
|
|
48
52
|
def destroy
|
data/lib/lockie/failure_app.rb
CHANGED
@@ -34,9 +34,12 @@ module Lockie
|
|
34
34
|
flash[type] = message if message
|
35
35
|
self.status = 302
|
36
36
|
if Lockie.config.callback_url
|
37
|
-
callback_url = request.base_url + request.original_fullpath
|
38
37
|
uri = URI(warden_options[:unauthenticated_path] || Lockie.config.unauthenticated_path)
|
39
|
-
|
38
|
+
# only add callback_url if original path is not the same with login path
|
39
|
+
unless request.original_fullpath == uri.path
|
40
|
+
callback_url = request.base_url + request.original_fullpath
|
41
|
+
uri.query = (uri.query.to_s.split("&") << "callback_url=#{ callback_url }").join("&")
|
42
|
+
end
|
40
43
|
redirect_to uri.to_s
|
41
44
|
else
|
42
45
|
redirect_to Lockie.config.unauthenticated_path
|
@@ -44,7 +47,7 @@ module Lockie
|
|
44
47
|
end
|
45
48
|
|
46
49
|
def message
|
47
|
-
@message ||= request.env['warden.message']
|
50
|
+
@message ||= request.env['warden.message']
|
48
51
|
end
|
49
52
|
|
50
53
|
def warden_options
|
data/lib/lockie/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lockie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Melvin Sembrano
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -119,7 +119,7 @@ homepage: https://github.com/melvinsembrano/lockie
|
|
119
119
|
licenses:
|
120
120
|
- MIT
|
121
121
|
metadata:
|
122
|
-
allowed_push_host:
|
122
|
+
allowed_push_host: https://rubygems.org
|
123
123
|
post_install_message:
|
124
124
|
rdoc_options: []
|
125
125
|
require_paths:
|
@@ -135,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
135
135
|
- !ruby/object:Gem::Version
|
136
136
|
version: '0'
|
137
137
|
requirements: []
|
138
|
-
rubygems_version: 3.0.
|
138
|
+
rubygems_version: 3.0.3.1
|
139
139
|
signing_key:
|
140
140
|
specification_version: 4
|
141
141
|
summary: Drop in password and JWT token authentication for Ruby on Rails
|