Give endpoint methods unique names (#1694)

* Give endpoint methods unique names

* Remove specific flake8 rule which is not needed anymore
This commit is contained in:
Mathieu Rollet 2021-03-11 00:33:26 +01:00 коммит произвёл GitHub
Родитель ff462a9d5f
Коммит fd2c2d1bec
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 9 добавлений и 12 удалений

Просмотреть файл

@ -11,9 +11,6 @@ per-file-ignores =
# Ignore any import statements in __init__ files
mozdef_util/mozdef_util/query_models/__init__.py: F401
# Ignore redefinition of index name
rest/index.py: F811
ignore =
E225 # missing whitespace around operator
E231 # missing whitespace after ','

Просмотреть файл

@ -89,7 +89,7 @@ def status():
@route('/getwatchlist')
@route('/getwatchlist/')
def status():
def get_watchlist():
'''endpoint for grabbing watchlist contents'''
if request.body:
request.body.read()
@ -103,7 +103,7 @@ def status():
@route('/veris')
@route('/veris/')
@enable_cors
def index():
def veris():
'''returns a count of veris tags'''
if request.body:
request.body.read()
@ -117,7 +117,7 @@ def index():
@route('/kibanadashboards')
@route('/kibanadashboards/')
@enable_cors
def index():
def kibana_dashboards():
'''returns a list of dashboards to show on the UI'''
if request.body:
request.body.read()
@ -132,7 +132,7 @@ def index():
@post('/blockip', methods=['POST'])
@post('/blockip/', methods=['POST'])
@enable_cors
def index():
def block_ip():
'''will receive a call to block an ip address'''
sendMessgeToPlugins(request, response, 'blockip')
return response
@ -141,7 +141,7 @@ def index():
@post('/blockfqdn', methods=['POST'])
@post('/blockfqdn/', methods=['POST'])
@enable_cors
def index():
def block_fqdn():
'''will receive a call to block an ip address'''
sendMessgeToPlugins(request, response, 'blockfqdn')
return response
@ -150,7 +150,7 @@ def index():
@post('/watchitem', methods=['POST'])
@post('/watchitem/', methods=['POST'])
@enable_cors
def index():
def watch_item():
'''will receive a call to watchlist a specific term'''
sendMessgeToPlugins(request, response, 'watchitem')
return response
@ -159,7 +159,7 @@ def index():
@post('/ipwhois', methods=['POST'])
@post('/ipwhois/', methods=['POST'])
@enable_cors
def index():
def ip_whois():
'''return a json version of whois for an ip address'''
if request.body:
arequest = request.body.read()
@ -183,7 +183,7 @@ def index():
@post('/ipdshieldquery', methods=['POST'])
@post('/ipdshieldquery/', methods=['POST'])
@enable_cors
def index():
def ip_dshield_query():
'''
return a json version of dshield query for an ip address
https://isc.sans.edu/api/index.html
@ -221,7 +221,7 @@ def index():
@route('/alertschedules')
@route('/alertschedules/')
@enable_cors
def index():
def alert_schedules():
'''an endpoint to return alert schedules'''
if request.body:
request.body.read()