Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eterban
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eterban
Commits
2a29c32d
Commit
2a29c32d
authored
Mar 27, 2022
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add unban.py for gateway target
parent
cb8e4ce4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
unban.py
gateway/usr/share/eterban/unban.py
+41
-0
No files found.
gateway/usr/share/eterban/unban.py
0 → 100755
View file @
2a29c32d
#!/usr/bin/python3
import
redis
import
sys
import
configparser
import
os
import
socket
def
get_settings
(
path_to_config
):
if
not
os
.
path
.
exists
(
path_to_config
):
print
(
"Missed config file"
)
sys
.
exit
()
config
=
configparser
.
ConfigParser
()
config
.
read
(
path_to_config
)
# Читаем некоторые значения из конфиг. файла.
redis_server
=
config
.
get
(
"Settings"
,
"redis_server"
,
fallback
=
"localhost"
)
hostname
=
config
.
get
(
"Settings"
,
"hostname"
,
fallback
=
socket
.
gethostname
())
return
(
redis_server
,
hostname
)
path_to_config
=
'/etc/eterban/settings.ini'
redis_server
,
hostname
=
get_settings
(
path_to_config
)
if
len
(
sys
.
argv
)
>
1
:
ip
=
sys
.
argv
[
1
]
else
:
ip
=
""
if
not
ip
:
print
(
"Run with IP arg"
)
sys
.
exit
()
try
:
r
=
redis
.
Redis
(
host
=
redis_server
)
r
.
publish
(
'unban'
,
ip
)
message
=
ip
+
" was unblocked by admin on "
+
hostname
r
.
publish
(
'by'
,
message
)
except
:
print
(
"Error with connect to redis "
+
redis_server
)
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