rack-geofilter 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 98a3c4bebedc11396c6443b7aeb1da4b90880a6b
4
+ data.tar.gz: c72dd3ddb31f0898405db5d25442ab2d9ab484c1
5
+ SHA512:
6
+ metadata.gz: 025f89bcbeac95cd931c5fe8f174a3aee0adffa160585a7be7e13718f5e52114d1147a39c549a3b3d739fc1dac935317a0d59c11e9fe18d14f3576ee136d6644
7
+ data.tar.gz: 28b7cfdd42998552e129334d71fd1fa7fa0740831034faa9123fbbc960bad0ec78f164cd1ba0df2a0e56a0fddbe73c7032352ab7082ce2d0a0505d466f3d42b5
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rack-cloudflare-geofilter.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Alessio Signorini
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,37 @@
1
+ # Rack::Geofilter
2
+
3
+ A simple gem to block traffic from unauthorized countries. Useful in case your
4
+ service is not available in those countries or if you are under attack.
5
+
6
+ It currently relies on the ``CF-IPCountry`` added by **[Cloudflare](https://support.cloudflare.com/hc/en-us/articles/200168236-What-does-Cloudflare-IP-Geolocation-do-)** firewall.
7
+
8
+ If you do not use that service you can not use this gem.
9
+
10
+ ## Installation
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'rack-geofilter'
16
+ ```
17
+
18
+ And then execute:
19
+
20
+ $ bundle install
21
+
22
+ ## Usage
23
+
24
+ To use with Rails, add to your ``config/application.rb`` the following line
25
+
26
+ ```ruby
27
+ config.middleware.insert_before ActionDispatch::RemoteIp, Rack::Geofilter
28
+ ```
29
+
30
+ ## Contributing
31
+
32
+ Bug reports and pull requests are welcome on GitHub at https://github.com/alessio-signorini/rack-geofilter.
33
+
34
+
35
+ ## License
36
+
37
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rack/cloudflare/geofilter"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,45 @@
1
+ module Rack
2
+ class Geofilter
3
+
4
+ def initialize app
5
+ @app = app
6
+ end
7
+
8
+ def call env
9
+ if should_block?(env)
10
+ return error_message
11
+ end
12
+
13
+ @app.call(env)
14
+ end
15
+
16
+ private
17
+
18
+ def filter_enabled?
19
+ ENV.has_key?('BLOCKED_COUNTRIES')
20
+ end
21
+
22
+ def countries_blocked
23
+ ENV['BLOCKED_COUNTRIES'].split(',')
24
+ end
25
+
26
+ def origin_country(env)
27
+ env['HTTP_CF_IPCOUNTRY']
28
+ end
29
+
30
+ def request_tagged?(env)
31
+ env.has_key?('HTTP_CF_IPCOUNTRY')
32
+ end
33
+
34
+ def should_block?(env)
35
+ if filter_enabled? && request_tagged?(env)
36
+ countries_blocked.include? origin_country(env)
37
+ end
38
+ end
39
+
40
+ def error_message
41
+ [451, {'Content-Type' => 'application/json'}, ["Service not available in country of origin\n"]]
42
+ end
43
+
44
+ end
45
+ end
@@ -0,0 +1,5 @@
1
+ module Rack
2
+ class Geofilter
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require 'rack/geofilter/version'
6
+ require 'rack/geofilter'
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = "rack-geofilter"
10
+ spec.version = Rack::Geofilter::VERSION
11
+ spec.authors = ["Alessio Signorini"]
12
+ spec.email = ["alessio@signorini.us"]
13
+
14
+ spec.summary = %q{A rack middleware for blocking requests using Cloudflare IP Geolocation}
15
+ spec.homepage = "http://github.com/alessio-signorini/rack-geofilter"
16
+ spec.license = "MIT"
17
+
18
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.12"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rack-geofilter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Alessio Signorini
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-10-09 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.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description:
42
+ email:
43
+ - alessio@signorini.us
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - bin/console
54
+ - bin/setup
55
+ - lib/rack/geofilter.rb
56
+ - lib/rack/geofilter/version.rb
57
+ - rack-geofilter.gemspec
58
+ homepage: http://github.com/alessio-signorini/rack-geofilter
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.5.1
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: A rack middleware for blocking requests using Cloudflare IP Geolocation
82
+ test_files: []