lockie 0.3.3 → 0.4.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -1
- 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: 86eac2be7c9981eb52904045b83103de633140c29fe6c1f8a58a05509ae10d2f
|
4
|
+
data.tar.gz: fa61c62cfc66f650bb288f8d29fa6b45a9d515635da2051fd50943ff2ac4cb8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 567d4b868e544121f9f62274634e6b50319774d4b8f8c479c04112016e669d3a930e4d74ea5d68bf5b8097a7ff9fc71201e1026a259c5eee40fba993b79a17e6
|
7
|
+
data.tar.gz: 24c141be113f8cc783c9a03ad9fb01e2cc139393215580e6703194cdb70cdbb537a5fe2e9420959c9200807eb7f99925a369a3338b842e5e891fbbd145a9e215
|
data/README.md
CHANGED
@@ -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.5
|
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
|