From 7983c46e93fc1ee8ad5f89859f3cd13861f08737 Mon Sep 17 00:00:00 2001 From: Renard Date: Thu, 30 Jul 2020 21:10:13 -0400 Subject: Mod API: Ignore reports --- cgi/modapi.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'cgi') diff --git a/cgi/modapi.py b/cgi/modapi.py index c2301ab..81cb929 100644 --- a/cgi/modapi.py +++ b/cgi/modapi.py @@ -75,10 +75,18 @@ def api_process(self, path_split): news = FetchAll( "SELECT * FROM `news` WHERE type = 1 ORDER BY `timestamp` DESC") values['news'] = news - elif method == 'reports': - reports = FetchAll( - "SELECT id, timestamp, timestamp_formatted, postid, parentid, link, board, INET6_NTOA(ip) AS ip, reason, INET6_NTOA(repip) AS repip FROM `reports` ORDER BY `timestamp` DESC") - values['reports'] = reports + elif method == 'reports': # /cgi/manage/reports/ignore + if len(path_split) > 3: + if path_split[3] == 'ignore': + report_id = formdata.get("id") + UpdateDb("DELETE FROM `reports` WHERE `id` = '" + + _mysql.escape_string(report_id)+"'") + else: + values['state']: "error" + else: + reports = FetchAll( + "SELECT id, timestamp, timestamp_formatted, postid, parentid, link, board, INET6_NTOA(ip) AS ip, reason, INET6_NTOA(repip) AS repip FROM `reports` ORDER BY `timestamp` DESC") + values['reports'] = reports elif method == 'logs': logs = FetchAll("SELECT * FROM `logs` ORDER BY `timestamp` DESC") values['logs'] = logs -- cgit v1.2.1-18-gbd029