]> git.mxchange.org Git - fba.git/commitdiff
added option to get blocks by reason
authorEnju Aihara <9839590-EnjuAihara@users.noreply.gitlab.com>
Sat, 23 Apr 2022 13:06:31 +0000 (15:06 +0200)
committerEnju Aihara <9839590-EnjuAihara@users.noreply.gitlab.com>
Sat, 23 Apr 2022 13:06:31 +0000 (15:06 +0200)
api.py
index.html

diff --git a/api.py b/api.py
index 5f0bb53886726792900bda3eb25b41e4a2f51978..149dfd3e4a7c00afc22243a5398451f3a07ff8d6 100644 (file)
--- a/api.py
+++ b/api.py
@@ -31,47 +31,62 @@ def info():
     }
 
 @app.get(base_url+"/api")
-def blocked(domain: str = None):
-    if domain == None:
-        raise HTTPException(status_code=400, detail="No domain specified")
+def blocked(domain: str = None, reason: str = None):
+    if domain == None and reason == None:
+        raise HTTPException(status_code=400, detail="No filter specified")
     conn = sqlite3.connect("blocks.db")
     c = conn.cursor()
-    wildchar = "*." + ".".join(domain.split(".")[-domain.count("."):])
-    c.execute("select blocker, block_level, reason from blocks where blocked = ? or blocked = ? or blocked = ?", (domain, wildchar, get_hash(domain)))
+    if domain != None:
+        wildchar = "*." + ".".join(domain.split(".")[-domain.count("."):])
+        c.execute("select blocker, block_level, reason from blocks where blocked = ? or blocked = ? or blocked = ?", (domain, wildchar, get_hash(domain)))
+    else:
+        c.execute("select * from blocks where reason like ? and reason != ''", ("%"+reason+"%",))
     blocks = c.fetchall()
     conn.close()
 
     result = {}
     reasons = {}
+    if domain != None:
+        for domain, block_level, reason in blocks:
+            if block_level in result:
+                result[block_level].append(domain)
+            else:
+                result[block_level] = [domain]
+                
+            if reason != "":
+                if block_level in reasons:
+                    reasons[block_level][domain] = reason
+                else:
+                    reasons[block_level] = {domain: reason}
+        return {"blocks": result, "reasons": reasons}
 
-    for domain, block_level, reason in blocks:
+    for blocker, blocked, reason, block_level in blocks:
         if block_level in result:
-            result[block_level].append(domain)
+            result[block_level].append({"blocker": blocker, "blocked": blocked, "reason": reason})
         else:
-            result[block_level] = [domain]
-            
-        if reason != "":
-            if block_level in reasons:
-                reasons[block_level][domain] = reason
-            else:
-                reasons[block_level] = {domain: reason}
-
-    return {"blocks": result, "reasons": reasons}
+            result[block_level] = [{"blocker": blocker, "blocked": blocked, "reason": reason}]
+    return {"blocks": result}
 
 @app.get(base_url+"/")
-def index(request: Request, domain: str = None):
-    if domain == "":
+def index(request: Request, domain: str = None, reason: str = None):
+    if domain == "" or reason == "":
         return responses.RedirectResponse("/")
-    blocks = get(f"http://127.0.0.1:{port}{base_url}/api?domain={domain}")
     info = None
-    if domain == None:
+    blocks = None
+    if domain == None and reason == None:
         info = get(f"http://127.0.0.1:{port}{base_url}/info")
         if not info.ok:
             raise HTTPException(status_code=info.status_code, detail=info.text)
         info = info.json()
-    if not blocks.ok:
-        raise HTTPException(status_code=blocks.status_code, detail=blocks.text)
-    return templates.TemplateResponse("index.html", {"request": request, "domain": domain, "blocks": blocks.json(), "info": info})
+    elif domain != None:
+        blocks = get(f"http://127.0.0.1:{port}{base_url}/api?domain={domain}")
+    elif reason != None:
+        blocks = get(f"http://127.0.0.1:{port}{base_url}/api?reason={reason}")
+    if blocks != None:
+        if not blocks.ok:
+            raise HTTPException(status_code=blocks.status_code, detail=blocks.text)
+        blocks = blocks.json()
+    return templates.TemplateResponse("index.html", {"request": request, "domain": domain, "blocks": blocks, "reason": reason, "info": info})
 
 if __name__ == "__main__":
     uvicorn.run("api:app", host="127.0.0.1", port=port, log_level="info")
index e54894298f2b8951bc6c60f404b48249aca60a6b..f5cde0377a471049e10df90a539978c1e8780034 100644 (file)
     </style>
 </head>
 <body>
-    {% if domain %}
+    {% if reason %}
+        <h1>Instances that use "{{reason}}" in their Reason</h1>
+        {% for block_level in blocks.blocks %}
+            <div class="block_level">
+                <h2>{{block_level}} ({{blocks.blocks[block_level]|length}})</h2>
+                {% for block in blocks.blocks[block_level] %}
+                    <div class="block">
+                        <img src="https://chizu.love/fedi-block-api/favicons/{{block.blocker}}.png" width=16/>
+                        <b><a href="https://{{block.blocker}}">{{block.blocker}}</a></b> -> 
+                        <img src="https://chizu.love/fedi-block-api/favicons/{{block.blocked}}.png" width=16/>
+                        <b><a href="https://{{block.blocked}}">{{block.blocked}}</a></b><br/>
+                        {{block.reason}}
+                    </div>
+                {% endfor %}
+            </div>
+        {% endfor %}
+    {% elif blocks %}
         <h1>Instances that block {{domain}}</h1>
         {% for block_level in blocks.blocks %}
             <div class="block_level">
             <input type="text" name="domain" placeholder="example.com" />
             <input type="submit" value="Submit" />
         </form>
+        <h1>Enter a Reason</h1>
+        <form>
+            <input type="text" name="reason" placeholder="free speech" />
+            <input type="submit" value="Submit" />
+        </form>
         <div class="info">
             known instances: {{info.known_instances}}<br/>
             indexed instances: {{info.indexed_instances}}<br/>