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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4891f7485ad02efb026b823bc53c1975f05661eca97414310fdf89a93305188d
4
- data.tar.gz: 4ba661f6c8e3e40415695f9fecd2fe7fb7e3d9d2ef5542af7420792575c7d399
3
+ metadata.gz: a87647ec7963dd3953e0409c1d850a6e722b5a18571bae84086f31f68ab15ac8
4
+ data.tar.gz: 19c6d8fa8f2b6d65012162a39a5aa9ce03bb32e285ed261a520e532fa497c24a
5
5
  SHA512:
6
- metadata.gz: a1d92c0e6f02c98dcd46adc5fdb9559e9593f7c6f90f513eca1569d00ea77fa14c6b58afa41470806477b57bb786b191cd9e29d5fd3e9b1dbdd351bc46186f16
7
- data.tar.gz: 70ae39adb0997816279aac2880cdc274dd1b2e1e253ac4008aa7bcd0cd50348fc1a6ac2731c9714c96a9a857b0a04e5f62ddfb976052393f739e464a2960a5b6
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.1'
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 root_url # redirect to your homepage if username and password is valid
49
+ redirect_to session[:callback_url] || root_url
46
50
  end
47
51
 
48
52
  def destroy
@@ -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
- uri.query = (uri.query.to_s.split("&") << "callback_url=#{ callback_url }").join("&")
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'] || "Unauthorized"
50
+ @message ||= request.env['warden.message']
48
51
  end
49
52
 
50
53
  def warden_options
@@ -1,3 +1,3 @@
1
1
  module Lockie
2
- VERSION = '0.3.1'
2
+ VERSION = '0.4.1'
3
3
  end
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.3.1
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: 2020-08-06 00:00:00.000000000 Z
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: 'TODO: Set to ''http://mygemserver.com'''
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.8
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