mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 03:04:28 +00:00
Add the special trash collection
This commit is contained in:
parent
ffd06f946b
commit
160136acdf
2 changed files with 50 additions and 28 deletions
75
app.py
75
app.py
|
@ -522,6 +522,23 @@ def jsonify(**data):
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _get_ip():
|
||||||
|
"""Guess the IP address from the request. Only used for security purpose (failed logins or bad payload).
|
||||||
|
|
||||||
|
Geoip will be returned if the "broxy" headers are set (it does Geoip
|
||||||
|
using an offline database and append these special headers).
|
||||||
|
"""
|
||||||
|
ip = request.headers.get("X-Forwarded-For", request.remote_addr)
|
||||||
|
geoip = None
|
||||||
|
if request.headers.get("Broxy-Geoip-Country"):
|
||||||
|
geoip = (
|
||||||
|
request.headers.get("Broxy-Geoip-Country")
|
||||||
|
+ "/"
|
||||||
|
+ request.headers.get("Broxy-Geoip-Region")
|
||||||
|
)
|
||||||
|
return ip, geoip
|
||||||
|
|
||||||
|
|
||||||
def is_api_request():
|
def is_api_request():
|
||||||
h = request.headers.get("Accept")
|
h = request.headers.get("Accept")
|
||||||
if h is None:
|
if h is None:
|
||||||
|
@ -1733,7 +1750,19 @@ def inbox():
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
data = request.get_json(force=True)
|
try:
|
||||||
|
data = request.get_json(force=True)
|
||||||
|
except Exception:
|
||||||
|
return Response(
|
||||||
|
status=422,
|
||||||
|
headers={"Content-Type": "application/json"},
|
||||||
|
response=json.dumps(
|
||||||
|
{
|
||||||
|
"error": "failed to decode request as JSON"
|
||||||
|
}
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
print(f"req_headers={request.headers}")
|
print(f"req_headers={request.headers}")
|
||||||
print(f"raw_data={data}")
|
print(f"raw_data={data}")
|
||||||
logger.debug(f"req_headers={request.headers}")
|
logger.debug(f"req_headers={request.headers}")
|
||||||
|
@ -1755,24 +1784,26 @@ def inbox():
|
||||||
if data["type"] == ActivityType.DELETE.value and data["id"].startswith(
|
if data["type"] == ActivityType.DELETE.value and data["id"].startswith(
|
||||||
data["object"]
|
data["object"]
|
||||||
):
|
):
|
||||||
logger.info(f"received a Delete for an actor {data!r}")
|
# If we're here, this means the key is not saved, so we cannot verify the object
|
||||||
if get_backend().inbox_check_duplicate(MY_PERSON, data["id"]):
|
logger.info(f"received a Delete for an unknown actor {data!r}, drop it")
|
||||||
# The activity is already in the inbox
|
|
||||||
logger.info(f"received duplicate activity {data!r}, dropping it")
|
|
||||||
|
|
||||||
DB.activities.insert_one(
|
|
||||||
{
|
|
||||||
"box": Box.INBOX.value,
|
|
||||||
"activity": data,
|
|
||||||
"type": _to_list(data["type"]),
|
|
||||||
"remote_id": data["id"],
|
|
||||||
"meta": {"undo": False, "deleted": False},
|
|
||||||
}
|
|
||||||
)
|
|
||||||
# TODO(tsileo): write the callback the the delete external actor event
|
|
||||||
return Response(status=201)
|
return Response(status=201)
|
||||||
except Exception:
|
except Exception:
|
||||||
logger.exception(f'failed to fetch remote id at {data["id"]}')
|
logger.exception(f'failed to fetch remote for payload {data!r}')
|
||||||
|
|
||||||
|
# Track/store the payload for analysis
|
||||||
|
ip, geoip = _get_ip()
|
||||||
|
|
||||||
|
DB.trash.insert({
|
||||||
|
"activity": data,
|
||||||
|
"meta": {
|
||||||
|
"ts": datetime.now().timestamp(),
|
||||||
|
"ip_address": ip,
|
||||||
|
"geoip": geoip,
|
||||||
|
"tb": traceback.format_exc(),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
return Response(
|
return Response(
|
||||||
status=422,
|
status=422,
|
||||||
headers={"Content-Type": "application/json"},
|
headers={"Content-Type": "application/json"},
|
||||||
|
@ -2196,18 +2227,6 @@ def indieauth_flow():
|
||||||
return redirect(red)
|
return redirect(red)
|
||||||
|
|
||||||
|
|
||||||
def _get_ip():
|
|
||||||
ip = request.headers.get("X-Forwarded-For", request.remote_addr)
|
|
||||||
geoip = None
|
|
||||||
if request.headers.get("Broxy-Geoip-Country"):
|
|
||||||
geoip = (
|
|
||||||
request.headers.get("Broxy-Geoip-Country")
|
|
||||||
+ "/"
|
|
||||||
+ request.headers.get("Broxy-Geoip-Region")
|
|
||||||
)
|
|
||||||
return ip, geoip
|
|
||||||
|
|
||||||
|
|
||||||
@app.route("/indieauth", methods=["GET", "POST"])
|
@app.route("/indieauth", methods=["GET", "POST"])
|
||||||
def indieauth_endpoint():
|
def indieauth_endpoint():
|
||||||
if request.method == "GET":
|
if request.method == "GET":
|
||||||
|
|
|
@ -103,6 +103,9 @@ MEDIA_CACHE = MediaCache(GRIDFS, USER_AGENT)
|
||||||
|
|
||||||
|
|
||||||
def create_indexes():
|
def create_indexes():
|
||||||
|
if "trash" not in DB.collection_names():
|
||||||
|
DB.create_collection("trash", capped=True, size=50 << 20) # 50 MB
|
||||||
|
|
||||||
DB.command("compact", "activities")
|
DB.command("compact", "activities")
|
||||||
DB.activities.create_index([("remote_id", pymongo.ASCENDING)])
|
DB.activities.create_index([("remote_id", pymongo.ASCENDING)])
|
||||||
DB.activities.create_index([("activity.object.id", pymongo.ASCENDING)])
|
DB.activities.create_index([("activity.object.id", pymongo.ASCENDING)])
|
||||||
|
|
Loading…
Reference in a new issue