Index: sitescripts/filterhits/web/query.py |
diff --git a/sitescripts/filterhits/web/query.py b/sitescripts/filterhits/web/query.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c57ea5555a7f77b2a723792e384e912fc5384fd4 |
--- /dev/null |
+++ b/sitescripts/filterhits/web/query.py |
@@ -0,0 +1,73 @@ |
+# coding: utf-8 |
+ |
+# This file is part of the Adblock Plus web scripts, |
+# Copyright (C) 2006-2015 Eyeo GmbH |
+# |
+# Adblock Plus is free software: you can redistribute it and/or modify |
+# it under the terms of the GNU General Public License version 3 as |
+# published by the Free Software Foundation. |
+# |
+# Adblock Plus 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 General Public License |
+# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
+ |
+import os |
+import MySQLdb |
+import json |
+from urlparse import parse_qsl |
+ |
+from sitescripts.web import url_handler |
+from sitescripts.utils import cached, setupStderr |
+from sitescripts.filterhits import common, db |
+ |
+def query(domain=None, filter=None, skip=0, take=20, order="DESC", order_by="hits", **_): |
+ """ |
+ Returns the SQL and parameters needed to perform a query of the filterhits data. |
+ """ |
+ sql = """SELECT SQL_CALC_FOUND_ROWS domain, filter, hits |
+ FROM frequencies as freq |
+ LEFT JOIN filters as f ON f.sha1=freq.filter_sha1 |
+ %s |
+ ORDER BY %s |
+ LIMIT %%s, %%s""" |
+ |
+ where_fields = [(s, "%" + p + "%") for s, p in (("domain", domain), |
+ ("filter", filter)) if p] |
+ where = " AND ".join([f[0] + " LIKE %s" for f in where_fields]) |
+ where_sql = "WHERE " + where if where else "" |
Wladimir Palant
2015/03/27 16:29:06
This is confusing, why the intermediate step?
whe
kzar
2015/03/27 22:15:00
You're right this code was confusing, I hadn't loo
|
+ |
+ order = order.upper() if order.upper() in ("ASC", "DESC") else "ASC" |
+ order_by_sql = "`%s` %s" % (MySQLdb.escape_string(order_by), order) |
Wladimir Palant
2015/03/27 16:29:06
How about you only allow certain values for order_
kzar
2015/03/27 22:15:00
Done.
|
+ |
+ params = [f[1] for f in where_fields] + [int(skip), int(take)] |
+ return [sql % (where_sql, order_by_sql)] + params |
+ |
+@url_handler("/query") |
+def query_handler(environ, start_response): |
+ setupStderr(environ["wsgi.errors"]) |
+ params = dict(parse_qsl(environ.get('QUERY_STRING', ''))) |
+ |
+ try: |
+ db_connection = db.connect() |
+ try: |
+ results = db.query(db_connection, *query(**params), dict_result=True) |
+ total = db.query(db_connection, "SELECT FOUND_ROWS()")[0][0] |
+ finally: |
+ db_connection.close() |
+ except MySQLdb.Error: |
+ return common.show_error("Failed to query database!", start_response, |
+ "500 Database error") |
kzar
2015/03/27 22:15:00
Done.
|
+ |
+ try: |
+ echo = int(params["echo"]) |
+ except (ValueError, KeyError): |
+ echo = 0 |
+ |
+ response_headers = [("Content-type", "application/json")] |
Wladimir Palant
2015/03/27 16:29:06
"application/json; charset=utf-8" please.
|
+ start_response("200 OK", response_headers) |
+ return [json.dumps({"results": results, "echo": echo, |
+ "total": total, "count": len(results)})] |
Wladimir Palant
2015/03/27 16:29:06
This should be json.dumps(..., ensure_ascii=False)
kzar
2015/03/27 22:15:00
Done.
|