user_log_filter.py
127 lines
| 4.7 KiB
| text/x-python
|
PythonLexer
r1559 | # -*- coding: utf-8 -*- | |||
r4306 | # Copyright (C) 2010-2020 RhodeCode GmbH | |||
r1559 | # | |||
# This program is free software: you can redistribute it and/or modify | ||||
# it under the terms of the GNU Affero General Public License, version 3 | ||||
# (only), as published by the Free Software Foundation. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU Affero General Public License | ||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||
# | ||||
# This program is dual-licensed. If you wish to learn more about the | ||||
# RhodeCode Enterprise Edition, including its added features, Support services, | ||||
# and proprietary license terms, please see https://rhodecode.com/licenses/ | ||||
import logging | ||||
from whoosh.qparser.default import QueryParser, query | ||||
from whoosh.qparser.dateparse import DateParserPlugin | ||||
r4135 | from whoosh.fields import (TEXT, Schema, DATETIME, KEYWORD) | |||
r1824 | from sqlalchemy.sql.expression import or_, and_, not_, func | |||
r1559 | ||||
from rhodecode.model.db import UserLog | ||||
r1824 | from rhodecode.lib.utils2 import remove_prefix, remove_suffix, safe_unicode | |||
r1559 | ||||
# JOURNAL SCHEMA used only to generate queries in journal. We use whoosh | ||||
# querylang to build sql queries and filter journals | ||||
r4135 | AUDIT_LOG_SCHEMA = Schema( | |||
username=KEYWORD(), | ||||
repository=KEYWORD(), | ||||
r1559 | date=DATETIME(), | |||
action=TEXT(), | ||||
ip=TEXT(), | ||||
) | ||||
log = logging.getLogger(__name__) | ||||
def user_log_filter(user_log, search_term): | ||||
""" | ||||
Filters sqlalchemy user_log based on search_term with whoosh Query language | ||||
http://packages.python.org/Whoosh/querylang.html | ||||
:param user_log: | ||||
:param search_term: | ||||
""" | ||||
r3061 | log.debug('Initial search term: %r', search_term) | |||
r1559 | qry = None | |||
if search_term: | ||||
r4135 | qp = QueryParser('repository', schema=AUDIT_LOG_SCHEMA) | |||
r1559 | qp.add_plugin(DateParserPlugin()) | |||
r1824 | qry = qp.parse(safe_unicode(search_term)) | |||
r3061 | log.debug('Filtering using parsed query %r', qry) | |||
r1559 | ||||
def wildcard_handler(col, wc_term): | ||||
if wc_term.startswith('*') and not wc_term.endswith('*'): | ||||
# postfix == endswith | ||||
wc_term = remove_prefix(wc_term, prefix='*') | ||||
return func.lower(col).endswith(wc_term) | ||||
elif wc_term.startswith('*') and wc_term.endswith('*'): | ||||
# wildcard == ilike | ||||
wc_term = remove_prefix(wc_term, prefix='*') | ||||
wc_term = remove_suffix(wc_term, suffix='*') | ||||
return func.lower(col).contains(wc_term) | ||||
def get_filterion(field, val, term): | ||||
if field == 'repository': | ||||
field = getattr(UserLog, 'repository_name') | ||||
elif field == 'ip': | ||||
field = getattr(UserLog, 'user_ip') | ||||
elif field == 'date': | ||||
field = getattr(UserLog, 'action_date') | ||||
elif field == 'username': | ||||
field = getattr(UserLog, 'username') | ||||
else: | ||||
field = getattr(UserLog, field) | ||||
r3061 | log.debug('filter field: %s val=>%s', field, val) | |||
r1559 | ||||
# sql filtering | ||||
if isinstance(term, query.Wildcard): | ||||
return wildcard_handler(field, val) | ||||
elif isinstance(term, query.Prefix): | ||||
return func.lower(field).startswith(func.lower(val)) | ||||
elif isinstance(term, query.DateRange): | ||||
return and_(field >= val[0], field <= val[1]) | ||||
r1824 | elif isinstance(term, query.Not): | |||
return not_(field == val) | ||||
r1559 | return func.lower(field) == func.lower(val) | |||
r1824 | if isinstance(qry, (query.And, query.Not, query.Term, query.Prefix, | |||
query.Wildcard, query.DateRange)): | ||||
r1559 | if not isinstance(qry, query.And): | |||
qry = [qry] | ||||
r1824 | ||||
r1559 | for term in qry: | |||
r1824 | if isinstance(term, query.Not): | |||
not_term = [z for z in term.leaves()][0] | ||||
field = not_term.fieldname | ||||
val = not_term.text | ||||
elif isinstance(term, query.DateRange): | ||||
field = term.fieldname | ||||
val = [term.startdate, term.enddate] | ||||
r2520 | elif isinstance(term, query.NullQuery.__class__): | |||
field = '' | ||||
val = '' | ||||
r1824 | else: | |||
field = term.fieldname | ||||
val = term.text | ||||
r2520 | if field: | |||
user_log = user_log.filter(get_filterion(field, val, term)) | ||||
r1559 | elif isinstance(qry, query.Or): | |||
filters = [] | ||||
for term in qry: | ||||
field = term.fieldname | ||||
val = (term.text if not isinstance(term, query.DateRange) | ||||
else [term.startdate, term.enddate]) | ||||
filters.append(get_filterion(field, val, term)) | ||||
user_log = user_log.filter(or_(*filters)) | ||||
return user_log | ||||