redirectr 1.0.4 → 1.0.5
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 +77 -56
- data/lib/redirectr/version.rb +1 -1
- data/lib/redirectr.rb +9 -5
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78c463712785fe0809de6365bbcdff48d9b1ac7ceaf460a927dc9f655d2c0a06
|
4
|
+
data.tar.gz: 1ddab2a796cb3721cd311cd4006f6625109e5b314a28e461f54707443714d57b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc1e0061c954c452bca56fb5ec2cbf6334c2a22ddf3ff4c3709735a92d057b615ec6655a9a71478fc5f5919298c85e58bc1e043e0295e1361d61e982cee898ab
|
7
|
+
data.tar.gz: d3a733007656465049d1901816ce39a70af6f2d19ca2569426a1c4616511c8a4058ef1a8116b311a65868f420638746482bb839ca36c2e510eacebdc33d6a1c6
|
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
[](https://github.com/wvk/redirectr/actions/workflows/test.yml)
|
2
|
+
|
1
3
|
# Redirectr
|
2
4
|
|
3
5
|
In many web applications, the user triggers actions that result in simple or complex workflows that should, after that workflow is finished, result in the user being redirected to the page where he initially started it. Another example would be a "back"-Link on any page.
|
@@ -25,34 +27,38 @@ Please read this section if you are already using an older version of Redirectr
|
|
25
27
|
|
26
28
|
Pre-1.0 versions of Redirectr automatically included some view helpers (`hidden_referrer_input_tag`, `link_to_back`). This is no longer the case, so please add the following to your `app/helper/application_helper.rb`:
|
27
29
|
|
28
|
-
|
29
|
-
|
30
|
-
|
30
|
+
```ruby
|
31
|
+
module ApplicationHelper
|
32
|
+
include Redirectr::ApplicationHelper
|
33
|
+
end
|
34
|
+
````
|
31
35
|
|
32
|
-
Please note that methods like `current_path`, `referrer_path` have been removed. Only `current_url`, `referrer_url` exist. Please do also note that the value returned by these methods is not a String containing an URI value anymore. Instead, a Redirectr::ReferrerToken is returned which maps a token to an URI. To get the URI value, call `#to_s` (e.g. when used in a `redirect_to` call). When used as an URL parameter, Rails calls `#to_param` which returns the token.
|
36
|
+
Please note that methods like `current_path`, `referrer_path` have been removed. Only `current_url`, `referrer_url` exist. Please do also note that the value returned by these methods is not a String containing an URI value anymore. Instead, a `Redirectr::ReferrerToken` is returned which maps a token to an URI. To get the URI value, call `#to_s` (e.g. when used in a `redirect_to` call). When used as an URL parameter, Rails calls `#to_param` which returns the token.
|
33
37
|
|
34
38
|
Summary:
|
35
39
|
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
40
|
+
```ruby
|
41
|
+
# pre-1.0.0:
|
42
|
+
referrer_url.inspect # => 'https://example.com/...'
|
43
|
+
redirect_to referrer_url
|
44
|
+
redirect_to back_or_default
|
45
|
+
|
46
|
+
# post-1.0.0:
|
47
|
+
referrer_url.inspect # => '#<Redirectr::ReferrerToken:... @url="..." @token="...">'
|
48
|
+
redirect_to referrer_url.to_s
|
49
|
+
redirect_to back_or_default.to_s
|
50
|
+
# OR, if you mount Redirectr::Engine in your routes
|
51
|
+
redirect_to referrer_url
|
52
|
+
redirect_to back_or_default
|
53
|
+
|
54
|
+
# pre-1.0.0:
|
55
|
+
link_to 'take me back', back_or_default(my_url)
|
56
|
+
|
57
|
+
# post-1.0.0:
|
58
|
+
link_to 'take me back', back_or_default(my_url).to_s
|
59
|
+
# OR, if you mount Redirectr::Engine in your routes
|
60
|
+
link_to 'take me back', back_or_default(my_url)
|
61
|
+
```
|
56
62
|
|
57
63
|
## Examples
|
58
64
|
|
@@ -62,44 +68,54 @@ Suppose you have an application with a contact form that can be reached via a fo
|
|
62
68
|
|
63
69
|
for the footer link to the contact form:
|
64
70
|
|
65
|
-
|
71
|
+
```erb
|
72
|
+
<%= link_to 'Contact us!', new_contact_path(referrer_param => current_url) %>
|
73
|
+
```
|
66
74
|
|
67
75
|
In the 'new contact' view:
|
68
76
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
77
|
+
```erb
|
78
|
+
<%= form_for ... do |f| %>
|
79
|
+
<%= hidden_referrer_input_tag %>
|
80
|
+
<!-- ... -->
|
81
|
+
<% end %>
|
82
|
+
```
|
73
83
|
|
74
84
|
and finally, in the 'create' action of your ContactsController:
|
75
85
|
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
86
|
+
```ruby
|
87
|
+
def create
|
88
|
+
# ...
|
89
|
+
redirect_to back_or_default.to_s
|
90
|
+
end
|
91
|
+
```
|
80
92
|
|
81
93
|
### Custom default_url
|
82
94
|
|
83
95
|
The above will redirect the user back to the page specified in the referrer param. However, if you want to provide a custom fallback url per controller in case no referrer param is provided, just define the `#default_url` in your controller:
|
84
96
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
end
|
97
|
+
```ruby
|
98
|
+
class MyController < ApplicationController
|
99
|
+
def default_url
|
100
|
+
if @record
|
101
|
+
my_record_path(@record)
|
102
|
+
else
|
103
|
+
my_record_index_path
|
93
104
|
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
```
|
94
108
|
|
95
109
|
### Nesting referrers
|
96
110
|
|
97
111
|
Referrer params can be nested, which is helpful if your workflow involves branching into subworkflows. Thus, it is always possible to pass the referrer_param to another url:
|
98
112
|
|
99
|
-
|
100
|
-
|
113
|
+
```erb
|
114
|
+
<%= link_to 'go back directly', referrer_or_current_url %>
|
115
|
+
<%= link_to 'add new Foobar before going back', new_foobar_url(:foobar => {:name => 'My Foo'}, referrer_param => referrer_or_current_url) %>
|
116
|
+
```
|
101
117
|
|
102
|
-
NOTE: If your URLs include lots of params, it is very advisable to use Referrer Tokens instead of plain URLs to
|
118
|
+
NOTE: If your URLs include lots of params, it is very advisable to use Referrer Tokens instead of plain URLs to avoid "URI too long" errors. See next section.
|
103
119
|
|
104
120
|
## Unvalidated Redirect Mitigation
|
105
121
|
|
@@ -115,27 +131,32 @@ Redirectr offers three kinds of mitigation, two of them being optional:
|
|
115
131
|
|
116
132
|
By default, Redirectr checks the protocol, hostname and port of the referrer against the corresponding values of the current request. You may add your own:
|
117
133
|
|
118
|
-
|
119
|
-
|
120
|
-
|
134
|
+
```ruby
|
135
|
+
YourApp::Application.configure do
|
136
|
+
config.x.redirectr.whitelist = %w( http://localhost:3000 https://my.host.com )
|
137
|
+
end
|
138
|
+
```
|
121
139
|
|
122
140
|
### Token instead of URL (URL-shortener)
|
123
141
|
|
124
142
|
Instead of using a URL in the referrer token, redirectr can act as an URL shortener that maps random tokens to URLs. This requires a storage_implementation to be defined:
|
125
143
|
|
144
|
+
```ruby
|
145
|
+
require 'redirectr/referrer_token/active_record_storage'
|
126
146
|
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
end
|
147
|
+
YourApp::Application.configure do
|
148
|
+
config.x.redirectr.use_referrer_token = true
|
149
|
+
config.x.redirectr.reuse_tokens = true # set to false to generate a new token for each and every link
|
150
|
+
config.x.redirectr.storage_implementation = Redirectr::ReferrerToken::ActiveRecordStorage
|
151
|
+
end
|
152
|
+
```
|
134
153
|
|
135
154
|
This example requires a table named 'redirectr_referrer_tokens' to be present with two columns: `url` and `token`. To install and apply the required schema migration, run:
|
136
155
|
|
137
|
-
|
138
|
-
|
156
|
+
```bash
|
157
|
+
bundle exec rails redirectr:install:migrations
|
158
|
+
bundle exec rails db:migrate
|
159
|
+
```
|
139
160
|
|
140
161
|
Redirectr::ReferrerToken has two representations: #to_s displays the URL and #to_param its tokenized form. Depending on your config, this can be either a random token, an encrypted URL or the plaintext URL.
|
141
162
|
|
data/lib/redirectr/version.rb
CHANGED
data/lib/redirectr.rb
CHANGED
@@ -28,6 +28,9 @@ module Redirectr
|
|
28
28
|
class InvalidReferrerToken < ArgumentError
|
29
29
|
end
|
30
30
|
|
31
|
+
class InvalidUrl < ArgumentError
|
32
|
+
end
|
33
|
+
|
31
34
|
def self.config
|
32
35
|
Rails.configuration.x.redirectr
|
33
36
|
end
|
@@ -143,13 +146,15 @@ module Redirectr
|
|
143
146
|
if self.referrer_url.present?
|
144
147
|
self.referrer_url
|
145
148
|
else
|
146
|
-
|
149
|
+
url = default || self.default_url
|
150
|
+
|
151
|
+
case url
|
147
152
|
when nil
|
148
|
-
|
153
|
+
raise Redirectr::InvalidUrl, 'No URL given'
|
149
154
|
when String
|
150
|
-
ReferrerToken(
|
155
|
+
ReferrerToken(url)
|
151
156
|
else
|
152
|
-
ReferrerToken(url_for(
|
157
|
+
ReferrerToken(url_for(url))
|
153
158
|
end
|
154
159
|
end
|
155
160
|
end
|
@@ -205,4 +210,3 @@ module Redirectr
|
|
205
210
|
end # module Redirectr
|
206
211
|
|
207
212
|
ActionController::Base.send :include, Redirectr::ControllerMethods
|
208
|
-
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redirectr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Willem van Kerkhof
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: rails
|
@@ -63,7 +62,6 @@ homepage: http://github.com/wvk/redirectr
|
|
63
62
|
licenses:
|
64
63
|
- MIT
|
65
64
|
metadata: {}
|
66
|
-
post_install_message:
|
67
65
|
rdoc_options: []
|
68
66
|
require_paths:
|
69
67
|
- lib
|
@@ -78,8 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
76
|
- !ruby/object:Gem::Version
|
79
77
|
version: '0'
|
80
78
|
requirements: []
|
81
|
-
rubygems_version: 3.
|
82
|
-
signing_key:
|
79
|
+
rubygems_version: 3.6.6
|
83
80
|
specification_version: 4
|
84
81
|
summary: Rails referrer-URL handling done right
|
85
82
|
test_files: []
|