Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
ip-whitelist
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
ip-whitelist
Commits
8fd9da65
Commit
8fd9da65
authored
Apr 05, 2020
by
Ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support appid
parent
17c7f7cd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
53 additions
and
14 deletions
+53
-14
README.md
README.md
+8
-2
1_create_ip_whitelist_list.rb
db/migrate/1_create_ip_whitelist_list.rb
+1
-0
interceptor.rb
lib/ip_whitelist/interceptor.rb
+16
-5
list.rb
lib/ip_whitelist/list.rb
+28
-7
No files found.
README.md
View file @
8fd9da65
...
@@ -2,4 +2,10 @@ IpWhitelist.redis = Redic.new
...
@@ -2,4 +2,10 @@ IpWhitelist.redis = Redic.new
rails g ip_whitelist:migrations
rails g ip_whitelist:migrations
include IpWhitelist::Interceptor
class ApplicatonController < ActiveController::Base
\ No newline at end of file
include IpWhitelist::Interceptor
end
class TestsController < ApplicationController
ip_interceptor :your_appid, only: :your_action
end
\ No newline at end of file
db/migrate/1_create_ip_whitelist_list.rb
View file @
8fd9da65
...
@@ -3,6 +3,7 @@ class CreateIpWhitelistList < ActiveRecord::Migration[5.1]
...
@@ -3,6 +3,7 @@ class CreateIpWhitelistList < ActiveRecord::Migration[5.1]
create_table
:ip_whitelist_lists
do
|
t
|
create_table
:ip_whitelist_lists
do
|
t
|
t
.
string
:descr
t
.
string
:descr
t
.
string
:ips
t
.
string
:ips
t
.
string
:appid
end
end
end
end
end
end
lib/ip_whitelist/interceptor.rb
View file @
8fd9da65
...
@@ -3,15 +3,26 @@ module IpWhitelist
...
@@ -3,15 +3,26 @@ module IpWhitelist
extend
ActiveSupport
::
Concern
extend
ActiveSupport
::
Concern
included
do
included
do
before_action
:ip_intercept
rescue_from
IpWhitelist
::
Error
do
|
e
|
rescue_from
IpWhitelist
::
Error
do
|
e
|
render
json:
{
code:
e
.
code
,
message:
e
.
message
},
status:
e
.
status
render
json:
{
code:
e
.
code
,
message:
e
.
message
},
status:
e
.
status
end
end
end
class_methods
do
def
ip_interceptor
appid
,
only:
nil
@@appid
=
appid
only
?
before_action
(:
ip_intercept
,
only:
only
)
:
before_action
(
:ip_intercept
)
def
ip_intercept
class_eval
do
unless
IpWhitelist
::
List
.
ips
.
include?
(
request
.
ip
)
private
raise
IpWhitelist
::
Error
.
new
(
status:
403
,
message:
'Invaild Request'
)
def
ip_intercept
p
@@appid
IpWhitelist
::
List
.
auth!
(
@@appid
,
request
.
ip
)
end
end
end
end
end
end
end
...
...
lib/ip_whitelist/list.rb
View file @
8fd9da65
...
@@ -2,19 +2,40 @@ module IpWhitelist
...
@@ -2,19 +2,40 @@ module IpWhitelist
class
List
<
ActiveRecord
::
Base
class
List
<
ActiveRecord
::
Base
self
.
table_name
=
'ip_whitelist_lists'
self
.
table_name
=
'ip_whitelist_lists'
REDIS_KEY
=
'
ip-whitelist-redis
'
REDIS_KEY
=
'
`ip-whitelist-redis`
'
validates_presence_of
:ips
validates_presence_of
:ips
,
:appid
after_save
:load
after_destroy
:load
def
redis_key
self
.
class
.
redis_key
(
appid
)
end
private
def
load
self
.
class
.
load
end
class
<<
self
class
<<
self
def
ips
def
redis_key
appid
IpWhitelist
.
redis
.
get
(
REDIS_KEY
)
&
.
split
(
','
)
||
load
"
#{
REDIS_KEY
}
-
#{
appid
}
"
end
def
auth!
appid
,
ip
unless
IpWhitelist
.
redis
.
hget
(
redis_key
(
appid
),
ip
)
raise
IpWhitelist
::
Error
.
new
(
status:
403
,
message:
'Invaild Request'
)
end
end
end
def
load
def
load
ips_ary
=
all
.
pluck
(
:ips
).
map
{
|
ips_str
|
ips_str
.
split
(
','
)
}.
reduce
(:
+
)
||
[]
redis
=
IpWhitelist
.
redis
IpWhitelist
.
redis
.
set
(
REDIS_KEY
,
ips_ary
.
join
(
','
))
redis
.
keys
(
redis_key
(
'*'
)).
each
{
|
key
|
redis
.
del
(
key
)
}
ips_ary
IpWhitelist
::
List
.
all
.
each
do
|
list
|
list
.
ips
.
split
(
','
).
each
{
|
ip
|
redis
.
hset
(
list
.
redis_key
,
ip
,
true
)
}
end
end
end
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment