rack-uri_sanitizer 0.0.2
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 +7 -0
- data/.gitignore +17 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +46 -0
- data/Rakefile +8 -0
- data/lib/rack/uri_sanitizer.rb +17 -0
- data/lib/rack/uri_sanitizer/version.rb +5 -0
- data/rack-uri_sanitizer.gemspec +27 -0
- data/test/test_uri_sanitizer.rb +27 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7e4c52422707bee690c3836b2202704cc1089a85
|
4
|
+
data.tar.gz: 201832857a3e309c0ab8737c9b7a48e5788fecff
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 431c2b2e6576ddafc96208cb3337334437c31d50c66ccd19a8510392dbebfbe4086e61562f689bb9700cace53204f4da34ae46f53b8e6f15b2f0f184180736c7
|
7
|
+
data.tar.gz: e671f6c02cc3a3886e38ada78e2d29b36c7ce72473da4bd5a8f6c2e44e26a366e047d79b2ed01e4538adb5b670aa280e1c9171278c14afbc73b98bd020739da5
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Cédric FABIANSKI
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Rack::UriSanitizer
|
2
|
+
|
3
|
+
[](https://travis-ci.org/cfabianski/rack-uri_sanitizer)
|
4
|
+
|
5
|
+
Rack::URISanitizer is a Rack middleware which cleans up trailing `%` characters in request URI.
|
6
|
+
It will replace them with their encoded equivalent `%25`.
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
gem 'rack-uri_sanitizer'
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install rack-uri_sanitizer
|
21
|
+
|
22
|
+
For Rails, add this to your `application.rb`:
|
23
|
+
|
24
|
+
config.middleware.insert_before Rack::Runtime, Rack::URISanitizer
|
25
|
+
|
26
|
+
For Rack apps, add this to config.ru:
|
27
|
+
|
28
|
+
use Rack::URISanitizer
|
29
|
+
|
30
|
+
## Usage
|
31
|
+
|
32
|
+
Rack::URISanitizer is a Rack middleware which cleans up trailing `%` characters in request URI (`QUERY_STRING`).
|
33
|
+
It will replace them with their encoded equivalent (`%25`).
|
34
|
+
|
35
|
+
## Contributing
|
36
|
+
|
37
|
+
1. Fork it
|
38
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
39
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
40
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
41
|
+
5. Create new Pull Request
|
42
|
+
|
43
|
+
## Credits
|
44
|
+
|
45
|
+
- Cédric FABIANSKI ([cfabianski](https://github.com/cfabianski))
|
46
|
+
- [UTF8Sanitizer](https://github.com/whitequark/rack-utf8_sanitizer)
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rack/uri_sanitizer/version"
|
2
|
+
|
3
|
+
module Rack
|
4
|
+
class URISanitizer
|
5
|
+
def initialize(app)
|
6
|
+
@app = app
|
7
|
+
end
|
8
|
+
|
9
|
+
def call(env)
|
10
|
+
unless /\A(?:%[0-9a-fA-F]{2}|[^%])*\z/ =~ env['QUERY_STRING'].to_s
|
11
|
+
env['QUERY_STRING'] = env['QUERY_STRING'].gsub(/%(?![0-9a-fA-F]{2})/, '%25')
|
12
|
+
end
|
13
|
+
|
14
|
+
@app.call(env)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'rack/uri_sanitizer/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "rack-uri_sanitizer"
|
8
|
+
spec.version = Rack::URISanitizer::VERSION
|
9
|
+
spec.authors = ["Cédric FABIANSKI"]
|
10
|
+
spec.email = ["cfabianski@me.com"]
|
11
|
+
spec.description = %q{Rack::URISanitizer is a Rack middleware which cleans up } <<
|
12
|
+
%q{trailing % characters in request URI.}
|
13
|
+
spec.summary = spec.description
|
14
|
+
spec.homepage = "https://github.com/cfabianski/rack-uri_sanitizer"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files`.split($/)
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
23
|
+
spec.add_development_dependency "rake"
|
24
|
+
|
25
|
+
spec.add_development_dependency "bacon"
|
26
|
+
spec.add_development_dependency "bacon-colored_output"
|
27
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: UTF-8
|
2
|
+
|
3
|
+
require 'bacon/colored_output'
|
4
|
+
require 'rack/uri_sanitizer'
|
5
|
+
|
6
|
+
describe Rack::URISanitizer do
|
7
|
+
before do
|
8
|
+
@app = Rack::URISanitizer.new(-> env { env })
|
9
|
+
end
|
10
|
+
|
11
|
+
shared :does_sanitize_uri do
|
12
|
+
it "sanitizes URI-like entity (QUERY_STRING)" do
|
13
|
+
env = @app.({ "QUERY_STRING" => @uri_input })
|
14
|
+
result = env["QUERY_STRING"]
|
15
|
+
|
16
|
+
result.should.match /\A(?:%[0-9a-fA-F]{2}|[^%])*\z/
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
describe "with trailing %" do
|
21
|
+
before do
|
22
|
+
@uri_input = "http://bar/foo%5B%5D%3D%"
|
23
|
+
end
|
24
|
+
|
25
|
+
behaves_like :does_sanitize_uri
|
26
|
+
end
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rack-uri_sanitizer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Cédric FABIANSKI
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-12-18 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bacon
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bacon-colored_output
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Rack::URISanitizer is a Rack middleware which cleans up trailing % characters
|
70
|
+
in request URI.
|
71
|
+
email:
|
72
|
+
- cfabianski@me.com
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- .gitignore
|
78
|
+
- .travis.yml
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- lib/rack/uri_sanitizer.rb
|
84
|
+
- lib/rack/uri_sanitizer/version.rb
|
85
|
+
- rack-uri_sanitizer.gemspec
|
86
|
+
- test/test_uri_sanitizer.rb
|
87
|
+
homepage: https://github.com/cfabianski/rack-uri_sanitizer
|
88
|
+
licenses:
|
89
|
+
- MIT
|
90
|
+
metadata: {}
|
91
|
+
post_install_message:
|
92
|
+
rdoc_options: []
|
93
|
+
require_paths:
|
94
|
+
- lib
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
requirements: []
|
106
|
+
rubyforge_project:
|
107
|
+
rubygems_version: 2.1.11
|
108
|
+
signing_key:
|
109
|
+
specification_version: 4
|
110
|
+
summary: Rack::URISanitizer is a Rack middleware which cleans up trailing % characters
|
111
|
+
in request URI.
|
112
|
+
test_files:
|
113
|
+
- test/test_uri_sanitizer.rb
|