Compare commits
1 commit
v2
...
test-fix-t
Author | SHA1 | Date | |
---|---|---|---|
|
3423747f33 |
54 changed files with 2080 additions and 3379 deletions
14
.drone.yml
14
.drone.yml
|
@ -1,14 +0,0 @@
|
||||||
kind: pipeline
|
|
||||||
name: default
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build and publish
|
|
||||||
image: plugins/docker
|
|
||||||
pull: always
|
|
||||||
settings:
|
|
||||||
repo: askiiart/microblogpub
|
|
||||||
tags: latest
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
5
AUTHORS
5
AUTHORS
|
@ -1,11 +1,8 @@
|
||||||
Thomas Sileo <t@a4.io>
|
Thomas Sileo <t@a4.io>
|
||||||
Kevin Wallace <doof@doof.net>
|
Kevin Wallace <doof@doof.net>
|
||||||
Miguel Jacq <mig@mig5.net>
|
Miguel Jacq <mig@mig5.net>
|
||||||
Alexey Shpakovsky <alexey@shpakovsky.ru>
|
|
||||||
Josh Washburne <josh@jodh.us>
|
Josh Washburne <josh@jodh.us>
|
||||||
João Costa <jdpc557@gmail.com>
|
Alexey Shpakovsky <alexey@shpakovsky.ru>
|
||||||
Sam <samr1.dev@pm.me>
|
|
||||||
Ash McAllan <acegiak@gmail.com>
|
Ash McAllan <acegiak@gmail.com>
|
||||||
Cassio Zen <cassio@hey.com>
|
Cassio Zen <cassio@hey.com>
|
||||||
Cocoa <momijizukamori@gmail.com>
|
Cocoa <momijizukamori@gmail.com>
|
||||||
Jane <jane@janeirl.dev>
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.11-slim as python-base
|
FROM python:3.10-slim as python-base
|
||||||
ENV PYTHONUNBUFFERED=1 \
|
ENV PYTHONUNBUFFERED=1 \
|
||||||
PYTHONDONTWRITEBYTECODE=1 \
|
PYTHONDONTWRITEBYTECODE=1 \
|
||||||
POETRY_HOME="/opt/poetry" \
|
POETRY_HOME="/opt/poetry" \
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -28,7 +28,7 @@ move-to:
|
||||||
|
|
||||||
.PHONY: self-destruct
|
.PHONY: self-destruct
|
||||||
self-destruct:
|
self-destruct:
|
||||||
-docker run --rm --it --volume `pwd`/data:/app/data --volume `pwd`/app/static:/app/app/static microblogpub/microblogpub inv self-destruct
|
-docker run --rm --volume `pwd`/data:/app/data --volume `pwd`/app/static:/app/app/static microblogpub/microblogpub inv self-destruct
|
||||||
|
|
||||||
.PHONY: reset-password
|
.PHONY: reset-password
|
||||||
reset-password:
|
reset-password:
|
||||||
|
@ -41,7 +41,3 @@ check-config:
|
||||||
.PHONY: compile-scss
|
.PHONY: compile-scss
|
||||||
compile-scss:
|
compile-scss:
|
||||||
-docker run --rm --volume `pwd`/data:/app/data --volume `pwd`/app/static:/app/app/static microblogpub/microblogpub inv compile-scss
|
-docker run --rm --volume `pwd`/data:/app/data --volume `pwd`/app/static:/app/app/static microblogpub/microblogpub inv compile-scss
|
||||||
|
|
||||||
.PHONY: import-mastodon-following-accounts
|
|
||||||
import-mastodon-following-accounts:
|
|
||||||
-docker run --rm --volume `pwd`/data:/app/data --volume `pwd`/app/static:/app/app/static microblogpub/microblogpub inv import-mastodon-following-accounts $(path)
|
|
||||||
|
|
|
@ -10,7 +10,6 @@ Instances in the wild:
|
||||||
- [microblog.pub](https://microblog.pub/) (follow to get updated about the project)
|
- [microblog.pub](https://microblog.pub/) (follow to get updated about the project)
|
||||||
- [hexa.ninja](https://hexa.ninja) (theme customization example)
|
- [hexa.ninja](https://hexa.ninja) (theme customization example)
|
||||||
- [testing.microblog.pub](https://testing.microblog.pub/)
|
- [testing.microblog.pub](https://testing.microblog.pub/)
|
||||||
- [Irish Left Archive](https://posts.leftarchive.ie/) (another theme customization example)
|
|
||||||
|
|
||||||
There are still some rough edges, but the server is mostly functional.
|
There are still some rough edges, but the server is mostly functional.
|
||||||
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
"""Add option to hide announces from actor
|
|
||||||
|
|
||||||
Revision ID: 9b404c47970a
|
|
||||||
Revises: fadfd359ce78
|
|
||||||
Create Date: 2022-12-12 19:26:36.912763+00:00
|
|
||||||
|
|
||||||
"""
|
|
||||||
import sqlalchemy as sa
|
|
||||||
|
|
||||||
from alembic import op
|
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
|
||||||
revision = '9b404c47970a'
|
|
||||||
down_revision = 'fadfd359ce78'
|
|
||||||
branch_labels = None
|
|
||||||
depends_on = None
|
|
||||||
|
|
||||||
|
|
||||||
def upgrade() -> None:
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
with op.batch_alter_table('actor', schema=None) as batch_op:
|
|
||||||
batch_op.add_column(sa.Column('are_announces_hidden_from_stream', sa.Boolean(), server_default='0', nullable=False))
|
|
||||||
|
|
||||||
# ### end Alembic commands ###
|
|
||||||
|
|
||||||
|
|
||||||
def downgrade() -> None:
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
with op.batch_alter_table('actor', schema=None) as batch_op:
|
|
||||||
batch_op.drop_column('are_announces_hidden_from_stream')
|
|
||||||
|
|
||||||
# ### end Alembic commands ###
|
|
|
@ -1,48 +0,0 @@
|
||||||
"""Add OAuth client
|
|
||||||
|
|
||||||
Revision ID: 4ab54becec04
|
|
||||||
Revises: 9b404c47970a
|
|
||||||
Create Date: 2022-12-16 17:30:54.520477+00:00
|
|
||||||
|
|
||||||
"""
|
|
||||||
import sqlalchemy as sa
|
|
||||||
|
|
||||||
from alembic import op
|
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
|
||||||
revision = '4ab54becec04'
|
|
||||||
down_revision = '9b404c47970a'
|
|
||||||
branch_labels = None
|
|
||||||
depends_on = None
|
|
||||||
|
|
||||||
|
|
||||||
def upgrade() -> None:
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
op.create_table('oauth_client',
|
|
||||||
sa.Column('id', sa.Integer(), nullable=False),
|
|
||||||
sa.Column('created_at', sa.DateTime(timezone=True), nullable=False),
|
|
||||||
sa.Column('client_name', sa.String(), nullable=False),
|
|
||||||
sa.Column('redirect_uris', sa.JSON(), nullable=True),
|
|
||||||
sa.Column('client_uri', sa.String(), nullable=True),
|
|
||||||
sa.Column('logo_uri', sa.String(), nullable=True),
|
|
||||||
sa.Column('scope', sa.String(), nullable=True),
|
|
||||||
sa.Column('client_id', sa.String(), nullable=False),
|
|
||||||
sa.Column('client_secret', sa.String(), nullable=False),
|
|
||||||
sa.PrimaryKeyConstraint('id'),
|
|
||||||
sa.UniqueConstraint('client_secret')
|
|
||||||
)
|
|
||||||
with op.batch_alter_table('oauth_client', schema=None) as batch_op:
|
|
||||||
batch_op.create_index(batch_op.f('ix_oauth_client_client_id'), ['client_id'], unique=True)
|
|
||||||
batch_op.create_index(batch_op.f('ix_oauth_client_id'), ['id'], unique=False)
|
|
||||||
|
|
||||||
# ### end Alembic commands ###
|
|
||||||
|
|
||||||
|
|
||||||
def downgrade() -> None:
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
with op.batch_alter_table('oauth_client', schema=None) as batch_op:
|
|
||||||
batch_op.drop_index(batch_op.f('ix_oauth_client_id'))
|
|
||||||
batch_op.drop_index(batch_op.f('ix_oauth_client_client_id'))
|
|
||||||
|
|
||||||
op.drop_table('oauth_client')
|
|
||||||
# ### end Alembic commands ###
|
|
|
@ -1,36 +0,0 @@
|
||||||
"""Add OAuth refresh token support
|
|
||||||
|
|
||||||
Revision ID: a209f0333f5a
|
|
||||||
Revises: 4ab54becec04
|
|
||||||
Create Date: 2022-12-18 11:26:31.976348+00:00
|
|
||||||
|
|
||||||
"""
|
|
||||||
import sqlalchemy as sa
|
|
||||||
|
|
||||||
from alembic import op
|
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
|
||||||
revision = 'a209f0333f5a'
|
|
||||||
down_revision = '4ab54becec04'
|
|
||||||
branch_labels = None
|
|
||||||
depends_on = None
|
|
||||||
|
|
||||||
|
|
||||||
def upgrade() -> None:
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
with op.batch_alter_table('indieauth_access_token', schema=None) as batch_op:
|
|
||||||
batch_op.add_column(sa.Column('refresh_token', sa.String(), nullable=True))
|
|
||||||
batch_op.add_column(sa.Column('was_refreshed', sa.Boolean(), server_default='0', nullable=False))
|
|
||||||
batch_op.create_index(batch_op.f('ix_indieauth_access_token_refresh_token'), ['refresh_token'], unique=True)
|
|
||||||
|
|
||||||
# ### end Alembic commands ###
|
|
||||||
|
|
||||||
|
|
||||||
def downgrade() -> None:
|
|
||||||
# ### commands auto generated by Alembic - please adjust! ###
|
|
||||||
with op.batch_alter_table('indieauth_access_token', schema=None) as batch_op:
|
|
||||||
batch_op.drop_index(batch_op.f('ix_indieauth_access_token_refresh_token'))
|
|
||||||
batch_op.drop_column('was_refreshed')
|
|
||||||
batch_op.drop_column('refresh_token')
|
|
||||||
|
|
||||||
# ### end Alembic commands ###
|
|
52
app/actor.py
52
app/actor.py
|
@ -6,7 +6,6 @@ from functools import cached_property
|
||||||
from typing import Union
|
from typing import Union
|
||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
import httpx
|
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from sqlalchemy import select
|
from sqlalchemy import select
|
||||||
from sqlalchemy.orm import joinedload
|
from sqlalchemy.orm import joinedload
|
||||||
|
@ -14,9 +13,6 @@ from sqlalchemy.orm import joinedload
|
||||||
from app import activitypub as ap
|
from app import activitypub as ap
|
||||||
from app import media
|
from app import media
|
||||||
from app.config import BASE_URL
|
from app.config import BASE_URL
|
||||||
from app.config import USER_AGENT
|
|
||||||
from app.config import USERNAME
|
|
||||||
from app.config import WEBFINGER_DOMAIN
|
|
||||||
from app.database import AsyncSession
|
from app.database import AsyncSession
|
||||||
from app.utils.datetime import as_utc
|
from app.utils.datetime import as_utc
|
||||||
from app.utils.datetime import now
|
from app.utils.datetime import now
|
||||||
|
@ -31,38 +27,7 @@ def _handle(raw_actor: ap.RawObject) -> str:
|
||||||
if not domain.hostname:
|
if not domain.hostname:
|
||||||
raise ValueError(f"Invalid actor ID {ap_id}")
|
raise ValueError(f"Invalid actor ID {ap_id}")
|
||||||
|
|
||||||
handle = f'@{raw_actor["preferredUsername"]}@{domain.hostname}' # type: ignore
|
return f'@{raw_actor["preferredUsername"]}@{domain.hostname}' # type: ignore
|
||||||
|
|
||||||
# TODO: cleanup this
|
|
||||||
# Next, check for custom webfinger domains
|
|
||||||
resp: httpx.Response | None = None
|
|
||||||
for url in {
|
|
||||||
f"https://{domain.hostname}/.well-known/webfinger",
|
|
||||||
f"http://{domain.hostname}/.well-known/webfinger",
|
|
||||||
}:
|
|
||||||
try:
|
|
||||||
logger.info(f"Webfinger {handle} at {url}")
|
|
||||||
resp = httpx.get(
|
|
||||||
url,
|
|
||||||
params={"resource": f"acct:{handle[1:]}"},
|
|
||||||
headers={
|
|
||||||
"User-Agent": USER_AGENT,
|
|
||||||
},
|
|
||||||
follow_redirects=True,
|
|
||||||
)
|
|
||||||
resp.raise_for_status()
|
|
||||||
break
|
|
||||||
except Exception:
|
|
||||||
logger.exception(f"Failed to webfinger {handle}")
|
|
||||||
|
|
||||||
if resp:
|
|
||||||
try:
|
|
||||||
json_resp = resp.json()
|
|
||||||
if json_resp.get("subject", "").startswith("acct:"):
|
|
||||||
return "@" + json_resp["subject"].removeprefix("acct:")
|
|
||||||
except Exception:
|
|
||||||
logger.exception(f"Failed to parse webfinger response for {handle}")
|
|
||||||
return handle
|
|
||||||
|
|
||||||
|
|
||||||
class Actor:
|
class Actor:
|
||||||
|
@ -96,7 +61,7 @@ class Actor:
|
||||||
return self.name
|
return self.name
|
||||||
return self.preferred_username
|
return self.preferred_username
|
||||||
|
|
||||||
@cached_property
|
@property
|
||||||
def handle(self) -> str:
|
def handle(self) -> str:
|
||||||
return _handle(self.ap_actor)
|
return _handle(self.ap_actor)
|
||||||
|
|
||||||
|
@ -178,18 +143,13 @@ class Actor:
|
||||||
|
|
||||||
|
|
||||||
class RemoteActor(Actor):
|
class RemoteActor(Actor):
|
||||||
def __init__(self, ap_actor: ap.RawObject, handle: str | None = None) -> None:
|
def __init__(self, ap_actor: ap.RawObject) -> None:
|
||||||
if (ap_type := ap_actor.get("type")) not in ap.ACTOR_TYPES:
|
if (ap_type := ap_actor.get("type")) not in ap.ACTOR_TYPES:
|
||||||
raise ValueError(f"Unexpected actor type: {ap_type}")
|
raise ValueError(f"Unexpected actor type: {ap_type}")
|
||||||
|
|
||||||
self._ap_actor = ap_actor
|
self._ap_actor = ap_actor
|
||||||
self._ap_type = ap_type
|
self._ap_type = ap_type
|
||||||
|
|
||||||
if handle is None:
|
|
||||||
handle = _handle(ap_actor)
|
|
||||||
|
|
||||||
self._handle = handle
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def ap_actor(self) -> ap.RawObject:
|
def ap_actor(self) -> ap.RawObject:
|
||||||
return self._ap_actor
|
return self._ap_actor
|
||||||
|
@ -202,12 +162,8 @@ class RemoteActor(Actor):
|
||||||
def is_from_db(self) -> bool:
|
def is_from_db(self) -> bool:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@property
|
|
||||||
def handle(self) -> str:
|
|
||||||
return self._handle
|
|
||||||
|
|
||||||
|
LOCAL_ACTOR = RemoteActor(ap_actor=ap.ME)
|
||||||
LOCAL_ACTOR = RemoteActor(ap_actor=ap.ME, handle=f"@{USERNAME}@{WEBFINGER_DOMAIN}")
|
|
||||||
|
|
||||||
|
|
||||||
async def save_actor(db_session: AsyncSession, ap_actor: ap.RawObject) -> "ActorModel":
|
async def save_actor(db_session: AsyncSession, ap_actor: ap.RawObject) -> "ActorModel":
|
||||||
|
|
38
app/admin.py
38
app/admin.py
|
@ -1,5 +1,4 @@
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from urllib.parse import quote
|
|
||||||
|
|
||||||
import httpx
|
import httpx
|
||||||
from fastapi import APIRouter
|
from fastapi import APIRouter
|
||||||
|
@ -60,9 +59,7 @@ async def user_session_or_redirect(
|
||||||
|
|
||||||
_RedirectToLoginPage = HTTPException(
|
_RedirectToLoginPage = HTTPException(
|
||||||
status_code=302,
|
status_code=302,
|
||||||
headers={
|
headers={"Location": request.url_for("login") + f"?redirect={redirect_url}"},
|
||||||
"Location": request.url_for("login") + f"?redirect={quote(redirect_url)}"
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if not session:
|
if not session:
|
||||||
|
@ -189,11 +186,8 @@ async def admin_new(
|
||||||
content += f"{in_reply_to_object.actor.handle} "
|
content += f"{in_reply_to_object.actor.handle} "
|
||||||
for tag in in_reply_to_object.tags:
|
for tag in in_reply_to_object.tags:
|
||||||
if tag.get("type") == "Mention" and tag["name"] != LOCAL_ACTOR.handle:
|
if tag.get("type") == "Mention" and tag["name"] != LOCAL_ACTOR.handle:
|
||||||
try:
|
|
||||||
mentioned_actor = await fetch_actor(db_session, tag["href"])
|
mentioned_actor = await fetch_actor(db_session, tag["href"])
|
||||||
content += f"{mentioned_actor.handle} "
|
content += f"{mentioned_actor.handle} "
|
||||||
except Exception:
|
|
||||||
logger.exception(f"Failed to lookup {mentioned_actor}")
|
|
||||||
|
|
||||||
# Copy the content warning if any
|
# Copy the content warning if any
|
||||||
if in_reply_to_object.summary:
|
if in_reply_to_object.summary:
|
||||||
|
@ -965,34 +959,6 @@ async def admin_actions_unblock(
|
||||||
return RedirectResponse(redirect_url, status_code=302)
|
return RedirectResponse(redirect_url, status_code=302)
|
||||||
|
|
||||||
|
|
||||||
@router.post("/actions/hide_announces")
|
|
||||||
async def admin_actions_hide_announces(
|
|
||||||
request: Request,
|
|
||||||
ap_actor_id: str = Form(),
|
|
||||||
redirect_url: str = Form(),
|
|
||||||
csrf_check: None = Depends(verify_csrf_token),
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
) -> RedirectResponse:
|
|
||||||
actor = await fetch_actor(db_session, ap_actor_id)
|
|
||||||
actor.are_announces_hidden_from_stream = True
|
|
||||||
await db_session.commit()
|
|
||||||
return RedirectResponse(redirect_url, status_code=302)
|
|
||||||
|
|
||||||
|
|
||||||
@router.post("/actions/show_announces")
|
|
||||||
async def admin_actions_show_announces(
|
|
||||||
request: Request,
|
|
||||||
ap_actor_id: str = Form(),
|
|
||||||
redirect_url: str = Form(),
|
|
||||||
csrf_check: None = Depends(verify_csrf_token),
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
) -> RedirectResponse:
|
|
||||||
actor = await fetch_actor(db_session, ap_actor_id)
|
|
||||||
actor.are_announces_hidden_from_stream = False
|
|
||||||
await db_session.commit()
|
|
||||||
return RedirectResponse(redirect_url, status_code=302)
|
|
||||||
|
|
||||||
|
|
||||||
@router.post("/actions/delete")
|
@router.post("/actions/delete")
|
||||||
async def admin_actions_delete(
|
async def admin_actions_delete(
|
||||||
request: Request,
|
request: Request,
|
||||||
|
@ -1185,7 +1151,7 @@ async def admin_actions_new(
|
||||||
elif name:
|
elif name:
|
||||||
ap_type = "Article"
|
ap_type = "Article"
|
||||||
|
|
||||||
public_id, _ = await boxes.send_create(
|
public_id = await boxes.send_create(
|
||||||
db_session,
|
db_session,
|
||||||
ap_type=ap_type,
|
ap_type=ap_type,
|
||||||
source=content,
|
source=content,
|
||||||
|
|
|
@ -12,7 +12,6 @@ from app import activitypub as ap
|
||||||
from app.actor import LOCAL_ACTOR
|
from app.actor import LOCAL_ACTOR
|
||||||
from app.actor import Actor
|
from app.actor import Actor
|
||||||
from app.actor import RemoteActor
|
from app.actor import RemoteActor
|
||||||
from app.config import ID
|
|
||||||
from app.media import proxied_media_url
|
from app.media import proxied_media_url
|
||||||
from app.utils.datetime import now
|
from app.utils.datetime import now
|
||||||
from app.utils.datetime import parse_isoformat
|
from app.utils.datetime import parse_isoformat
|
||||||
|
@ -213,15 +212,6 @@ class Object:
|
||||||
def in_reply_to(self) -> str | None:
|
def in_reply_to(self) -> str | None:
|
||||||
return self.ap_object.get("inReplyTo")
|
return self.ap_object.get("inReplyTo")
|
||||||
|
|
||||||
@property
|
|
||||||
def is_local_reply(self) -> bool:
|
|
||||||
if not self.in_reply_to:
|
|
||||||
return False
|
|
||||||
|
|
||||||
return bool(
|
|
||||||
self.in_reply_to.startswith(ID) and self.content # Hide votes from Question
|
|
||||||
)
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_in_reply_to_from_inbox(self) -> bool | None:
|
def is_in_reply_to_from_inbox(self) -> bool | None:
|
||||||
if not self.in_reply_to:
|
if not self.in_reply_to:
|
||||||
|
|
61
app/boxes.py
61
app/boxes.py
|
@ -28,6 +28,7 @@ from app.actor import save_actor
|
||||||
from app.actor import update_actor_if_needed
|
from app.actor import update_actor_if_needed
|
||||||
from app.ap_object import RemoteObject
|
from app.ap_object import RemoteObject
|
||||||
from app.config import BASE_URL
|
from app.config import BASE_URL
|
||||||
|
from app.config import BLOCKED_SERVERS
|
||||||
from app.config import ID
|
from app.config import ID
|
||||||
from app.config import MANUALLY_APPROVES_FOLLOWERS
|
from app.config import MANUALLY_APPROVES_FOLLOWERS
|
||||||
from app.config import set_moved_to
|
from app.config import set_moved_to
|
||||||
|
@ -45,22 +46,10 @@ from app.utils.datetime import now
|
||||||
from app.utils.datetime import parse_isoformat
|
from app.utils.datetime import parse_isoformat
|
||||||
from app.utils.facepile import WebmentionReply
|
from app.utils.facepile import WebmentionReply
|
||||||
from app.utils.text import slugify
|
from app.utils.text import slugify
|
||||||
from app.utils.url import is_hostname_blocked
|
|
||||||
|
|
||||||
AnyboxObject = models.InboxObject | models.OutboxObject
|
AnyboxObject = models.InboxObject | models.OutboxObject
|
||||||
|
|
||||||
|
|
||||||
def is_notification_enabled(notification_type: models.NotificationType) -> bool:
|
|
||||||
"""Checks if a given notification type is enabled."""
|
|
||||||
if notification_type.value == "pending_incoming_follower":
|
|
||||||
# This one cannot be disabled as it would prevent manually reviewing
|
|
||||||
# follow requests.
|
|
||||||
return True
|
|
||||||
if notification_type.value in config.CONFIG.disabled_notifications:
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
def allocate_outbox_id() -> str:
|
def allocate_outbox_id() -> str:
|
||||||
return uuid.uuid4().hex
|
return uuid.uuid4().hex
|
||||||
|
|
||||||
|
@ -179,7 +168,6 @@ async def send_block(db_session: AsyncSession, ap_actor_id: str) -> None:
|
||||||
await new_outgoing_activity(db_session, actor.inbox_url, outbox_object.id)
|
await new_outgoing_activity(db_session, actor.inbox_url, outbox_object.id)
|
||||||
|
|
||||||
# 4. Create a notification
|
# 4. Create a notification
|
||||||
if is_notification_enabled(models.NotificationType.BLOCK):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.BLOCK,
|
notification_type=models.NotificationType.BLOCK,
|
||||||
actor_id=actor.id,
|
actor_id=actor.id,
|
||||||
|
@ -439,9 +427,7 @@ async def _send_undo(db_session: AsyncSession, ap_object_id: str) -> None:
|
||||||
announced_object.announced_via_outbox_object_ap_id = None
|
announced_object.announced_via_outbox_object_ap_id = None
|
||||||
|
|
||||||
# Send the Undo to the original recipients
|
# Send the Undo to the original recipients
|
||||||
recipients = await _compute_recipients(
|
recipients = await _compute_recipients(db_session, outbox_object.ap_object)
|
||||||
db_session, outbox_object_to_undo.ap_object
|
|
||||||
)
|
|
||||||
for rcp in recipients:
|
for rcp in recipients:
|
||||||
await new_outgoing_activity(db_session, rcp, outbox_object.id)
|
await new_outgoing_activity(db_session, rcp, outbox_object.id)
|
||||||
elif outbox_object_to_undo.ap_type == "Block":
|
elif outbox_object_to_undo.ap_type == "Block":
|
||||||
|
@ -461,7 +447,6 @@ async def _send_undo(db_session: AsyncSession, ap_object_id: str) -> None:
|
||||||
outbox_object.id,
|
outbox_object.id,
|
||||||
)
|
)
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.UNBLOCK):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.UNBLOCK,
|
notification_type=models.NotificationType.UNBLOCK,
|
||||||
actor_id=blocked_actor.id,
|
actor_id=blocked_actor.id,
|
||||||
|
@ -592,7 +577,7 @@ async def send_create(
|
||||||
poll_answers: list[str] | None = None,
|
poll_answers: list[str] | None = None,
|
||||||
poll_duration_in_minutes: int | None = None,
|
poll_duration_in_minutes: int | None = None,
|
||||||
name: str | None = None,
|
name: str | None = None,
|
||||||
) -> tuple[str, models.OutboxObject]:
|
) -> str:
|
||||||
note_id = allocate_outbox_id()
|
note_id = allocate_outbox_id()
|
||||||
published = now().replace(microsecond=0).isoformat().replace("+00:00", "Z")
|
published = now().replace(microsecond=0).isoformat().replace("+00:00", "Z")
|
||||||
context = f"{ID}/contexts/" + uuid.uuid4().hex
|
context = f"{ID}/contexts/" + uuid.uuid4().hex
|
||||||
|
@ -767,7 +752,7 @@ async def send_create(
|
||||||
|
|
||||||
await db_session.commit()
|
await db_session.commit()
|
||||||
|
|
||||||
return note_id, outbox_object
|
return note_id
|
||||||
|
|
||||||
|
|
||||||
async def send_vote(
|
async def send_vote(
|
||||||
|
@ -950,7 +935,7 @@ async def compute_all_known_recipients(db_session: AsyncSession) -> set[str]:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async def _get_following(db_session: AsyncSession) -> list[models.Following]:
|
async def _get_following(db_session: AsyncSession) -> list[models.Follower]:
|
||||||
return (
|
return (
|
||||||
(
|
(
|
||||||
await db_session.scalars(
|
await db_session.scalars(
|
||||||
|
@ -1394,7 +1379,7 @@ async def _revert_side_effect_for_deleted_object(
|
||||||
.values(likes_count=likes_count - 1)
|
.values(likes_count=likes_count - 1)
|
||||||
)
|
)
|
||||||
elif (
|
elif (
|
||||||
deleted_ap_object.ap_type == "Announce"
|
deleted_ap_object.ap_type == "Annouce"
|
||||||
and deleted_ap_object.activity_object_ap_id
|
and deleted_ap_object.activity_object_ap_id
|
||||||
):
|
):
|
||||||
related_object = await get_outbox_object_by_ap_id(
|
related_object = await get_outbox_object_by_ap_id(
|
||||||
|
@ -1540,7 +1525,6 @@ async def _send_accept(
|
||||||
raise ValueError("Should never happen")
|
raise ValueError("Should never happen")
|
||||||
await new_outgoing_activity(db_session, from_actor.inbox_url, outbox_activity.id)
|
await new_outgoing_activity(db_session, from_actor.inbox_url, outbox_activity.id)
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.NEW_FOLLOWER):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.NEW_FOLLOWER,
|
notification_type=models.NotificationType.NEW_FOLLOWER,
|
||||||
actor_id=from_actor.id,
|
actor_id=from_actor.id,
|
||||||
|
@ -1584,7 +1568,6 @@ async def _send_reject(
|
||||||
raise ValueError("Should never happen")
|
raise ValueError("Should never happen")
|
||||||
await new_outgoing_activity(db_session, from_actor.inbox_url, outbox_activity.id)
|
await new_outgoing_activity(db_session, from_actor.inbox_url, outbox_activity.id)
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.REJECTED_FOLLOWER):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.REJECTED_FOLLOWER,
|
notification_type=models.NotificationType.REJECTED_FOLLOWER,
|
||||||
actor_id=from_actor.id,
|
actor_id=from_actor.id,
|
||||||
|
@ -1615,7 +1598,6 @@ async def _handle_undo_activity(
|
||||||
models.Follower.inbox_object_id == ap_activity_to_undo.id
|
models.Follower.inbox_object_id == ap_activity_to_undo.id
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if is_notification_enabled(models.NotificationType.UNFOLLOW):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.UNFOLLOW,
|
notification_type=models.NotificationType.UNFOLLOW,
|
||||||
actor_id=from_actor.id,
|
actor_id=from_actor.id,
|
||||||
|
@ -1636,14 +1618,7 @@ async def _handle_undo_activity(
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
liked_obj.likes_count = (
|
liked_obj.likes_count = models.OutboxObject.likes_count - 1
|
||||||
await _get_outbox_likes_count(
|
|
||||||
db_session,
|
|
||||||
liked_obj,
|
|
||||||
)
|
|
||||||
- 1
|
|
||||||
)
|
|
||||||
if is_notification_enabled(models.NotificationType.UNDO_LIKE):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.UNDO_LIKE,
|
notification_type=models.NotificationType.UNDO_LIKE,
|
||||||
actor_id=from_actor.id,
|
actor_id=from_actor.id,
|
||||||
|
@ -1668,7 +1643,6 @@ async def _handle_undo_activity(
|
||||||
announced_obj_from_outbox.announces_count = (
|
announced_obj_from_outbox.announces_count = (
|
||||||
models.OutboxObject.announces_count - 1
|
models.OutboxObject.announces_count - 1
|
||||||
)
|
)
|
||||||
if is_notification_enabled(models.NotificationType.UNDO_ANNOUNCE):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.UNDO_ANNOUNCE,
|
notification_type=models.NotificationType.UNDO_ANNOUNCE,
|
||||||
actor_id=from_actor.id,
|
actor_id=from_actor.id,
|
||||||
|
@ -1677,7 +1651,6 @@ async def _handle_undo_activity(
|
||||||
)
|
)
|
||||||
db_session.add(notif)
|
db_session.add(notif)
|
||||||
elif ap_activity_to_undo.ap_type == "Block":
|
elif ap_activity_to_undo.ap_type == "Block":
|
||||||
if is_notification_enabled(models.NotificationType.UNBLOCKED):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.UNBLOCKED,
|
notification_type=models.NotificationType.UNBLOCKED,
|
||||||
actor_id=from_actor.id,
|
actor_id=from_actor.id,
|
||||||
|
@ -1747,7 +1720,6 @@ async def _handle_move_activity(
|
||||||
else:
|
else:
|
||||||
logger.info(f"Already following target {new_actor_id}")
|
logger.info(f"Already following target {new_actor_id}")
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.MOVE):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.MOVE,
|
notification_type=models.NotificationType.MOVE,
|
||||||
actor_id=new_actor.id,
|
actor_id=new_actor.id,
|
||||||
|
@ -1911,7 +1883,11 @@ async def _process_note_object(
|
||||||
|
|
||||||
is_from_following = ro.actor.ap_id in {f.ap_actor_id for f in following}
|
is_from_following = ro.actor.ap_id in {f.ap_actor_id for f in following}
|
||||||
is_reply = bool(ro.in_reply_to)
|
is_reply = bool(ro.in_reply_to)
|
||||||
is_local_reply = ro.is_local_reply
|
is_local_reply = bool(
|
||||||
|
ro.in_reply_to
|
||||||
|
and ro.in_reply_to.startswith(BASE_URL)
|
||||||
|
and ro.content # Hide votes from Question
|
||||||
|
)
|
||||||
is_mention = False
|
is_mention = False
|
||||||
hashtags = []
|
hashtags = []
|
||||||
tags = ro.ap_object.get("tag", [])
|
tags = ro.ap_object.get("tag", [])
|
||||||
|
@ -2023,7 +1999,7 @@ async def _process_note_object(
|
||||||
inbox_object_id=parent_activity.id,
|
inbox_object_id=parent_activity.id,
|
||||||
)
|
)
|
||||||
|
|
||||||
if is_mention and is_notification_enabled(models.NotificationType.MENTION):
|
if is_mention:
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.MENTION,
|
notification_type=models.NotificationType.MENTION,
|
||||||
actor_id=from_actor.id,
|
actor_id=from_actor.id,
|
||||||
|
@ -2122,7 +2098,6 @@ async def _handle_announce_activity(
|
||||||
models.OutboxObject.announces_count + 1
|
models.OutboxObject.announces_count + 1
|
||||||
)
|
)
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.ANNOUNCE):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.ANNOUNCE,
|
notification_type=models.NotificationType.ANNOUNCE,
|
||||||
actor_id=actor.id,
|
actor_id=actor.id,
|
||||||
|
@ -2205,10 +2180,7 @@ async def _handle_announce_activity(
|
||||||
db_session.add(announced_inbox_object)
|
db_session.add(announced_inbox_object)
|
||||||
await db_session.flush()
|
await db_session.flush()
|
||||||
announce_activity.relates_to_inbox_object_id = announced_inbox_object.id
|
announce_activity.relates_to_inbox_object_id = announced_inbox_object.id
|
||||||
announce_activity.is_hidden_from_stream = (
|
announce_activity.is_hidden_from_stream = not is_from_following
|
||||||
not is_from_following
|
|
||||||
or announce_activity.actor.are_announces_hidden_from_stream
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
async def _handle_like_activity(
|
async def _handle_like_activity(
|
||||||
|
@ -2230,7 +2202,6 @@ async def _handle_like_activity(
|
||||||
relates_to_outbox_object,
|
relates_to_outbox_object,
|
||||||
)
|
)
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.LIKE):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.LIKE,
|
notification_type=models.NotificationType.LIKE,
|
||||||
actor_id=actor.id,
|
actor_id=actor.id,
|
||||||
|
@ -2254,7 +2225,6 @@ async def _handle_block_activity(
|
||||||
return
|
return
|
||||||
|
|
||||||
# Create a notification
|
# Create a notification
|
||||||
if is_notification_enabled(models.NotificationType.BLOCKED):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.BLOCKED,
|
notification_type=models.NotificationType.BLOCKED,
|
||||||
actor_id=actor.id,
|
actor_id=actor.id,
|
||||||
|
@ -2315,7 +2285,7 @@ async def save_to_inbox(
|
||||||
logger.exception("Failed to fetch actor")
|
logger.exception("Failed to fetch actor")
|
||||||
return
|
return
|
||||||
|
|
||||||
if is_hostname_blocked(actor.server):
|
if actor.server in BLOCKED_SERVERS:
|
||||||
logger.warning(f"Server {actor.server} is blocked")
|
logger.warning(f"Server {actor.server} is blocked")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -2463,7 +2433,6 @@ async def save_to_inbox(
|
||||||
if activity_ro.ap_type == "Accept"
|
if activity_ro.ap_type == "Accept"
|
||||||
else models.NotificationType.FOLLOW_REQUEST_REJECTED
|
else models.NotificationType.FOLLOW_REQUEST_REJECTED
|
||||||
)
|
)
|
||||||
if is_notification_enabled(notif_type):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=notif_type,
|
notification_type=notif_type,
|
||||||
actor_id=actor.id,
|
actor_id=actor.id,
|
||||||
|
|
|
@ -44,14 +44,11 @@ except FileNotFoundError:
|
||||||
JS_HASH = "none"
|
JS_HASH = "none"
|
||||||
try:
|
try:
|
||||||
# To keep things simple, we keep a single hash for the 2 files
|
# To keep things simple, we keep a single hash for the 2 files
|
||||||
dat = b""
|
js_data_common = (ROOT_DIR / "app" / "static" / "common-admin.js").read_bytes()
|
||||||
for j in [
|
js_data_new = (ROOT_DIR / "app" / "static" / "new.js").read_bytes()
|
||||||
ROOT_DIR / "app" / "static" / "common.js",
|
JS_HASH = hashlib.md5(
|
||||||
ROOT_DIR / "app" / "static" / "common-admin.js",
|
js_data_common + js_data_new, usedforsecurity=False
|
||||||
ROOT_DIR / "app" / "static" / "new.js",
|
).hexdigest()
|
||||||
]:
|
|
||||||
dat += j.read_bytes()
|
|
||||||
JS_HASH = hashlib.md5(dat, usedforsecurity=False).hexdigest()
|
|
||||||
except FileNotFoundError:
|
except FileNotFoundError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -117,16 +114,11 @@ class Config(pydantic.BaseModel):
|
||||||
|
|
||||||
custom_content_security_policy: str | None = None
|
custom_content_security_policy: str | None = None
|
||||||
|
|
||||||
webfinger_domain: str | None = None
|
|
||||||
|
|
||||||
# Config items to make tests easier
|
# Config items to make tests easier
|
||||||
sqlalchemy_database: str | None = None
|
sqlalchemy_database: str | None = None
|
||||||
key_path: str | None = None
|
key_path: str | None = None
|
||||||
|
|
||||||
session_timeout: int = 3600 * 24 * 3 # in seconds, 3 days by default
|
session_timeout: int = 3600 * 24 * 3 # in seconds, 3 days by default
|
||||||
csrf_token_exp: int = 3600
|
|
||||||
|
|
||||||
disabled_notifications: list[str] = []
|
|
||||||
|
|
||||||
# Only set when the app is served on a non-root path
|
# Only set when the app is served on a non-root path
|
||||||
id: str | None = None
|
id: str | None = None
|
||||||
|
@ -171,10 +163,6 @@ ID = f"{_SCHEME}://{DOMAIN}"
|
||||||
if CONFIG.id:
|
if CONFIG.id:
|
||||||
ID = CONFIG.id
|
ID = CONFIG.id
|
||||||
USERNAME = CONFIG.username
|
USERNAME = CONFIG.username
|
||||||
|
|
||||||
# Allow to use @handle@webfinger-domain.tld while hosting the server at domain.tld
|
|
||||||
WEBFINGER_DOMAIN = CONFIG.webfinger_domain or DOMAIN
|
|
||||||
|
|
||||||
MANUALLY_APPROVES_FOLLOWERS = CONFIG.manually_approves_followers
|
MANUALLY_APPROVES_FOLLOWERS = CONFIG.manually_approves_followers
|
||||||
HIDES_FOLLOWERS = CONFIG.hides_followers
|
HIDES_FOLLOWERS = CONFIG.hides_followers
|
||||||
HIDES_FOLLOWING = CONFIG.hides_following
|
HIDES_FOLLOWING = CONFIG.hides_following
|
||||||
|
@ -264,7 +252,7 @@ def verify_csrf_token(
|
||||||
if redirect_url:
|
if redirect_url:
|
||||||
please_try_again = f'<a href="{redirect_url}">please try again</a>'
|
please_try_again = f'<a href="{redirect_url}">please try again</a>'
|
||||||
try:
|
try:
|
||||||
csrf_serializer.loads(csrf_token, max_age=CONFIG.csrf_token_exp)
|
csrf_serializer.loads(csrf_token, max_age=1800)
|
||||||
except (itsdangerous.BadData, itsdangerous.SignatureExpired):
|
except (itsdangerous.BadData, itsdangerous.SignatureExpired):
|
||||||
logger.exception("Failed to verify CSRF token")
|
logger.exception("Failed to verify CSRF token")
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
|
|
|
@ -146,10 +146,9 @@ _StreamVisibilityCallback = Callable[[ObjectInfo], bool]
|
||||||
|
|
||||||
|
|
||||||
def default_stream_visibility_callback(object_info: ObjectInfo) -> bool:
|
def default_stream_visibility_callback(object_info: ObjectInfo) -> bool:
|
||||||
result = (
|
logger.info(f"{object_info=}")
|
||||||
|
return (
|
||||||
(not object_info.is_reply and object_info.is_from_following)
|
(not object_info.is_reply and object_info.is_from_following)
|
||||||
or object_info.is_mention
|
or object_info.is_mention
|
||||||
or object_info.is_local_reply
|
or object_info.is_local_reply
|
||||||
)
|
)
|
||||||
logger.info(f"{object_info=}/{result=}")
|
|
||||||
return result
|
|
||||||
|
|
|
@ -23,12 +23,12 @@ from sqlalchemy import select
|
||||||
|
|
||||||
from app import activitypub as ap
|
from app import activitypub as ap
|
||||||
from app import config
|
from app import config
|
||||||
|
from app.config import BLOCKED_SERVERS
|
||||||
from app.config import KEY_PATH
|
from app.config import KEY_PATH
|
||||||
from app.database import AsyncSession
|
from app.database import AsyncSession
|
||||||
from app.database import get_db_session
|
from app.database import get_db_session
|
||||||
from app.key import Key
|
from app.key import Key
|
||||||
from app.utils.datetime import now
|
from app.utils.datetime import now
|
||||||
from app.utils.url import is_hostname_blocked
|
|
||||||
|
|
||||||
_KEY_CACHE: MutableMapping[str, Key] = LFUCache(256)
|
_KEY_CACHE: MutableMapping[str, Key] = LFUCache(256)
|
||||||
|
|
||||||
|
@ -184,7 +184,7 @@ async def httpsig_checker(
|
||||||
)
|
)
|
||||||
|
|
||||||
server = urlparse(key_id).hostname
|
server = urlparse(key_id).hostname
|
||||||
if is_hostname_blocked(server):
|
if server in BLOCKED_SERVERS:
|
||||||
return HTTPSigInfo(
|
return HTTPSigInfo(
|
||||||
has_valid_signature=False,
|
has_valid_signature=False,
|
||||||
server=server,
|
server=server,
|
||||||
|
|
|
@ -60,7 +60,7 @@ def _set_next_try(
|
||||||
if not outgoing_activity.tries:
|
if not outgoing_activity.tries:
|
||||||
raise ValueError("Should never happen")
|
raise ValueError("Should never happen")
|
||||||
|
|
||||||
if outgoing_activity.tries >= _MAX_RETRIES:
|
if outgoing_activity.tries == _MAX_RETRIES:
|
||||||
outgoing_activity.is_errored = True
|
outgoing_activity.is_errored = True
|
||||||
outgoing_activity.next_try = None
|
outgoing_activity.next_try = None
|
||||||
else:
|
else:
|
||||||
|
|
243
app/indieauth.py
243
app/indieauth.py
|
@ -10,12 +10,9 @@ from fastapi import Form
|
||||||
from fastapi import HTTPException
|
from fastapi import HTTPException
|
||||||
from fastapi import Request
|
from fastapi import Request
|
||||||
from fastapi.responses import JSONResponse
|
from fastapi.responses import JSONResponse
|
||||||
from fastapi.security import HTTPBasic
|
from fastapi.responses import RedirectResponse
|
||||||
from fastapi.security import HTTPBasicCredentials
|
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from pydantic import BaseModel
|
|
||||||
from sqlalchemy import select
|
from sqlalchemy import select
|
||||||
from sqlalchemy.orm import joinedload
|
|
||||||
|
|
||||||
from app import config
|
from app import config
|
||||||
from app import models
|
from app import models
|
||||||
|
@ -24,12 +21,9 @@ from app.admin import user_session_or_redirect
|
||||||
from app.config import verify_csrf_token
|
from app.config import verify_csrf_token
|
||||||
from app.database import AsyncSession
|
from app.database import AsyncSession
|
||||||
from app.database import get_db_session
|
from app.database import get_db_session
|
||||||
from app.redirect import redirect
|
|
||||||
from app.utils import indieauth
|
from app.utils import indieauth
|
||||||
from app.utils.datetime import now
|
from app.utils.datetime import now
|
||||||
|
|
||||||
basic_auth = HTTPBasic()
|
|
||||||
|
|
||||||
router = APIRouter()
|
router = APIRouter()
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,55 +38,9 @@ async def well_known_authorization_server(
|
||||||
"code_challenge_methods_supported": ["S256"],
|
"code_challenge_methods_supported": ["S256"],
|
||||||
"revocation_endpoint": request.url_for("indieauth_revocation_endpoint"),
|
"revocation_endpoint": request.url_for("indieauth_revocation_endpoint"),
|
||||||
"revocation_endpoint_auth_methods_supported": ["none"],
|
"revocation_endpoint_auth_methods_supported": ["none"],
|
||||||
"registration_endpoint": request.url_for("oauth_registration_endpoint"),
|
|
||||||
"introspection_endpoint": request.url_for("oauth_introspection_endpoint"),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class OAuthRegisterClientRequest(BaseModel):
|
|
||||||
client_name: str
|
|
||||||
redirect_uris: list[str] | str
|
|
||||||
|
|
||||||
client_uri: str | None = None
|
|
||||||
logo_uri: str | None = None
|
|
||||||
scope: str | None = None
|
|
||||||
|
|
||||||
|
|
||||||
@router.post("/oauth/register")
|
|
||||||
async def oauth_registration_endpoint(
|
|
||||||
register_client_request: OAuthRegisterClientRequest,
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
) -> JSONResponse:
|
|
||||||
"""Implements OAuth 2.0 Dynamic Registration."""
|
|
||||||
|
|
||||||
client = models.OAuthClient(
|
|
||||||
client_name=register_client_request.client_name,
|
|
||||||
redirect_uris=[register_client_request.redirect_uris]
|
|
||||||
if isinstance(register_client_request.redirect_uris, str)
|
|
||||||
else register_client_request.redirect_uris,
|
|
||||||
client_uri=register_client_request.client_uri,
|
|
||||||
logo_uri=register_client_request.logo_uri,
|
|
||||||
scope=register_client_request.scope,
|
|
||||||
client_id=secrets.token_hex(16),
|
|
||||||
client_secret=secrets.token_hex(32),
|
|
||||||
)
|
|
||||||
|
|
||||||
db_session.add(client)
|
|
||||||
await db_session.commit()
|
|
||||||
|
|
||||||
return JSONResponse(
|
|
||||||
content={
|
|
||||||
**register_client_request.dict(),
|
|
||||||
"client_id_issued_at": int(client.created_at.timestamp()), # type: ignore
|
|
||||||
"grant_types": ["authorization_code", "refresh_token"],
|
|
||||||
"client_secret_expires_at": 0,
|
|
||||||
"client_id": client.client_id,
|
|
||||||
"client_secret": client.client_secret,
|
|
||||||
},
|
|
||||||
status_code=201,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@router.get("/auth")
|
@router.get("/auth")
|
||||||
async def indieauth_authorization_endpoint(
|
async def indieauth_authorization_endpoint(
|
||||||
request: Request,
|
request: Request,
|
||||||
|
@ -108,29 +56,12 @@ async def indieauth_authorization_endpoint(
|
||||||
code_challenge = request.query_params.get("code_challenge", "")
|
code_challenge = request.query_params.get("code_challenge", "")
|
||||||
code_challenge_method = request.query_params.get("code_challenge_method", "")
|
code_challenge_method = request.query_params.get("code_challenge_method", "")
|
||||||
|
|
||||||
# Check if the authorization request is coming from an OAuth client
|
|
||||||
registered_client = (
|
|
||||||
await db_session.scalars(
|
|
||||||
select(models.OAuthClient).where(
|
|
||||||
models.OAuthClient.client_id == client_id,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
).one_or_none()
|
|
||||||
if registered_client:
|
|
||||||
client = {
|
|
||||||
"name": registered_client.client_name,
|
|
||||||
"logo": registered_client.logo_uri,
|
|
||||||
"url": registered_client.client_uri,
|
|
||||||
}
|
|
||||||
else:
|
|
||||||
client = await indieauth.get_client_id_data(client_id) # type: ignore
|
|
||||||
|
|
||||||
return await templates.render_template(
|
return await templates.render_template(
|
||||||
db_session,
|
db_session,
|
||||||
request,
|
request,
|
||||||
"indieauth_flow.html",
|
"indieauth_flow.html",
|
||||||
dict(
|
dict(
|
||||||
client=client,
|
client=await indieauth.get_client_id_data(client_id),
|
||||||
scopes=scope,
|
scopes=scope,
|
||||||
redirect_uri=redirect_uri,
|
redirect_uri=redirect_uri,
|
||||||
state=state,
|
state=state,
|
||||||
|
@ -149,7 +80,7 @@ async def indieauth_flow(
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
db_session: AsyncSession = Depends(get_db_session),
|
||||||
csrf_check: None = Depends(verify_csrf_token),
|
csrf_check: None = Depends(verify_csrf_token),
|
||||||
_: None = Depends(user_session_or_redirect),
|
_: None = Depends(user_session_or_redirect),
|
||||||
) -> templates.TemplateResponse:
|
) -> RedirectResponse:
|
||||||
form_data = await request.form()
|
form_data = await request.form()
|
||||||
logger.info(f"{form_data=}")
|
logger.info(f"{form_data=}")
|
||||||
|
|
||||||
|
@ -183,8 +114,9 @@ async def indieauth_flow(
|
||||||
db_session.add(auth_request)
|
db_session.add(auth_request)
|
||||||
await db_session.commit()
|
await db_session.commit()
|
||||||
|
|
||||||
return await redirect(
|
return RedirectResponse(
|
||||||
request, db_session, redirect_uri + f"?code={code}&state={state}&iss={iss}"
|
redirect_uri + f"?code={code}&state={state}&iss={iss}",
|
||||||
|
status_code=302,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -275,17 +207,17 @@ async def indieauth_token_endpoint(
|
||||||
form_data = await request.form()
|
form_data = await request.form()
|
||||||
logger.info(f"{form_data=}")
|
logger.info(f"{form_data=}")
|
||||||
grant_type = form_data.get("grant_type", "authorization_code")
|
grant_type = form_data.get("grant_type", "authorization_code")
|
||||||
if grant_type not in ["authorization_code", "refresh_token"]:
|
if grant_type != "authorization_code":
|
||||||
raise ValueError(f"Invalid grant_type {grant_type}")
|
raise ValueError(f"Invalid grant_type {grant_type}")
|
||||||
|
|
||||||
|
code = form_data["code"]
|
||||||
|
|
||||||
# These must match the params from the first request
|
# These must match the params from the first request
|
||||||
client_id = form_data["client_id"]
|
client_id = form_data["client_id"]
|
||||||
code_verifier = form_data.get("code_verifier")
|
|
||||||
|
|
||||||
if grant_type == "authorization_code":
|
|
||||||
code = form_data["code"]
|
|
||||||
redirect_uri = form_data["redirect_uri"]
|
redirect_uri = form_data["redirect_uri"]
|
||||||
# code_verifier is optional for backward compat
|
# code_verifier is optional for backward compat
|
||||||
|
code_verifier = form_data.get("code_verifier")
|
||||||
|
|
||||||
is_code_valid, auth_code_request = await _check_auth_code(
|
is_code_valid, auth_code_request = await _check_auth_code(
|
||||||
db_session,
|
db_session,
|
||||||
code=code,
|
code=code,
|
||||||
|
@ -299,38 +231,12 @@ async def indieauth_token_endpoint(
|
||||||
status_code=400,
|
status_code=400,
|
||||||
)
|
)
|
||||||
|
|
||||||
elif grant_type == "refresh_token":
|
|
||||||
refresh_token = form_data["refresh_token"]
|
|
||||||
access_token = (
|
|
||||||
await db_session.scalars(
|
|
||||||
select(models.IndieAuthAccessToken)
|
|
||||||
.where(
|
|
||||||
models.IndieAuthAccessToken.refresh_token == refresh_token,
|
|
||||||
models.IndieAuthAccessToken.was_refreshed.is_(False),
|
|
||||||
)
|
|
||||||
.options(
|
|
||||||
joinedload(
|
|
||||||
models.IndieAuthAccessToken.indieauth_authorization_request
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
).one_or_none()
|
|
||||||
if not access_token:
|
|
||||||
raise ValueError("invalid refresh token")
|
|
||||||
|
|
||||||
if access_token.indieauth_authorization_request.client_id != client_id:
|
|
||||||
raise ValueError("invalid client ID")
|
|
||||||
|
|
||||||
auth_code_request = access_token.indieauth_authorization_request
|
|
||||||
access_token.was_refreshed = True
|
|
||||||
|
|
||||||
if not auth_code_request:
|
if not auth_code_request:
|
||||||
raise ValueError("Should never happen")
|
raise ValueError("Should never happen")
|
||||||
|
|
||||||
access_token = models.IndieAuthAccessToken(
|
access_token = models.IndieAuthAccessToken(
|
||||||
indieauth_authorization_request_id=auth_code_request.id,
|
indieauth_authorization_request_id=auth_code_request.id,
|
||||||
access_token=secrets.token_urlsafe(32),
|
access_token=secrets.token_urlsafe(32),
|
||||||
refresh_token=secrets.token_urlsafe(32),
|
|
||||||
expires_in=3600,
|
expires_in=3600,
|
||||||
scope=auth_code_request.scope,
|
scope=auth_code_request.scope,
|
||||||
)
|
)
|
||||||
|
@ -340,7 +246,6 @@ async def indieauth_token_endpoint(
|
||||||
return JSONResponse(
|
return JSONResponse(
|
||||||
content={
|
content={
|
||||||
"access_token": access_token.access_token,
|
"access_token": access_token.access_token,
|
||||||
"refresh_token": access_token.refresh_token,
|
|
||||||
"token_type": "Bearer",
|
"token_type": "Bearer",
|
||||||
"scope": auth_code_request.scope,
|
"scope": auth_code_request.scope,
|
||||||
"me": config.ID + "/",
|
"me": config.ID + "/",
|
||||||
|
@ -356,10 +261,8 @@ async def _check_access_token(
|
||||||
) -> tuple[bool, models.IndieAuthAccessToken | None]:
|
) -> tuple[bool, models.IndieAuthAccessToken | None]:
|
||||||
access_token_info = (
|
access_token_info = (
|
||||||
await db_session.scalars(
|
await db_session.scalars(
|
||||||
select(models.IndieAuthAccessToken)
|
select(models.IndieAuthAccessToken).where(
|
||||||
.where(models.IndieAuthAccessToken.access_token == token)
|
models.IndieAuthAccessToken.access_token == token
|
||||||
.options(
|
|
||||||
joinedload(models.IndieAuthAccessToken.indieauth_authorization_request)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
).one_or_none()
|
).one_or_none()
|
||||||
|
@ -382,9 +285,6 @@ async def _check_access_token(
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class AccessTokenInfo:
|
class AccessTokenInfo:
|
||||||
scopes: list[str]
|
scopes: list[str]
|
||||||
client_id: str | None
|
|
||||||
access_token: str
|
|
||||||
exp: int
|
|
||||||
|
|
||||||
|
|
||||||
async def verify_access_token(
|
async def verify_access_token(
|
||||||
|
@ -411,71 +311,9 @@ async def verify_access_token(
|
||||||
|
|
||||||
return AccessTokenInfo(
|
return AccessTokenInfo(
|
||||||
scopes=access_token.scope.split(),
|
scopes=access_token.scope.split(),
|
||||||
client_id=(
|
|
||||||
access_token.indieauth_authorization_request.client_id
|
|
||||||
if access_token.indieauth_authorization_request
|
|
||||||
else None
|
|
||||||
),
|
|
||||||
access_token=access_token.access_token,
|
|
||||||
exp=int(
|
|
||||||
(
|
|
||||||
access_token.created_at.replace(tzinfo=timezone.utc)
|
|
||||||
+ timedelta(seconds=access_token.expires_in)
|
|
||||||
).timestamp()
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
async def check_access_token(
|
|
||||||
request: Request,
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
) -> AccessTokenInfo | None:
|
|
||||||
token = request.headers.get("Authorization", "").removeprefix("Bearer ")
|
|
||||||
if not token:
|
|
||||||
return None
|
|
||||||
|
|
||||||
is_token_valid, access_token = await _check_access_token(db_session, token)
|
|
||||||
if not is_token_valid:
|
|
||||||
return None
|
|
||||||
|
|
||||||
if not access_token or not access_token.scope:
|
|
||||||
raise ValueError("Should never happen")
|
|
||||||
|
|
||||||
access_token_info = AccessTokenInfo(
|
|
||||||
scopes=access_token.scope.split(),
|
|
||||||
client_id=(
|
|
||||||
access_token.indieauth_authorization_request.client_id
|
|
||||||
if access_token.indieauth_authorization_request
|
|
||||||
else None
|
|
||||||
),
|
|
||||||
access_token=access_token.access_token,
|
|
||||||
exp=int(
|
|
||||||
(
|
|
||||||
access_token.created_at.replace(tzinfo=timezone.utc)
|
|
||||||
+ timedelta(seconds=access_token.expires_in)
|
|
||||||
).timestamp()
|
|
||||||
),
|
|
||||||
)
|
|
||||||
|
|
||||||
logger.info(
|
|
||||||
"Authenticated with access token from client_id="
|
|
||||||
f"{access_token_info.client_id} scopes={access_token.scope}"
|
|
||||||
)
|
|
||||||
|
|
||||||
return access_token_info
|
|
||||||
|
|
||||||
|
|
||||||
async def enforce_access_token(
|
|
||||||
request: Request,
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
) -> AccessTokenInfo:
|
|
||||||
maybe_access_token_info = await check_access_token(request, db_session)
|
|
||||||
if not maybe_access_token_info:
|
|
||||||
raise HTTPException(status_code=401, detail="access token required")
|
|
||||||
|
|
||||||
return maybe_access_token_info
|
|
||||||
|
|
||||||
|
|
||||||
@router.post("/revoke_token")
|
@router.post("/revoke_token")
|
||||||
async def indieauth_revocation_endpoint(
|
async def indieauth_revocation_endpoint(
|
||||||
request: Request,
|
request: Request,
|
||||||
|
@ -495,58 +333,3 @@ async def indieauth_revocation_endpoint(
|
||||||
content={},
|
content={},
|
||||||
status_code=200,
|
status_code=200,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@router.post("/token_introspection")
|
|
||||||
async def oauth_introspection_endpoint(
|
|
||||||
request: Request,
|
|
||||||
credentials: HTTPBasicCredentials = Depends(basic_auth),
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
token: str = Form(),
|
|
||||||
) -> JSONResponse:
|
|
||||||
registered_client = (
|
|
||||||
await db_session.scalars(
|
|
||||||
select(models.OAuthClient).where(
|
|
||||||
models.OAuthClient.client_id == credentials.username,
|
|
||||||
models.OAuthClient.client_secret == credentials.password,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
).one_or_none()
|
|
||||||
if not registered_client:
|
|
||||||
raise HTTPException(status_code=401, detail="unauthenticated")
|
|
||||||
|
|
||||||
access_token = (
|
|
||||||
await db_session.scalars(
|
|
||||||
select(models.IndieAuthAccessToken)
|
|
||||||
.where(models.IndieAuthAccessToken.access_token == token)
|
|
||||||
.join(
|
|
||||||
models.IndieAuthAuthorizationRequest,
|
|
||||||
models.IndieAuthAccessToken.indieauth_authorization_request_id
|
|
||||||
== models.IndieAuthAuthorizationRequest.id,
|
|
||||||
)
|
|
||||||
.where(
|
|
||||||
models.IndieAuthAuthorizationRequest.client_id == credentials.username
|
|
||||||
)
|
|
||||||
)
|
|
||||||
).one_or_none()
|
|
||||||
if not access_token:
|
|
||||||
return JSONResponse(content={"active": False})
|
|
||||||
|
|
||||||
is_token_valid, _ = await _check_access_token(db_session, token)
|
|
||||||
if not is_token_valid:
|
|
||||||
return JSONResponse(content={"active": False})
|
|
||||||
|
|
||||||
return JSONResponse(
|
|
||||||
content={
|
|
||||||
"active": True,
|
|
||||||
"client_id": credentials.username,
|
|
||||||
"scope": access_token.scope,
|
|
||||||
"exp": int(
|
|
||||||
(
|
|
||||||
access_token.created_at.replace(tzinfo=timezone.utc)
|
|
||||||
+ timedelta(seconds=access_token.expires_in)
|
|
||||||
).timestamp()
|
|
||||||
),
|
|
||||||
},
|
|
||||||
status_code=200,
|
|
||||||
)
|
|
||||||
|
|
|
@ -23,13 +23,6 @@ requests_loader = pyld.documentloader.requests.requests_document_loader()
|
||||||
def _loader(url, options={}):
|
def _loader(url, options={}):
|
||||||
# See https://github.com/digitalbazaar/pyld/issues/133
|
# See https://github.com/digitalbazaar/pyld/issues/133
|
||||||
options["headers"]["Accept"] = "application/ld+json"
|
options["headers"]["Accept"] = "application/ld+json"
|
||||||
|
|
||||||
# XXX: temp fix/hack is it seems to be down for now
|
|
||||||
if url == "https://w3id.org/identity/v1":
|
|
||||||
url = (
|
|
||||||
"https://raw.githubusercontent.com/web-payments/web-payments.org"
|
|
||||||
"/master/contexts/identity-v1.jsonld"
|
|
||||||
)
|
|
||||||
return requests_loader(url, options)
|
return requests_loader(url, options)
|
||||||
|
|
||||||
|
|
||||||
|
@ -41,7 +34,7 @@ def _options_hash(doc: ap.RawObject) -> str:
|
||||||
for k in ["type", "id", "signatureValue"]:
|
for k in ["type", "id", "signatureValue"]:
|
||||||
if k in doc:
|
if k in doc:
|
||||||
del doc[k]
|
del doc[k]
|
||||||
doc["@context"] = "https://w3id.org/security/v1"
|
doc["@context"] = "https://w3id.org/identity/v1"
|
||||||
normalized = jsonld.normalize(
|
normalized = jsonld.normalize(
|
||||||
doc, {"algorithm": "URDNA2015", "format": "application/nquads"}
|
doc, {"algorithm": "URDNA2015", "format": "application/nquads"}
|
||||||
)
|
)
|
||||||
|
|
253
app/main.py
253
app/main.py
|
@ -62,7 +62,6 @@ from app.config import DOMAIN
|
||||||
from app.config import ID
|
from app.config import ID
|
||||||
from app.config import USER_AGENT
|
from app.config import USER_AGENT
|
||||||
from app.config import USERNAME
|
from app.config import USERNAME
|
||||||
from app.config import WEBFINGER_DOMAIN
|
|
||||||
from app.config import is_activitypub_requested
|
from app.config import is_activitypub_requested
|
||||||
from app.config import verify_csrf_token
|
from app.config import verify_csrf_token
|
||||||
from app.customization import get_custom_router
|
from app.customization import get_custom_router
|
||||||
|
@ -81,8 +80,8 @@ from app.utils.highlight import HIGHLIGHT_CSS_HASH
|
||||||
from app.utils.url import check_url
|
from app.utils.url import check_url
|
||||||
from app.webfinger import get_remote_follow_template
|
from app.webfinger import get_remote_follow_template
|
||||||
|
|
||||||
# Only images <1MB will be cached, so 32MB of data will be cached
|
# Only images <1MB will be cached, so 64MB of data will be cached
|
||||||
_RESIZED_CACHE: MutableMapping[tuple[str, int], tuple[bytes, str, Any]] = LFUCache(32)
|
_RESIZED_CACHE: MutableMapping[tuple[str, int], tuple[bytes, str, Any]] = LFUCache(64)
|
||||||
|
|
||||||
|
|
||||||
# TODO(ts):
|
# TODO(ts):
|
||||||
|
@ -286,6 +285,7 @@ async def redirect_to_remote_instance(
|
||||||
async def index(
|
async def index(
|
||||||
request: Request,
|
request: Request,
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
db_session: AsyncSession = Depends(get_db_session),
|
||||||
|
_: httpsig.HTTPSigInfo = Depends(httpsig.httpsig_checker),
|
||||||
page: int | None = None,
|
page: int | None = None,
|
||||||
) -> templates.TemplateResponse | ActivityPubResponse:
|
) -> templates.TemplateResponse | ActivityPubResponse:
|
||||||
if is_activitypub_requested(request):
|
if is_activitypub_requested(request):
|
||||||
|
@ -297,7 +297,7 @@ async def index(
|
||||||
models.OutboxObject.visibility == ap.VisibilityEnum.PUBLIC,
|
models.OutboxObject.visibility == ap.VisibilityEnum.PUBLIC,
|
||||||
models.OutboxObject.is_deleted.is_(False),
|
models.OutboxObject.is_deleted.is_(False),
|
||||||
models.OutboxObject.is_hidden_from_homepage.is_(False),
|
models.OutboxObject.is_hidden_from_homepage.is_(False),
|
||||||
models.OutboxObject.ap_type.in_(["Announce", "Note", "Video", "Question"]),
|
models.OutboxObject.ap_type != "Article",
|
||||||
)
|
)
|
||||||
q = select(models.OutboxObject).where(*where)
|
q = select(models.OutboxObject).where(*where)
|
||||||
total_count = await db_session.scalar(
|
total_count = await db_session.scalar(
|
||||||
|
@ -465,12 +465,7 @@ async def followers(
|
||||||
_: httpsig.HTTPSigInfo = Depends(httpsig.httpsig_checker),
|
_: httpsig.HTTPSigInfo = Depends(httpsig.httpsig_checker),
|
||||||
) -> ActivityPubResponse | templates.TemplateResponse:
|
) -> ActivityPubResponse | templates.TemplateResponse:
|
||||||
if is_activitypub_requested(request):
|
if is_activitypub_requested(request):
|
||||||
maybe_access_token_info = await indieauth.check_access_token(
|
if config.HIDES_FOLLOWERS:
|
||||||
request,
|
|
||||||
db_session,
|
|
||||||
)
|
|
||||||
|
|
||||||
if config.HIDES_FOLLOWERS and not maybe_access_token_info:
|
|
||||||
return ActivityPubResponse(
|
return ActivityPubResponse(
|
||||||
await _empty_followx_collection(
|
await _empty_followx_collection(
|
||||||
db_session=db_session,
|
db_session=db_session,
|
||||||
|
@ -529,12 +524,7 @@ async def following(
|
||||||
_: httpsig.HTTPSigInfo = Depends(httpsig.httpsig_checker),
|
_: httpsig.HTTPSigInfo = Depends(httpsig.httpsig_checker),
|
||||||
) -> ActivityPubResponse | templates.TemplateResponse:
|
) -> ActivityPubResponse | templates.TemplateResponse:
|
||||||
if is_activitypub_requested(request):
|
if is_activitypub_requested(request):
|
||||||
maybe_access_token_info = await indieauth.check_access_token(
|
if config.HIDES_FOLLOWING:
|
||||||
request,
|
|
||||||
db_session,
|
|
||||||
)
|
|
||||||
|
|
||||||
if config.HIDES_FOLLOWING and not maybe_access_token_info:
|
|
||||||
return ActivityPubResponse(
|
return ActivityPubResponse(
|
||||||
await _empty_followx_collection(
|
await _empty_followx_collection(
|
||||||
db_session=db_session,
|
db_session=db_session,
|
||||||
|
@ -590,34 +580,22 @@ async def following(
|
||||||
|
|
||||||
@app.get("/outbox")
|
@app.get("/outbox")
|
||||||
async def outbox(
|
async def outbox(
|
||||||
request: Request,
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
db_session: AsyncSession = Depends(get_db_session),
|
||||||
_: httpsig.HTTPSigInfo = Depends(httpsig.httpsig_checker),
|
_: httpsig.HTTPSigInfo = Depends(httpsig.httpsig_checker),
|
||||||
) -> ActivityPubResponse:
|
) -> ActivityPubResponse:
|
||||||
maybe_access_token_info = await indieauth.check_access_token(
|
|
||||||
request,
|
|
||||||
db_session,
|
|
||||||
)
|
|
||||||
|
|
||||||
# Default restrictions unless the request is authenticated with an access token
|
|
||||||
restricted_where = [
|
|
||||||
models.OutboxObject.visibility == ap.VisibilityEnum.PUBLIC,
|
|
||||||
models.OutboxObject.ap_type.in_(["Create", "Note", "Article", "Announce"]),
|
|
||||||
]
|
|
||||||
|
|
||||||
# By design, we only show the last 20 public activities in the oubox
|
# By design, we only show the last 20 public activities in the oubox
|
||||||
outbox_objects = (
|
outbox_objects = (
|
||||||
await db_session.scalars(
|
await db_session.scalars(
|
||||||
select(models.OutboxObject)
|
select(models.OutboxObject)
|
||||||
.where(
|
.where(
|
||||||
|
models.OutboxObject.visibility == ap.VisibilityEnum.PUBLIC,
|
||||||
models.OutboxObject.is_deleted.is_(False),
|
models.OutboxObject.is_deleted.is_(False),
|
||||||
*([] if maybe_access_token_info else restricted_where),
|
models.OutboxObject.ap_type.in_(["Create", "Announce"]),
|
||||||
)
|
)
|
||||||
.order_by(models.OutboxObject.ap_published_at.desc())
|
.order_by(models.OutboxObject.ap_published_at.desc())
|
||||||
.limit(20)
|
.limit(20)
|
||||||
)
|
)
|
||||||
).all()
|
).all()
|
||||||
|
|
||||||
return ActivityPubResponse(
|
return ActivityPubResponse(
|
||||||
{
|
{
|
||||||
"@context": ap.AS_EXTENDED_CTX,
|
"@context": ap.AS_EXTENDED_CTX,
|
||||||
|
@ -632,49 +610,6 @@ async def outbox(
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@app.post("/outbox")
|
|
||||||
async def post_outbox(
|
|
||||||
request: Request,
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
access_token_info: indieauth.AccessTokenInfo = Depends(
|
|
||||||
indieauth.enforce_access_token
|
|
||||||
),
|
|
||||||
) -> ActivityPubResponse:
|
|
||||||
payload = await request.json()
|
|
||||||
logger.info(f"{payload=}")
|
|
||||||
|
|
||||||
if payload.get("type") == "Create":
|
|
||||||
assert payload["actor"] == ID
|
|
||||||
obj = payload["object"]
|
|
||||||
|
|
||||||
to_and_cc = obj.get("to", []) + obj.get("cc", [])
|
|
||||||
if ap.AS_PUBLIC in obj.get("to", []) and ID + "/followers" in to_and_cc:
|
|
||||||
visibility = ap.VisibilityEnum.PUBLIC
|
|
||||||
elif ap.AS_PUBLIC in to_and_cc and ID + "/followers" in to_and_cc:
|
|
||||||
visibility = ap.VisibilityEnum.UNLISTED
|
|
||||||
else:
|
|
||||||
visibility = ap.VisibilityEnum.DIRECT
|
|
||||||
|
|
||||||
object_id, outbox_object = await boxes.send_create(
|
|
||||||
db_session,
|
|
||||||
ap_type=obj["type"],
|
|
||||||
source=obj["content"],
|
|
||||||
uploads=[],
|
|
||||||
in_reply_to=obj.get("inReplyTo"),
|
|
||||||
visibility=visibility,
|
|
||||||
content_warning=obj.get("summary"),
|
|
||||||
is_sensitive=obj.get("sensitive", False),
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
raise ValueError("TODO")
|
|
||||||
|
|
||||||
return ActivityPubResponse(
|
|
||||||
outbox_object.ap_object,
|
|
||||||
status_code=201,
|
|
||||||
headers={"Location": boxes.outbox_object_id(object_id)},
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@app.get("/featured")
|
@app.get("/featured")
|
||||||
async def featured(
|
async def featured(
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
db_session: AsyncSession = Depends(get_db_session),
|
||||||
|
@ -712,14 +647,6 @@ async def _check_outbox_object_acl(
|
||||||
if templates.is_current_user_admin(request):
|
if templates.is_current_user_admin(request):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
maybe_access_token_info = await indieauth.check_access_token(
|
|
||||||
request,
|
|
||||||
db_session,
|
|
||||||
)
|
|
||||||
if maybe_access_token_info:
|
|
||||||
# TODO: check scopes
|
|
||||||
return None
|
|
||||||
|
|
||||||
if ap_object.visibility in [
|
if ap_object.visibility in [
|
||||||
ap.VisibilityEnum.PUBLIC,
|
ap.VisibilityEnum.PUBLIC,
|
||||||
ap.VisibilityEnum.UNLISTED,
|
ap.VisibilityEnum.UNLISTED,
|
||||||
|
@ -1089,78 +1016,6 @@ def emoji_by_name(name: str) -> ActivityPubResponse:
|
||||||
return ActivityPubResponse({"@context": ap.AS_EXTENDED_CTX, **emoji})
|
return ActivityPubResponse({"@context": ap.AS_EXTENDED_CTX, **emoji})
|
||||||
|
|
||||||
|
|
||||||
@app.get("/inbox")
|
|
||||||
async def get_inbox(
|
|
||||||
request: Request,
|
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
|
||||||
access_token_info: indieauth.AccessTokenInfo = Depends(
|
|
||||||
indieauth.enforce_access_token
|
|
||||||
),
|
|
||||||
page: bool | None = None,
|
|
||||||
next_cursor: str | None = None,
|
|
||||||
) -> ActivityPubResponse:
|
|
||||||
where = [
|
|
||||||
models.InboxObject.ap_type.in_(
|
|
||||||
["Create", "Follow", "Like", "Announce", "Undo", "Update"]
|
|
||||||
)
|
|
||||||
]
|
|
||||||
total_items = await db_session.scalar(
|
|
||||||
select(func.count(models.InboxObject.id)).where(*where)
|
|
||||||
)
|
|
||||||
|
|
||||||
if not page and not next_cursor:
|
|
||||||
return ActivityPubResponse(
|
|
||||||
{
|
|
||||||
"@context": ap.AS_CTX,
|
|
||||||
"id": ID + "/inbox",
|
|
||||||
"first": ID + "/inbox?page=true",
|
|
||||||
"type": "OrderedCollection",
|
|
||||||
"totalItems": total_items,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
q = (
|
|
||||||
select(models.InboxObject)
|
|
||||||
.where(*where)
|
|
||||||
.order_by(models.InboxObject.created_at.desc())
|
|
||||||
) # type: ignore
|
|
||||||
if next_cursor:
|
|
||||||
q = q.where(
|
|
||||||
models.InboxObject.created_at
|
|
||||||
< pagination.decode_cursor(next_cursor) # type: ignore
|
|
||||||
)
|
|
||||||
q = q.limit(20)
|
|
||||||
|
|
||||||
items = [item for item in (await db_session.scalars(q)).all()]
|
|
||||||
next_cursor = None
|
|
||||||
if (
|
|
||||||
items
|
|
||||||
and await db_session.scalar(
|
|
||||||
select(func.count(models.InboxObject.id)).where(
|
|
||||||
*where, models.InboxObject.created_at < items[-1].created_at
|
|
||||||
)
|
|
||||||
)
|
|
||||||
> 0
|
|
||||||
):
|
|
||||||
next_cursor = pagination.encode_cursor(items[-1].created_at)
|
|
||||||
|
|
||||||
collection_page = {
|
|
||||||
"@context": ap.AS_CTX,
|
|
||||||
"id": (
|
|
||||||
ID + "/inbox?page=true"
|
|
||||||
if not next_cursor
|
|
||||||
else ID + f"/inbox?next_cursor={next_cursor}"
|
|
||||||
),
|
|
||||||
"partOf": ID + "/inbox",
|
|
||||||
"type": "OrderedCollectionPage",
|
|
||||||
"orderedItems": [item.ap_object for item in items],
|
|
||||||
}
|
|
||||||
if next_cursor:
|
|
||||||
collection_page["next"] = ID + f"/inbox?next_cursor={next_cursor}"
|
|
||||||
|
|
||||||
return ActivityPubResponse(collection_page)
|
|
||||||
|
|
||||||
|
|
||||||
@app.post("/inbox")
|
@app.post("/inbox")
|
||||||
async def inbox(
|
async def inbox(
|
||||||
request: Request,
|
request: Request,
|
||||||
|
@ -1256,16 +1111,12 @@ async def post_remote_interaction(
|
||||||
@app.get("/.well-known/webfinger")
|
@app.get("/.well-known/webfinger")
|
||||||
async def wellknown_webfinger(resource: str) -> JSONResponse:
|
async def wellknown_webfinger(resource: str) -> JSONResponse:
|
||||||
"""Exposes/servers WebFinger data."""
|
"""Exposes/servers WebFinger data."""
|
||||||
if resource not in [
|
if resource not in [f"acct:{USERNAME}@{DOMAIN}", ID]:
|
||||||
f"acct:{USERNAME}@{WEBFINGER_DOMAIN}",
|
|
||||||
ID,
|
|
||||||
f"acct:{USERNAME}@{DOMAIN}",
|
|
||||||
]:
|
|
||||||
logger.info(f"Got invalid req for {resource}")
|
logger.info(f"Got invalid req for {resource}")
|
||||||
raise HTTPException(status_code=404)
|
raise HTTPException(status_code=404)
|
||||||
|
|
||||||
out = {
|
out = {
|
||||||
"subject": f"acct:{USERNAME}@{WEBFINGER_DOMAIN}",
|
"subject": f"acct:{USERNAME}@{DOMAIN}",
|
||||||
"aliases": [ID],
|
"aliases": [ID],
|
||||||
"links": [
|
"links": [
|
||||||
{
|
{
|
||||||
|
@ -1329,11 +1180,15 @@ async def nodeinfo(
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
proxy_client = httpx.AsyncClient(
|
||||||
|
http2=True,
|
||||||
|
follow_redirects=True,
|
||||||
|
timeout=httpx.Timeout(timeout=10.0),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
async def _proxy_get(
|
async def _proxy_get(
|
||||||
proxy_client: httpx.AsyncClient,
|
request: starlette.requests.Request, url: str, stream: bool
|
||||||
request: starlette.requests.Request,
|
|
||||||
url: str,
|
|
||||||
stream: bool,
|
|
||||||
) -> httpx.Response:
|
) -> httpx.Response:
|
||||||
# Request the URL (and filter request headers)
|
# Request the URL (and filter request headers)
|
||||||
proxy_req = proxy_client.build_request(
|
proxy_req = proxy_client.build_request(
|
||||||
|
@ -1380,29 +1235,18 @@ async def serve_proxy_media(
|
||||||
exp: int,
|
exp: int,
|
||||||
sig: str,
|
sig: str,
|
||||||
encoded_url: str,
|
encoded_url: str,
|
||||||
background_tasks: fastapi.BackgroundTasks,
|
|
||||||
) -> StreamingResponse | PlainTextResponse:
|
) -> StreamingResponse | PlainTextResponse:
|
||||||
# Decode the base64-encoded URL
|
# Decode the base64-encoded URL
|
||||||
url = base64.urlsafe_b64decode(encoded_url).decode()
|
url = base64.urlsafe_b64decode(encoded_url).decode()
|
||||||
check_url(url)
|
check_url(url)
|
||||||
media.verify_proxied_media_sig(exp, url, sig)
|
media.verify_proxied_media_sig(exp, url, sig)
|
||||||
|
|
||||||
proxy_client = httpx.AsyncClient(
|
proxy_resp = await _proxy_get(request, url, stream=True)
|
||||||
follow_redirects=True,
|
|
||||||
timeout=httpx.Timeout(timeout=10.0),
|
|
||||||
transport=httpx.AsyncHTTPTransport(retries=1),
|
|
||||||
)
|
|
||||||
|
|
||||||
async def _close_proxy_client():
|
|
||||||
await proxy_client.aclose()
|
|
||||||
|
|
||||||
background_tasks.add_task(_close_proxy_client)
|
|
||||||
proxy_resp = await _proxy_get(proxy_client, request, url, stream=True)
|
|
||||||
|
|
||||||
if proxy_resp.status_code >= 300:
|
if proxy_resp.status_code >= 300:
|
||||||
logger.info(f"failed to proxy {url}, got {proxy_resp.status_code}")
|
logger.info(f"failed to proxy {url}, got {proxy_resp.status_code}")
|
||||||
await proxy_resp.aclose()
|
|
||||||
return PlainTextResponse(
|
return PlainTextResponse(
|
||||||
|
"proxy error",
|
||||||
status_code=proxy_resp.status_code,
|
status_code=proxy_resp.status_code,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1413,7 +1257,6 @@ async def serve_proxy_media(
|
||||||
_filter_proxy_resp_headers(
|
_filter_proxy_resp_headers(
|
||||||
proxy_resp,
|
proxy_resp,
|
||||||
[
|
[
|
||||||
"content-encoding",
|
|
||||||
"content-length",
|
"content-length",
|
||||||
"content-type",
|
"content-type",
|
||||||
"content-range",
|
"content-range",
|
||||||
|
@ -1436,19 +1279,16 @@ async def serve_proxy_media_resized(
|
||||||
sig: str,
|
sig: str,
|
||||||
encoded_url: str,
|
encoded_url: str,
|
||||||
size: int,
|
size: int,
|
||||||
background_tasks: fastapi.BackgroundTasks,
|
|
||||||
) -> PlainTextResponse:
|
) -> PlainTextResponse:
|
||||||
if size not in {50, 740}:
|
if size not in {50, 740}:
|
||||||
raise ValueError("Unsupported size")
|
raise ValueError("Unsupported size")
|
||||||
|
|
||||||
is_webp_supported = "image/webp" in request.headers.get("accept")
|
|
||||||
|
|
||||||
# Decode the base64-encoded URL
|
# Decode the base64-encoded URL
|
||||||
url = base64.urlsafe_b64decode(encoded_url).decode()
|
url = base64.urlsafe_b64decode(encoded_url).decode()
|
||||||
check_url(url)
|
check_url(url)
|
||||||
media.verify_proxied_media_sig(exp, url, sig)
|
media.verify_proxied_media_sig(exp, url, sig)
|
||||||
|
|
||||||
if (cached_resp := _RESIZED_CACHE.get((url, size))) and is_webp_supported:
|
if cached_resp := _RESIZED_CACHE.get((url, size)):
|
||||||
resized_content, resized_mimetype, resp_headers = cached_resp
|
resized_content, resized_mimetype, resp_headers = cached_resp
|
||||||
return PlainTextResponse(
|
return PlainTextResponse(
|
||||||
resized_content,
|
resized_content,
|
||||||
|
@ -1456,21 +1296,11 @@ async def serve_proxy_media_resized(
|
||||||
headers=resp_headers,
|
headers=resp_headers,
|
||||||
)
|
)
|
||||||
|
|
||||||
proxy_client = httpx.AsyncClient(
|
proxy_resp = await _proxy_get(request, url, stream=False)
|
||||||
follow_redirects=True,
|
|
||||||
timeout=httpx.Timeout(timeout=10.0),
|
|
||||||
transport=httpx.AsyncHTTPTransport(retries=1),
|
|
||||||
)
|
|
||||||
|
|
||||||
async def _close_proxy_client():
|
|
||||||
await proxy_client.aclose()
|
|
||||||
|
|
||||||
background_tasks.add_task(_close_proxy_client)
|
|
||||||
proxy_resp = await _proxy_get(proxy_client, request, url, stream=False)
|
|
||||||
if proxy_resp.status_code >= 300:
|
if proxy_resp.status_code >= 300:
|
||||||
logger.info(f"failed to proxy {url}, got {proxy_resp.status_code}")
|
logger.info(f"failed to proxy {url}, got {proxy_resp.status_code}")
|
||||||
await proxy_resp.aclose()
|
|
||||||
return PlainTextResponse(
|
return PlainTextResponse(
|
||||||
|
"proxy error",
|
||||||
status_code=proxy_resp.status_code,
|
status_code=proxy_resp.status_code,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1496,10 +1326,10 @@ async def serve_proxy_media_resized(
|
||||||
is_webp = False
|
is_webp = False
|
||||||
try:
|
try:
|
||||||
resized_buf = BytesIO()
|
resized_buf = BytesIO()
|
||||||
i.save(resized_buf, format="webp" if is_webp_supported else i.format)
|
i.save(resized_buf, format="webp")
|
||||||
is_webp = is_webp_supported
|
is_webp = True
|
||||||
except Exception:
|
except Exception:
|
||||||
logger.exception("Failed to create thumbnail")
|
logger.exception("Failed to convert to webp")
|
||||||
resized_buf = BytesIO()
|
resized_buf = BytesIO()
|
||||||
i.save(resized_buf, format=i.format)
|
i.save(resized_buf, format=i.format)
|
||||||
resized_buf.seek(0)
|
resized_buf.seek(0)
|
||||||
|
@ -1557,7 +1387,6 @@ async def serve_attachment(
|
||||||
|
|
||||||
@app.get("/attachments/thumbnails/{content_hash}/{filename}")
|
@app.get("/attachments/thumbnails/{content_hash}/{filename}")
|
||||||
async def serve_attachment_thumbnail(
|
async def serve_attachment_thumbnail(
|
||||||
request: Request,
|
|
||||||
content_hash: str,
|
content_hash: str,
|
||||||
filename: str,
|
filename: str,
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
db_session: AsyncSession = Depends(get_db_session),
|
||||||
|
@ -1572,20 +1401,11 @@ async def serve_attachment_thumbnail(
|
||||||
if not upload or not upload.has_thumbnail:
|
if not upload or not upload.has_thumbnail:
|
||||||
raise HTTPException(status_code=404)
|
raise HTTPException(status_code=404)
|
||||||
|
|
||||||
is_webp_supported = "image/webp" in request.headers.get("accept")
|
|
||||||
|
|
||||||
if is_webp_supported:
|
|
||||||
return FileResponse(
|
return FileResponse(
|
||||||
UPLOAD_DIR / (content_hash + "_resized"),
|
UPLOAD_DIR / (content_hash + "_resized"),
|
||||||
media_type="image/webp",
|
media_type="image/webp",
|
||||||
headers={"Cache-Control": "max-age=31536000"},
|
headers={"Cache-Control": "max-age=31536000"},
|
||||||
)
|
)
|
||||||
else:
|
|
||||||
return FileResponse(
|
|
||||||
UPLOAD_DIR / content_hash,
|
|
||||||
media_type=upload.content_type,
|
|
||||||
headers={"Cache-Control": "max-age=31536000"},
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@app.get("/robots.txt", response_class=PlainTextResponse)
|
@app.get("/robots.txt", response_class=PlainTextResponse)
|
||||||
|
@ -1645,26 +1465,23 @@ async def json_feed(
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
result = {
|
result = {
|
||||||
"version": "https://jsonfeed.org/version/1.1",
|
"version": "https://jsonfeed.org/version/1",
|
||||||
"title": f"{LOCAL_ACTOR.display_name}'s microblog'",
|
"title": f"{LOCAL_ACTOR.display_name}'s microblog'",
|
||||||
"home_page_url": LOCAL_ACTOR.url,
|
"home_page_url": LOCAL_ACTOR.url,
|
||||||
"feed_url": BASE_URL + "/feed.json",
|
"feed_url": BASE_URL + "/feed.json",
|
||||||
"authors": [
|
"author": {
|
||||||
{
|
|
||||||
"name": LOCAL_ACTOR.display_name,
|
"name": LOCAL_ACTOR.display_name,
|
||||||
"url": LOCAL_ACTOR.url,
|
"url": LOCAL_ACTOR.url,
|
||||||
}
|
},
|
||||||
],
|
|
||||||
"items": data,
|
"items": data,
|
||||||
}
|
}
|
||||||
if LOCAL_ACTOR.icon_url:
|
if LOCAL_ACTOR.icon_url:
|
||||||
result["authors"][0]["avatar"] = LOCAL_ACTOR.icon_url # type: ignore
|
result["author"]["avatar"] = LOCAL_ACTOR.icon_url # type: ignore
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
async def _gen_rss_feed(
|
async def _gen_rss_feed(
|
||||||
db_session: AsyncSession,
|
db_session: AsyncSession,
|
||||||
is_rss: bool,
|
|
||||||
):
|
):
|
||||||
fg = FeedGenerator()
|
fg = FeedGenerator()
|
||||||
fg.id(BASE_URL + "/feed.rss")
|
fg.id(BASE_URL + "/feed.rss")
|
||||||
|
@ -1695,12 +1512,8 @@ async def _gen_rss_feed(
|
||||||
|
|
||||||
fe = fg.add_entry()
|
fe = fg.add_entry()
|
||||||
fe.id(outbox_object.url)
|
fe.id(outbox_object.url)
|
||||||
if outbox_object.name is not None:
|
|
||||||
fe.title(outbox_object.name)
|
|
||||||
elif not is_rss: # Atom feeds require a title
|
|
||||||
fe.title(outbox_object.url)
|
|
||||||
|
|
||||||
fe.link(href=outbox_object.url)
|
fe.link(href=outbox_object.url)
|
||||||
|
fe.title(outbox_object.url)
|
||||||
fe.description(content)
|
fe.description(content)
|
||||||
fe.content(content)
|
fe.content(content)
|
||||||
fe.published(outbox_object.ap_published_at.replace(tzinfo=timezone.utc))
|
fe.published(outbox_object.ap_published_at.replace(tzinfo=timezone.utc))
|
||||||
|
@ -1713,7 +1526,7 @@ async def rss_feed(
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
db_session: AsyncSession = Depends(get_db_session),
|
||||||
) -> PlainTextResponse:
|
) -> PlainTextResponse:
|
||||||
return PlainTextResponse(
|
return PlainTextResponse(
|
||||||
(await _gen_rss_feed(db_session, is_rss=True)).rss_str(),
|
(await _gen_rss_feed(db_session)).rss_str(),
|
||||||
headers={"Content-Type": "application/rss+xml"},
|
headers={"Content-Type": "application/rss+xml"},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1723,6 +1536,6 @@ async def atom_feed(
|
||||||
db_session: AsyncSession = Depends(get_db_session),
|
db_session: AsyncSession = Depends(get_db_session),
|
||||||
) -> PlainTextResponse:
|
) -> PlainTextResponse:
|
||||||
return PlainTextResponse(
|
return PlainTextResponse(
|
||||||
(await _gen_rss_feed(db_session, is_rss=False)).atom_str(),
|
(await _gen_rss_feed(db_session)).atom_str(),
|
||||||
headers={"Content-Type": "application/atom+xml"},
|
headers={"Content-Type": "application/atom+xml"},
|
||||||
)
|
)
|
||||||
|
|
|
@ -132,7 +132,7 @@ async def post_micropub_endpoint(
|
||||||
h = form_data["h"]
|
h = form_data["h"]
|
||||||
entry_type = f"h-{h}"
|
entry_type = f"h-{h}"
|
||||||
|
|
||||||
logger.info(f"Creating {entry_type=} with {access_token_info=}")
|
logger.info(f"Creating {entry_type}")
|
||||||
|
|
||||||
if entry_type != "h-entry":
|
if entry_type != "h-entry":
|
||||||
return JSONResponse(
|
return JSONResponse(
|
||||||
|
@ -150,7 +150,7 @@ async def post_micropub_endpoint(
|
||||||
else:
|
else:
|
||||||
content = form_data["content"]
|
content = form_data["content"]
|
||||||
|
|
||||||
public_id, _ = await send_create(
|
public_id = await send_create(
|
||||||
db_session,
|
db_session,
|
||||||
"Note",
|
"Note",
|
||||||
content,
|
content,
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import enum
|
import enum
|
||||||
from datetime import datetime
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
from typing import Union
|
from typing import Union
|
||||||
|
@ -55,10 +54,6 @@ class Actor(Base, BaseActor):
|
||||||
is_blocked = Column(Boolean, nullable=False, default=False, server_default="0")
|
is_blocked = Column(Boolean, nullable=False, default=False, server_default="0")
|
||||||
is_deleted = Column(Boolean, nullable=False, default=False, server_default="0")
|
is_deleted = Column(Boolean, nullable=False, default=False, server_default="0")
|
||||||
|
|
||||||
are_announces_hidden_from_stream = Column(
|
|
||||||
Boolean, nullable=False, default=False, server_default="0"
|
|
||||||
)
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_from_db(self) -> bool:
|
def is_from_db(self) -> bool:
|
||||||
return True
|
return True
|
||||||
|
@ -437,7 +432,7 @@ class OutboxObjectAttachment(Base):
|
||||||
outbox_object_id = Column(Integer, ForeignKey("outbox.id"), nullable=False)
|
outbox_object_id = Column(Integer, ForeignKey("outbox.id"), nullable=False)
|
||||||
|
|
||||||
upload_id = Column(Integer, ForeignKey("upload.id"), nullable=False)
|
upload_id = Column(Integer, ForeignKey("upload.id"), nullable=False)
|
||||||
upload: Mapped["Upload"] = relationship(Upload, uselist=False)
|
upload = relationship(Upload, uselist=False)
|
||||||
|
|
||||||
|
|
||||||
class IndieAuthAuthorizationRequest(Base):
|
class IndieAuthAuthorizationRequest(Base):
|
||||||
|
@ -460,45 +455,17 @@ class IndieAuthAccessToken(Base):
|
||||||
__tablename__ = "indieauth_access_token"
|
__tablename__ = "indieauth_access_token"
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True, index=True)
|
id = Column(Integer, primary_key=True, index=True)
|
||||||
created_at: Mapped[datetime] = Column(
|
created_at = Column(DateTime(timezone=True), nullable=False, default=now)
|
||||||
DateTime(timezone=True), nullable=False, default=now
|
|
||||||
)
|
|
||||||
|
|
||||||
# Will be null for personal access tokens
|
# Will be null for personal access tokens
|
||||||
indieauth_authorization_request_id = Column(
|
indieauth_authorization_request_id = Column(
|
||||||
Integer, ForeignKey("indieauth_authorization_request.id"), nullable=True
|
Integer, ForeignKey("indieauth_authorization_request.id"), nullable=True
|
||||||
)
|
)
|
||||||
indieauth_authorization_request = relationship(
|
|
||||||
IndieAuthAuthorizationRequest,
|
|
||||||
uselist=False,
|
|
||||||
)
|
|
||||||
|
|
||||||
access_token: Mapped[str] = Column(String, nullable=False, unique=True, index=True)
|
access_token = Column(String, nullable=False, unique=True, index=True)
|
||||||
refresh_token = Column(String, nullable=True, unique=True, index=True)
|
expires_in = Column(Integer, nullable=False)
|
||||||
expires_in: Mapped[int] = Column(Integer, nullable=False)
|
|
||||||
scope = Column(String, nullable=False)
|
scope = Column(String, nullable=False)
|
||||||
is_revoked = Column(Boolean, nullable=False, default=False)
|
is_revoked = Column(Boolean, nullable=False, default=False)
|
||||||
was_refreshed = Column(Boolean, nullable=False, default=False, server_default="0")
|
|
||||||
|
|
||||||
|
|
||||||
class OAuthClient(Base):
|
|
||||||
__tablename__ = "oauth_client"
|
|
||||||
|
|
||||||
id = Column(Integer, primary_key=True, index=True)
|
|
||||||
created_at = Column(DateTime(timezone=True), nullable=False, default=now)
|
|
||||||
|
|
||||||
# Request
|
|
||||||
client_name = Column(String, nullable=False)
|
|
||||||
redirect_uris: Mapped[list[str]] = Column(JSON, nullable=True)
|
|
||||||
|
|
||||||
# Optional from request
|
|
||||||
client_uri = Column(String, nullable=True)
|
|
||||||
logo_uri = Column(String, nullable=True)
|
|
||||||
scope = Column(String, nullable=True)
|
|
||||||
|
|
||||||
# Response
|
|
||||||
client_id = Column(String, nullable=False, unique=True, index=True)
|
|
||||||
client_secret = Column(String, nullable=False, unique=True)
|
|
||||||
|
|
||||||
|
|
||||||
@enum.unique
|
@enum.unique
|
||||||
|
|
|
@ -151,7 +151,7 @@ def _set_next_try(
|
||||||
if not outgoing_activity.tries:
|
if not outgoing_activity.tries:
|
||||||
raise ValueError("Should never happen")
|
raise ValueError("Should never happen")
|
||||||
|
|
||||||
if outgoing_activity.tries >= _MAX_RETRIES:
|
if outgoing_activity.tries == _MAX_RETRIES:
|
||||||
outgoing_activity.is_errored = True
|
outgoing_activity.is_errored = True
|
||||||
outgoing_activity.next_try = None
|
outgoing_activity.next_try = None
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -102,8 +102,6 @@ async def _prune_old_inbox_objects(
|
||||||
models.InboxObject.ap_type.in_(["Note"]),
|
models.InboxObject.ap_type.in_(["Note"]),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
# Keep Move object as they are linked to notifications
|
|
||||||
models.InboxObject.ap_type.not_in(["Move"]),
|
|
||||||
# Filter by retention days
|
# Filter by retention days
|
||||||
models.InboxObject.ap_published_at
|
models.InboxObject.ap_published_at
|
||||||
< now() - timedelta(days=INBOX_RETENTION_DAYS),
|
< now() - timedelta(days=INBOX_RETENTION_DAYS),
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
from fastapi import Request
|
|
||||||
|
|
||||||
from app import templates
|
|
||||||
from app.database import AsyncSession
|
|
||||||
|
|
||||||
|
|
||||||
async def redirect(
|
|
||||||
request: Request,
|
|
||||||
db_session: AsyncSession,
|
|
||||||
url: str,
|
|
||||||
) -> templates.TemplateResponse:
|
|
||||||
"""
|
|
||||||
Similar to RedirectResponse, but uses a 200 response with HTML.
|
|
||||||
|
|
||||||
Needed for remote redirects on form submission endpoints,
|
|
||||||
since our CSP policy disallows remote form submission.
|
|
||||||
https://github.com/w3c/webappsec-csp/issues/8#issuecomment-810108984
|
|
||||||
"""
|
|
||||||
return await templates.render_template(
|
|
||||||
db_session,
|
|
||||||
request,
|
|
||||||
"redirect.html",
|
|
||||||
{
|
|
||||||
"request": request,
|
|
||||||
"url": url,
|
|
||||||
},
|
|
||||||
headers={"Refresh": "0;url=" + url},
|
|
||||||
)
|
|
|
@ -51,20 +51,17 @@ $code-highlight-background: #f0f0f0;
|
||||||
.p-summary {
|
.p-summary {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
.show-more-btn {
|
label {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
summary {
|
.show-more-state {
|
||||||
display: inline-block;
|
display: none;
|
||||||
}
|
}
|
||||||
summary::-webkit-details-marker {
|
.show-more-state ~ .obj-content {
|
||||||
display: none
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
&:not([open]) .show-more-btn::after {
|
.show-more-state:checked ~ .obj-content {
|
||||||
content: 'show more';
|
display: none;
|
||||||
}
|
|
||||||
&[open] .show-more-btn::after {
|
|
||||||
content: 'show less';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.sensitive-attachment {
|
.sensitive-attachment {
|
||||||
|
@ -432,7 +429,8 @@ a.label-btn {
|
||||||
.activity-attachment {
|
.activity-attachment {
|
||||||
margin: 30px 0 20px 0;
|
margin: 30px 0 20px 0;
|
||||||
img, audio, video {
|
img, audio, video {
|
||||||
max-width: calc(min(740px, 100%));
|
width: 100%;
|
||||||
|
max-width: 740px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
img.inline-img {
|
img.inline-img {
|
||||||
|
@ -458,7 +456,7 @@ a.label-btn {
|
||||||
border: 2px dashed $secondary-color;
|
border: 2px dashed $secondary-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error-box, .scolor {
|
.error-box {
|
||||||
color: $secondary-color;
|
color: $secondary-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -550,22 +548,3 @@ a.label-btn {
|
||||||
.margin-top-20 {
|
.margin-top-20 {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-wrapper {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.video-gif-overlay {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.video-gif-mode + .video-gif-overlay {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 5px;
|
|
||||||
left: 5px;
|
|
||||||
padding: 0 3px;
|
|
||||||
font-size: 0.8em;
|
|
||||||
background: rgba(0,0,0,.5);
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
|
@ -3,12 +3,12 @@ import typing
|
||||||
|
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
from mistletoe import Document # type: ignore
|
from mistletoe import Document # type: ignore
|
||||||
from mistletoe.block_token import CodeFence # type: ignore
|
|
||||||
from mistletoe.html_renderer import HTMLRenderer # type: ignore
|
from mistletoe.html_renderer import HTMLRenderer # type: ignore
|
||||||
from mistletoe.span_token import SpanToken # type: ignore
|
from mistletoe.span_token import SpanToken # type: ignore
|
||||||
|
from pygments import highlight # type: ignore
|
||||||
from pygments.formatters import HtmlFormatter # type: ignore
|
from pygments.formatters import HtmlFormatter # type: ignore
|
||||||
from pygments.lexers import get_lexer_by_name as get_lexer # type: ignore
|
from pygments.lexers import get_lexer_by_name as get_lexer # type: ignore
|
||||||
from pygments.util import ClassNotFound # type: ignore
|
from pygments.lexers import guess_lexer # type: ignore
|
||||||
from sqlalchemy import select
|
from sqlalchemy import select
|
||||||
|
|
||||||
from app import webfinger
|
from app import webfinger
|
||||||
|
@ -104,16 +104,10 @@ class CustomRenderer(HTMLRenderer):
|
||||||
)
|
)
|
||||||
return link
|
return link
|
||||||
|
|
||||||
def render_block_code(self, token: CodeFence) -> str:
|
def render_block_code(self, token: typing.Any) -> str:
|
||||||
lexer_attr = ""
|
|
||||||
try:
|
|
||||||
lexer = get_lexer(token.language)
|
|
||||||
lexer_attr = f' data-microblogpub-lexer="{lexer.aliases[0]}"'
|
|
||||||
except ClassNotFound:
|
|
||||||
pass
|
|
||||||
|
|
||||||
code = token.children[0].content
|
code = token.children[0].content
|
||||||
return f"<pre><code{lexer_attr}>\n{code}\n</code></pre>"
|
lexer = get_lexer(token.language) if token.language else guess_lexer(code)
|
||||||
|
return highlight(code, lexer, _FORMATTER)
|
||||||
|
|
||||||
|
|
||||||
async def _prefetch_mentioned_actors(
|
async def _prefetch_mentioned_actors(
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
function hasAudio (video) {
|
|
||||||
return video.mozHasAudio ||
|
|
||||||
Boolean(video.webkitAudioDecodedByteCount) ||
|
|
||||||
Boolean(video.audioTracks && video.audioTracks.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
function setVideoInGIFMode(video) {
|
|
||||||
if (!hasAudio(video)) {
|
|
||||||
if (typeof video.loop == 'boolean' && video.duration <= 10.0) {
|
|
||||||
video.classList.add("video-gif-mode");
|
|
||||||
video.loop = true;
|
|
||||||
video.controls = false;
|
|
||||||
video.addEventListener("mouseover", () => {
|
|
||||||
video.play();
|
|
||||||
})
|
|
||||||
video.addEventListener("mouseleave", () => {
|
|
||||||
video.pause();
|
|
||||||
})
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
var items = document.getElementsByTagName("video")
|
|
||||||
for (var i = 0; i < items.length; i++) {
|
|
||||||
if (items[i].duration) {
|
|
||||||
setVideoInGIFMode(items[i]);
|
|
||||||
} else {
|
|
||||||
items[i].addEventListener("loadeddata", function() {
|
|
||||||
setVideoInGIFMode(this);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -11,8 +11,8 @@
|
||||||
<ul class="h-feed" id="articles">
|
<ul class="h-feed" id="articles">
|
||||||
<data class="p-name" value="{{ local_actor.display_name}}'s articles"></data>
|
<data class="p-name" value="{{ local_actor.display_name}}'s articles"></data>
|
||||||
{% for outbox_object in objects %}
|
{% for outbox_object in objects %}
|
||||||
<li class="h-entry">
|
<li>
|
||||||
<time class="muted dt-published" datetime="{{ outbox_object.ap_published_at.isoformat() }}">{{ outbox_object.ap_published_at.strftime("%b %d, %Y") }}</time> <a href="{{ outbox_object.url }}" class="u-url u-uid p-name">{{ outbox_object.name }}</a>
|
<span class="muted">{{ outbox_object.ap_published_at.strftime("%b %d, %Y") }}</span> <a href="{{ outbox_object.url }}">{{ outbox_object.name }}</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -26,20 +26,15 @@
|
||||||
<div class="h-feed">
|
<div class="h-feed">
|
||||||
<data class="p-name" value="{{ local_actor.display_name}}'s notes"></data>
|
<data class="p-name" value="{{ local_actor.display_name}}'s notes"></data>
|
||||||
{% for outbox_object in objects %}
|
{% for outbox_object in objects %}
|
||||||
{% if outbox_object.ap_type in ["Note", "Video", "Question"] %}
|
{% if outbox_object.ap_type in ["Note", "Article", "Video", "Question"] %}
|
||||||
{{ utils.display_object(outbox_object) }}
|
{{ utils.display_object(outbox_object) }}
|
||||||
{% elif outbox_object.ap_type == "Announce" %}
|
{% elif outbox_object.ap_type == "Announce" %}
|
||||||
<div class="h-entry" id="{{ outbox_object.permalink_id }}">
|
<div class="shared-header"><strong>{{ utils.display_tiny_actor_icon(local_actor) }} {{ local_actor.display_name | clean_html(local_actor) | safe }}</strong> shared <span title="{{ outbox_object.ap_published_at.isoformat() }}">{{ outbox_object.ap_published_at | timeago }}</span></div>
|
||||||
<div class="shared-header"><strong><a class="p-author h-card" href="{{ local_actor.url }}">{{ utils.display_tiny_actor_icon(local_actor) }} {{ local_actor.display_name | clean_html(local_actor) | safe }}</a></strong> shared <span title="{{ outbox_object.ap_published_at.isoformat() }}">{{ outbox_object.ap_published_at | timeago }}</span></div>
|
{{ utils.display_object(outbox_object.relates_to_anybox_object) }}
|
||||||
<div class="h-cite u-repost-of">
|
|
||||||
{{ utils.display_object(outbox_object.relates_to_anybox_object, is_h_entry=False) }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% if has_previous_page or has_next_page %}
|
|
||||||
<div class="box">
|
<div class="box">
|
||||||
{% if has_previous_page %}
|
{% if has_previous_page %}
|
||||||
<a href="{{ url_for("index") }}?page={{ current_page - 1 }}">Previous</a>
|
<a href="{{ url_for("index") }}?page={{ current_page - 1 }}">Previous</a>
|
||||||
|
@ -49,7 +44,6 @@
|
||||||
<a href="{{ url_for("index") }}?page={{ current_page + 1 }}">Next</a>
|
<a href="{{ url_for("index") }}?page={{ current_page + 1 }}">Next</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% else %}
|
{% else %}
|
||||||
<div class="empty-state">
|
<div class="empty-state">
|
||||||
|
|
|
@ -10,12 +10,8 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="indieauth-details">
|
<div class="indieauth-details">
|
||||||
<div>
|
<div>
|
||||||
{% if client.url %}
|
<a class="lcolor" href="{{ client.url }}">{{ client.name }}</a>
|
||||||
<a class="scolor" href="{{ client.url }}">{{ client.name }}</a>
|
<p>wants you to login as <strong class="lcolor">{{ me }}</strong> with the following redirect URI: <code>{{ redirect_uri }}</code>.</p>
|
||||||
{% else %}
|
|
||||||
<span class="scolor">{{ client.name }}</span>
|
|
||||||
{% endif %}
|
|
||||||
<p>wants you to login{% if me %} as <strong class="lcolor">{{ me }}</strong>{% endif %} with the following redirect URI: <code>{{ redirect_uri }}</code>.</p>
|
|
||||||
|
|
||||||
|
|
||||||
<form method="POST" action="{{ url_for('indieauth_flow') }}" class="form">
|
<form method="POST" action="{{ url_for('indieauth_flow') }}" class="form">
|
||||||
|
|
|
@ -55,6 +55,5 @@
|
||||||
{% if is_admin %}
|
{% if is_admin %}
|
||||||
<script src="{{ BASE_URL }}/static/common-admin.js?v={{ JS_HASH }}"></script>
|
<script src="{{ BASE_URL }}/static/common-admin.js?v={{ JS_HASH }}"></script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<script src="{{ BASE_URL }}/static/common.js?v={{ JS_HASH }}"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
{% elif notif.notification_type.value == "unblock" %}
|
{% elif notif.notification_type.value == "unblock" %}
|
||||||
{{ notif_actor_action(notif, "was unblocked") }}
|
{{ notif_actor_action(notif, "was unblocked") }}
|
||||||
{{ utils.display_actor(notif.actor, actors_metadata) }}
|
{{ utils.display_actor(notif.actor, actors_metadata) }}
|
||||||
{%- elif notif.notification_type.value == "move" and notif.inbox_object %}
|
{%- elif notif.notification_type.value == "move" %}
|
||||||
{# for move notif, the actor is the target and the inbox object the Move activity #}
|
{# for move notif, the actor is the target and the inbox object the Move activity #}
|
||||||
<div class="actor-action">
|
<div class="actor-action">
|
||||||
<a href="{{ url_for("admin_profile") }}?actor_id={{ notif.inbox_object.actor.ap_id }}">
|
<a href="{{ url_for("admin_profile") }}?actor_id={{ notif.inbox_object.actor.ap_id }}">
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<meta content="article" property="og:type" />
|
<meta content="article" property="og:type" />
|
||||||
<meta content="{{ outbox_object.url }}" property="og:url" />
|
<meta content="{{ outbox_object.url }}" property="og:url" />
|
||||||
<meta content="{{ local_actor.display_name }}'s microblog" property="og:site_name" />
|
<meta content="{{ local_actor.display_name }}'s microblog" property="og:site_name" />
|
||||||
<meta content="{% if outbox_object.name %}{{ outbox_object.name }}{% else %}Note{% endif %}" property="og:title" />
|
<meta content="{% if outbox_object.name %}{{ name }}{% else %}Note{% endif %}" property="og:title" />
|
||||||
<meta content="{{ excerpt }}" property="og:description" />
|
<meta content="{{ excerpt }}" property="og:description" />
|
||||||
<meta content="{{ local_actor.icon_url }}" property="og:image" />
|
<meta content="{{ local_actor.icon_url }}" property="og:image" />
|
||||||
<meta content="summary" property="twitter:card" />
|
<meta content="summary" property="twitter:card" />
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
{%- import "utils.html" as utils with context -%}
|
|
||||||
{% extends "layout.html" %}
|
|
||||||
|
|
||||||
{% block head %}
|
|
||||||
<title>{{ local_actor.display_name }}'s microblog - Redirect</title>
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
{% include "header.html" %}
|
|
||||||
|
|
||||||
<div class="box">
|
|
||||||
<p>You are being redirected to: <a href="{{ url }}">{{ url }}</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% endblock %}
|
|
|
@ -32,29 +32,6 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro admin_hide_shares_button(actor) %}
|
|
||||||
{% block admin_hide_shares_button scoped %}
|
|
||||||
<form action="{{ request.url_for("admin_actions_hide_announces") }}" method="POST">
|
|
||||||
{{ embed_csrf_token() }}
|
|
||||||
{{ embed_redirect_url() }}
|
|
||||||
<input type="hidden" name="ap_actor_id" value="{{ actor.ap_id }}">
|
|
||||||
<input type="submit" value="hide shares">
|
|
||||||
</form>
|
|
||||||
{% endblock %}
|
|
||||||
{% endmacro %}
|
|
||||||
|
|
||||||
{% macro admin_show_shares_button(actor) %}
|
|
||||||
{% block admin_show_shares_button scoped %}
|
|
||||||
<form action="{{ request.url_for("admin_actions_show_announces") }}" method="POST">
|
|
||||||
{{ embed_csrf_token() }}
|
|
||||||
{{ embed_redirect_url() }}
|
|
||||||
<input type="hidden" name="ap_actor_id" value="{{ actor.ap_id }}">
|
|
||||||
<input type="submit" value="show shares">
|
|
||||||
</form>
|
|
||||||
{% endblock %}
|
|
||||||
{% endmacro %}
|
|
||||||
|
|
||||||
|
|
||||||
{% macro admin_follow_button(actor) %}
|
{% macro admin_follow_button(actor) %}
|
||||||
{% block admin_follow_button scoped %}
|
{% block admin_follow_button scoped %}
|
||||||
<form action="{{ request.url_for("admin_actions_follow") }}" method="POST">
|
<form action="{{ request.url_for("admin_actions_follow") }}" method="POST">
|
||||||
|
@ -270,7 +247,7 @@
|
||||||
|
|
||||||
{% macro display_tiny_actor_icon(actor) %}
|
{% macro display_tiny_actor_icon(actor) %}
|
||||||
{% block display_tiny_actor_icon scoped %}
|
{% block display_tiny_actor_icon scoped %}
|
||||||
<img class="tiny-actor-icon" src="{{ actor.resized_icon_url }}" alt="">
|
<img class="tiny-actor-icon" src="{{ actor.resized_icon_url }}" alt="{{ actor.display_name }}'s avatar">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
|
@ -365,11 +342,6 @@
|
||||||
<li>rejected</li>
|
<li>rejected</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if actor.are_announces_hidden_from_stream %}
|
|
||||||
<li>{{ admin_show_shares_button(actor) }}</li>
|
|
||||||
{% else %}
|
|
||||||
<li>{{ admin_hide_shares_button(actor) }}</li>
|
|
||||||
{% endif %}
|
|
||||||
{% if with_details %}
|
{% if with_details %}
|
||||||
<li><a href="{{ actor.url }}" class="label-btn">remote profile</a></li>
|
<li><a href="{{ actor.url }}" class="label-btn">remote profile</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -453,16 +425,13 @@
|
||||||
{% if attachment.type == "Image" or (attachment | has_media_type("image")) %}
|
{% if attachment.type == "Image" or (attachment | has_media_type("image")) %}
|
||||||
{% if attachment.url not in object.inlined_images %}
|
{% if attachment.url not in object.inlined_images %}
|
||||||
<a class="media-link" href="{{ attachment.proxied_url }}" target="_blank">
|
<a class="media-link" href="{{ attachment.proxied_url }}" target="_blank">
|
||||||
<img src="{{ attachment.resized_url or attachment.proxied_url }}"{% if attachment.name %} title="{{ attachment.name }}" alt="{{ attachment.name }}"{% endif %} class="attachment u-photo">
|
<img src="{{ attachment.resized_url or attachment.proxied_url }}"{% if attachment.name %} title="{{ attachment.name }}" alt="{{ attachment.name }}"{% endif %} class="attachment">
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% elif attachment.type == "Video" or (attachment | has_media_type("video")) %}
|
{% elif attachment.type == "Video" or (attachment | has_media_type("video")) %}
|
||||||
<div class="video-wrapper">
|
<video controls preload="metadata" src="{{ attachment.url | media_proxy_url }}"{% if attachment.name %} title="{{ attachment.name }}"{% endif %}></video>
|
||||||
<video controls preload="metadata" src="{{ attachment.url | media_proxy_url }}"{% if attachment.name %} title="{{ attachment.name }}"{% endif %} class="u-video"></video>
|
|
||||||
<div class="video-gif-overlay">GIF</div>
|
|
||||||
</div>
|
|
||||||
{% elif attachment.type == "Audio" or (attachment | has_media_type("audio")) %}
|
{% elif attachment.type == "Audio" or (attachment | has_media_type("audio")) %}
|
||||||
<audio controls preload="metadata" src="{{ attachment.url | media_proxy_url }}"{% if attachment.name%} title="{{ attachment.name }}"{% endif %} class="attachment u-audio"></audio>
|
<audio controls preload="metadata" src="{{ attachment.url | media_proxy_url }}"{% if attachment.name%} title="{{ attachment.name }}"{% endif %} class="attachment"></audio>
|
||||||
{% elif attachment.type == "Link" %}
|
{% elif attachment.type == "Link" %}
|
||||||
<a href="{{ attachment.url }}" class="attachment">{{ attachment.url | truncate(64, True) }}</a> ({{ attachment.mimetype}})
|
<a href="{{ attachment.url }}" class="attachment">{{ attachment.url | truncate(64, True) }}</a> ({{ attachment.mimetype}})
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -498,7 +467,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="in-reply-to">in reply to <a href="{{ wm_reply.in_reply_to }}" title="{{ wm_reply.in_reply_to }}" rel="nofollow">
|
<p class="in-reply-to">in reply to <a href="{{ wm_reply.in_reply_to }}" title="{{ wm_reply.in_reply_to }}" rel="nofollow">
|
||||||
this object
|
this note
|
||||||
</a></p>
|
</a></p>
|
||||||
|
|
||||||
<div class="obj-content margin-top-20">
|
<div class="obj-content margin-top-20">
|
||||||
|
@ -545,7 +514,7 @@
|
||||||
|
|
||||||
{% if object.in_reply_to %}
|
{% if object.in_reply_to %}
|
||||||
<p class="in-reply-to">in reply to <a href="{% if is_admin and object.is_in_reply_to_from_inbox %}{{ url_for("get_lookup") }}?query={% endif %}{{ object.in_reply_to }}" title="{{ object.in_reply_to }}" rel="nofollow">
|
<p class="in-reply-to">in reply to <a href="{% if is_admin and object.is_in_reply_to_from_inbox %}{{ url_for("get_lookup") }}?query={% endif %}{{ object.in_reply_to }}" title="{{ object.in_reply_to }}" rel="nofollow">
|
||||||
this object
|
this {{ object.ap_type|lower }}
|
||||||
</a></p>
|
</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -580,13 +549,12 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if object.summary %}
|
{% if object.summary %}
|
||||||
<details class="show-more-wrapper">
|
<div class="show-more-wrapper">
|
||||||
<summary>
|
|
||||||
<div class="p-summary">
|
<div class="p-summary">
|
||||||
<p>{{ object.summary | clean_html(object) | safe }}</p>
|
<p>{{ object.summary | clean_html(object) | safe }}</p>
|
||||||
</div>
|
</div>
|
||||||
<span class="show-more-btn" aria-hidden="true"></span>
|
<label for="show-more-{{ object.permalink_id }}" class="show-more-btn">show/hide more</label>
|
||||||
</summary>
|
<input class="show-more-state" type="checkbox" aria-hidden="true" id="show-more-{{ object.permalink_id }}" checked>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="obj-content">
|
<div class="obj-content">
|
||||||
<div class="e-content">
|
<div class="e-content">
|
||||||
|
@ -647,7 +615,7 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{% if object.summary %}
|
{% if object.summary %}
|
||||||
</details>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="activity-attachment">
|
<div class="activity-attachment">
|
||||||
|
@ -782,7 +750,7 @@
|
||||||
{{ admin_expand_button(object) }}
|
{{ admin_expand_button(object) }}
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if object.is_from_inbox and not object.announced_via_outbox_object_ap_id and object.is_local_reply %}
|
{% if object.is_from_inbox and not object.announced_via_outbox_object_ap_id %}
|
||||||
<li>
|
<li>
|
||||||
{{ admin_force_delete_button(object.ap_id) }}
|
{{ admin_force_delete_button(object.ap_id) }}
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -60,7 +60,7 @@ async def save_upload(db_session: AsyncSession, f: UploadFile) -> models.Upload:
|
||||||
destination_image.putdata(original_image.getdata())
|
destination_image.putdata(original_image.getdata())
|
||||||
destination_image.save(
|
destination_image.save(
|
||||||
dest_filename,
|
dest_filename,
|
||||||
format=_original_image.format, # type: ignore
|
format=_original_image.format,
|
||||||
)
|
)
|
||||||
|
|
||||||
with open(dest_filename, "rb") as dest_f:
|
with open(dest_filename, "rb") as dest_f:
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
import datetime
|
import datetime
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from datetime import timezone
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
|
@ -10,7 +9,7 @@ from app import media
|
||||||
from app.models import InboxObject
|
from app.models import InboxObject
|
||||||
from app.models import Webmention
|
from app.models import Webmention
|
||||||
from app.utils.datetime import parse_isoformat
|
from app.utils.datetime import parse_isoformat
|
||||||
from app.utils.url import must_make_abs
|
from app.utils.url import make_abs
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
|
@ -40,15 +39,13 @@ class Face:
|
||||||
return cls(
|
return cls(
|
||||||
ap_actor_id=None,
|
ap_actor_id=None,
|
||||||
url=(
|
url=(
|
||||||
must_make_abs(
|
item["properties"]["url"][0]
|
||||||
item["properties"]["url"][0], webmention.source
|
|
||||||
)
|
|
||||||
if item["properties"].get("url")
|
if item["properties"].get("url")
|
||||||
else webmention.source
|
else webmention.source
|
||||||
),
|
),
|
||||||
name=item["properties"]["name"][0],
|
name=item["properties"]["name"][0],
|
||||||
picture_url=media.resized_media_url(
|
picture_url=media.resized_media_url(
|
||||||
must_make_abs(
|
make_abs(
|
||||||
item["properties"]["photo"][0], webmention.source
|
item["properties"]["photo"][0], webmention.source
|
||||||
), # type: ignore
|
), # type: ignore
|
||||||
50,
|
50,
|
||||||
|
@ -68,7 +65,7 @@ class Face:
|
||||||
url=webmention.source,
|
url=webmention.source,
|
||||||
name=author["properties"]["name"][0],
|
name=author["properties"]["name"][0],
|
||||||
picture_url=media.resized_media_url(
|
picture_url=media.resized_media_url(
|
||||||
must_make_abs(
|
make_abs(
|
||||||
author["properties"]["photo"][0], webmention.source
|
author["properties"]["photo"][0], webmention.source
|
||||||
), # type: ignore
|
), # type: ignore
|
||||||
50,
|
50,
|
||||||
|
@ -99,13 +96,13 @@ def _parse_face(webmention: Webmention, items: list[dict[str, Any]]) -> Face | N
|
||||||
return Face(
|
return Face(
|
||||||
ap_actor_id=None,
|
ap_actor_id=None,
|
||||||
url=(
|
url=(
|
||||||
must_make_abs(item["properties"]["url"][0], webmention.source)
|
item["properties"]["url"][0]
|
||||||
if item["properties"].get("url")
|
if item["properties"].get("url")
|
||||||
else webmention.source
|
else webmention.source
|
||||||
),
|
),
|
||||||
name=item["properties"]["name"][0],
|
name=item["properties"]["name"][0],
|
||||||
picture_url=media.resized_media_url(
|
picture_url=media.resized_media_url(
|
||||||
must_make_abs(
|
make_abs(
|
||||||
item["properties"]["photo"][0], webmention.source
|
item["properties"]["photo"][0], webmention.source
|
||||||
), # type: ignore
|
), # type: ignore
|
||||||
50,
|
50,
|
||||||
|
@ -143,23 +140,13 @@ class WebmentionReply:
|
||||||
f"webmention id={webmention.id}"
|
f"webmention id={webmention.id}"
|
||||||
)
|
)
|
||||||
break
|
break
|
||||||
|
|
||||||
if "published" in item["properties"]:
|
|
||||||
published_at = (
|
|
||||||
parse_isoformat(item["properties"]["published"][0])
|
|
||||||
.astimezone(timezone.utc)
|
|
||||||
.replace(tzinfo=None)
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
published_at = webmention.created_at # type: ignore
|
|
||||||
|
|
||||||
return cls(
|
return cls(
|
||||||
face=face,
|
face=face,
|
||||||
content=item["properties"]["content"][0]["html"],
|
content=item["properties"]["content"][0]["html"],
|
||||||
url=must_make_abs(
|
url=item["properties"]["url"][0],
|
||||||
item["properties"]["url"][0], webmention.source
|
published_at=parse_isoformat(
|
||||||
),
|
item["properties"]["published"][0]
|
||||||
published_at=published_at,
|
).replace(tzinfo=None),
|
||||||
in_reply_to=webmention.target, # type: ignore
|
in_reply_to=webmention.target, # type: ignore
|
||||||
webmention_id=webmention.id, # type: ignore
|
webmention_id=webmention.id, # type: ignore
|
||||||
)
|
)
|
||||||
|
|
|
@ -32,11 +32,15 @@ def highlight(html: str) -> str:
|
||||||
|
|
||||||
# If this comes from a microblog.pub instance we may have the language
|
# If this comes from a microblog.pub instance we may have the language
|
||||||
# in the class name
|
# in the class name
|
||||||
if "data-microblogpub-lexer" in code.attrs:
|
if "class" in code.attrs and code.attrs["class"][0].startswith("language-"):
|
||||||
try:
|
try:
|
||||||
lexer = get_lexer_by_name(code.attrs["data-microblogpub-lexer"])
|
lexer = get_lexer_by_name(
|
||||||
|
code.attrs["class"][0].removeprefix("language-")
|
||||||
|
)
|
||||||
except Exception:
|
except Exception:
|
||||||
lexer = guess_lexer(code_content)
|
lexer = guess_lexer(code_content)
|
||||||
|
else:
|
||||||
|
lexer = guess_lexer(code_content)
|
||||||
|
|
||||||
# Replace the code with Pygment output
|
# Replace the code with Pygment output
|
||||||
# XXX: the HTML escaping causes issue with Python type annotations
|
# XXX: the HTML escaping causes issue with Python type annotations
|
||||||
|
@ -46,8 +50,5 @@ def highlight(html: str) -> str:
|
||||||
phighlight(code_content, lexer, _FORMATTER), "html5lib"
|
phighlight(code_content, lexer, _FORMATTER), "html5lib"
|
||||||
).body.next
|
).body.next
|
||||||
)
|
)
|
||||||
else:
|
|
||||||
code.name = "div"
|
|
||||||
code["class"] = code.get("class", []) + ["highlight"]
|
|
||||||
|
|
||||||
return soup.body.encode_contents().decode()
|
return soup.body.encode_contents().decode()
|
||||||
|
|
|
@ -10,7 +10,7 @@ from app.utils.url import make_abs
|
||||||
class IndieAuthClient:
|
class IndieAuthClient:
|
||||||
logo: str | None
|
logo: str | None
|
||||||
name: str
|
name: str
|
||||||
url: str | None
|
url: str
|
||||||
|
|
||||||
|
|
||||||
def _get_prop(props: dict[str, Any], name: str, default=None) -> Any:
|
def _get_prop(props: dict[str, Any], name: str, default=None) -> Any:
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from loguru import logger
|
|
||||||
|
|
||||||
from app.webfinger import get_actor_url
|
|
||||||
|
|
||||||
|
|
||||||
def _load_mastodon_following_accounts_csv_file(path: str) -> list[str]:
|
|
||||||
handles = []
|
|
||||||
for line in Path(path).read_text().splitlines()[1:]:
|
|
||||||
handle = line.split(",")[0]
|
|
||||||
handles.append(handle)
|
|
||||||
|
|
||||||
return handles
|
|
||||||
|
|
||||||
|
|
||||||
async def get_actor_urls_from_following_accounts_csv_file(
|
|
||||||
path: str,
|
|
||||||
) -> list[tuple[str, str]]:
|
|
||||||
actor_urls = []
|
|
||||||
for handle in _load_mastodon_following_accounts_csv_file(path):
|
|
||||||
try:
|
|
||||||
actor_url = await get_actor_url(handle)
|
|
||||||
except Exception:
|
|
||||||
logger.error("Failed to fetch actor URL for {handle=}")
|
|
||||||
else:
|
|
||||||
if actor_url:
|
|
||||||
actor_urls.append((handle, actor_url))
|
|
||||||
else:
|
|
||||||
logger.info(f"No actor URL found for {handle=}")
|
|
||||||
|
|
||||||
return actor_urls
|
|
|
@ -62,13 +62,6 @@ def _scrap_og_meta(url: str, html: str) -> OpenGraphMeta | None:
|
||||||
if u := raw.get(maybe_rel):
|
if u := raw.get(maybe_rel):
|
||||||
raw[maybe_rel] = make_abs(u, url)
|
raw[maybe_rel] = make_abs(u, url)
|
||||||
|
|
||||||
if not is_url_valid(raw[maybe_rel]):
|
|
||||||
logger.info(f"Invalid url {raw[maybe_rel]}")
|
|
||||||
if maybe_rel == "url":
|
|
||||||
raw["url"] = url
|
|
||||||
elif maybe_rel == "image":
|
|
||||||
raw["image"] = None
|
|
||||||
|
|
||||||
return OpenGraphMeta.parse_obj(raw)
|
return OpenGraphMeta.parse_obj(raw)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -21,13 +21,6 @@ def make_abs(url: str | None, parent: str) -> str | None:
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def must_make_abs(url: str | None, parent: str) -> str:
|
|
||||||
abs_url = make_abs(url, parent)
|
|
||||||
if not abs_url:
|
|
||||||
raise ValueError("missing URL")
|
|
||||||
return abs_url
|
|
||||||
|
|
||||||
|
|
||||||
class InvalidURLError(Exception):
|
class InvalidURLError(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -61,7 +54,7 @@ def is_url_valid(url: str) -> bool:
|
||||||
if not parsed.hostname or parsed.hostname.lower() in ["localhost"]:
|
if not parsed.hostname or parsed.hostname.lower() in ["localhost"]:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if is_hostname_blocked(parsed.hostname):
|
if parsed.hostname in BLOCKED_SERVERS:
|
||||||
logger.warning(f"{parsed.hostname} is blocked")
|
logger.warning(f"{parsed.hostname} is blocked")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@ -88,11 +81,3 @@ def check_url(url: str) -> None:
|
||||||
raise InvalidURLError(f'"{url}" is invalid')
|
raise InvalidURLError(f'"{url}" is invalid')
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
@functools.lru_cache(maxsize=256)
|
|
||||||
def is_hostname_blocked(hostname: str) -> bool:
|
|
||||||
for blocked_hostname in BLOCKED_SERVERS:
|
|
||||||
if hostname == blocked_hostname or hostname.endswith(f".{blocked_hostname}"):
|
|
||||||
return True
|
|
||||||
return False
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ async def _discover_webmention_endoint(url: str) -> str | None:
|
||||||
follow_redirects=True,
|
follow_redirects=True,
|
||||||
)
|
)
|
||||||
resp.raise_for_status()
|
resp.raise_for_status()
|
||||||
except Exception:
|
except (httpx.HTTPError, httpx.HTTPStatusError):
|
||||||
logger.exception(f"Failed to discover webmention endpoint for {url}")
|
logger.exception(f"Failed to discover webmention endpoint for {url}")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import xml.etree.ElementTree as ET
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
from urllib.parse import urlparse
|
from urllib.parse import urlparse
|
||||||
|
|
||||||
|
@ -9,85 +8,33 @@ from app import config
|
||||||
from app.utils.url import check_url
|
from app.utils.url import check_url
|
||||||
|
|
||||||
|
|
||||||
async def get_webfinger_via_host_meta(host: str) -> str | None:
|
|
||||||
resp: httpx.Response | None = None
|
|
||||||
is_404 = False
|
|
||||||
async with httpx.AsyncClient() as client:
|
|
||||||
for i, proto in enumerate({"http", "https"}):
|
|
||||||
try:
|
|
||||||
url = f"{proto}://{host}/.well-known/host-meta"
|
|
||||||
check_url(url)
|
|
||||||
resp = await client.get(
|
|
||||||
url,
|
|
||||||
headers={
|
|
||||||
"User-Agent": config.USER_AGENT,
|
|
||||||
},
|
|
||||||
follow_redirects=True,
|
|
||||||
)
|
|
||||||
resp.raise_for_status()
|
|
||||||
break
|
|
||||||
except httpx.HTTPStatusError as http_error:
|
|
||||||
logger.exception("HTTP error")
|
|
||||||
if http_error.response.status_code in [403, 404, 410]:
|
|
||||||
is_404 = True
|
|
||||||
continue
|
|
||||||
raise
|
|
||||||
except httpx.HTTPError:
|
|
||||||
logger.exception("req failed")
|
|
||||||
# If we tried https first and the domain is "http only"
|
|
||||||
if i == 0:
|
|
||||||
continue
|
|
||||||
break
|
|
||||||
|
|
||||||
if is_404:
|
|
||||||
return None
|
|
||||||
|
|
||||||
if resp:
|
|
||||||
tree = ET.fromstring(resp.text)
|
|
||||||
maybe_link = tree.find(
|
|
||||||
"./{http://docs.oasis-open.org/ns/xri/xrd-1.0}Link[@rel='lrdd']"
|
|
||||||
)
|
|
||||||
if maybe_link is not None:
|
|
||||||
return maybe_link.attrib.get("template")
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
async def webfinger(
|
async def webfinger(
|
||||||
resource: str,
|
resource: str,
|
||||||
webfinger_url: str | None = None,
|
|
||||||
) -> dict[str, Any] | None: # noqa: C901
|
) -> dict[str, Any] | None: # noqa: C901
|
||||||
"""Mastodon-like WebFinger resolution to retrieve the activity stream Actor URL."""
|
"""Mastodon-like WebFinger resolution to retrieve the activity stream Actor URL."""
|
||||||
resource = resource.strip()
|
resource = resource.strip()
|
||||||
logger.info(f"performing webfinger resolution for {resource}")
|
logger.info(f"performing webfinger resolution for {resource}")
|
||||||
urls = []
|
protos = ["https", "http"]
|
||||||
host = None
|
|
||||||
if webfinger_url:
|
|
||||||
urls = [webfinger_url]
|
|
||||||
else:
|
|
||||||
if resource.startswith("http://"):
|
if resource.startswith("http://"):
|
||||||
|
protos.reverse()
|
||||||
host = urlparse(resource).netloc
|
host = urlparse(resource).netloc
|
||||||
url = f"http://{host}/.well-known/webfinger"
|
|
||||||
elif resource.startswith("https://"):
|
elif resource.startswith("https://"):
|
||||||
host = urlparse(resource).netloc
|
host = urlparse(resource).netloc
|
||||||
url = f"https://{host}/.well-known/webfinger"
|
|
||||||
else:
|
else:
|
||||||
protos = ["https", "http"]
|
|
||||||
_, host = resource.split("@", 1)
|
|
||||||
urls = [f"{proto}://{host}/.well-known/webfinger" for proto in protos]
|
|
||||||
|
|
||||||
if resource.startswith("acct:"):
|
if resource.startswith("acct:"):
|
||||||
resource = resource[5:]
|
resource = resource[5:]
|
||||||
if resource.startswith("@"):
|
if resource.startswith("@"):
|
||||||
resource = resource[1:]
|
resource = resource[1:]
|
||||||
|
_, host = resource.split("@", 1)
|
||||||
resource = "acct:" + resource
|
resource = "acct:" + resource
|
||||||
|
|
||||||
is_404 = False
|
is_404 = False
|
||||||
|
|
||||||
resp: httpx.Response | None = None
|
resp: httpx.Response | None = None
|
||||||
async with httpx.AsyncClient() as client:
|
async with httpx.AsyncClient() as client:
|
||||||
for i, url in enumerate(urls):
|
for i, proto in enumerate(protos):
|
||||||
try:
|
try:
|
||||||
|
url = f"{proto}://{host}/.well-known/webfinger"
|
||||||
check_url(url)
|
check_url(url)
|
||||||
resp = await client.get(
|
resp = await client.get(
|
||||||
url,
|
url,
|
||||||
|
@ -111,14 +58,7 @@ async def webfinger(
|
||||||
if i == 0:
|
if i == 0:
|
||||||
continue
|
continue
|
||||||
break
|
break
|
||||||
|
|
||||||
if is_404:
|
if is_404:
|
||||||
if not webfinger_url and host:
|
|
||||||
if webfinger_url := (await get_webfinger_via_host_meta(host)):
|
|
||||||
return await webfinger(
|
|
||||||
resource,
|
|
||||||
webfinger_url=webfinger_url,
|
|
||||||
)
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
if resp:
|
if resp:
|
||||||
|
|
|
@ -17,7 +17,6 @@ from app.boxes import _get_outbox_likes_count
|
||||||
from app.boxes import _get_outbox_replies_count
|
from app.boxes import _get_outbox_replies_count
|
||||||
from app.boxes import get_outbox_object_by_ap_id
|
from app.boxes import get_outbox_object_by_ap_id
|
||||||
from app.boxes import get_outbox_object_by_slug_and_short_id
|
from app.boxes import get_outbox_object_by_slug_and_short_id
|
||||||
from app.boxes import is_notification_enabled
|
|
||||||
from app.database import AsyncSession
|
from app.database import AsyncSession
|
||||||
from app.database import get_db_session
|
from app.database import get_db_session
|
||||||
from app.utils import microformats
|
from app.utils import microformats
|
||||||
|
@ -119,7 +118,6 @@ async def webmention_endpoint(
|
||||||
db_session, existing_webmention_in_db, mentioned_object
|
db_session, existing_webmention_in_db, mentioned_object
|
||||||
)
|
)
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.DELETED_WEBMENTION):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.DELETED_WEBMENTION,
|
notification_type=models.NotificationType.DELETED_WEBMENTION,
|
||||||
outbox_object_id=mentioned_object.id,
|
outbox_object_id=mentioned_object.id,
|
||||||
|
@ -146,7 +144,6 @@ async def webmention_endpoint(
|
||||||
await db_session.flush()
|
await db_session.flush()
|
||||||
webmention = existing_webmention_in_db
|
webmention = existing_webmention_in_db
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.UPDATED_WEBMENTION):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.UPDATED_WEBMENTION,
|
notification_type=models.NotificationType.UPDATED_WEBMENTION,
|
||||||
outbox_object_id=mentioned_object.id,
|
outbox_object_id=mentioned_object.id,
|
||||||
|
@ -165,7 +162,6 @@ async def webmention_endpoint(
|
||||||
await db_session.flush()
|
await db_session.flush()
|
||||||
webmention = new_webmention
|
webmention = new_webmention
|
||||||
|
|
||||||
if is_notification_enabled(models.NotificationType.NEW_WEBMENTION):
|
|
||||||
notif = models.Notification(
|
notif = models.Notification(
|
||||||
notification_type=models.NotificationType.NEW_WEBMENTION,
|
notification_type=models.NotificationType.NEW_WEBMENTION,
|
||||||
outbox_object_id=mentioned_object.id,
|
outbox_object_id=mentioned_object.id,
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
// override vars for theming here
|
|
|
@ -191,68 +191,6 @@ http {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## (Advanced) Running on a subdomain
|
|
||||||
|
|
||||||
It is possible to run microblogpub on a subdomain (`sub.domain.tld`) while being reachable from the root root domain (`domain.tld`) using the `name@domain.tld` handle.
|
|
||||||
|
|
||||||
This requires forwarding/proxying requests from the root domain to the subdomain, for example using NGINX:
|
|
||||||
|
|
||||||
```nginx
|
|
||||||
location /.well-known/webfinger {
|
|
||||||
add_header Access-Control-Allow-Origin '*';
|
|
||||||
return 301 https://sub.domain.tld$request_uri;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
And updating `data/profile.toml` to specify the root domain as the webfinger domain:
|
|
||||||
|
|
||||||
```toml
|
|
||||||
webfinger_domain = "domain.tld"
|
|
||||||
```
|
|
||||||
|
|
||||||
Once configured correctly, people will be able to follow you using `name@domain.tld`, while using `sub.domain.tld` for the web interface.
|
|
||||||
|
|
||||||
|
|
||||||
## (Advanced) Running from subpath
|
|
||||||
|
|
||||||
It is possible to configure microblogpub to run from subpath.
|
|
||||||
To achieve this, do the following configuration _between_ config and start steps.
|
|
||||||
i.e. _after_ you run `make config` or `poetry run inv configuration-wizard`,
|
|
||||||
but _before_ you run `docker compose up` or `poetry run supervisord`.
|
|
||||||
Changing this settings on an instance which has some posts or was seen by other instances will likely break links to these posts or federation (i.e. links to your instance, posts and profile from other instances).
|
|
||||||
|
|
||||||
The following steps will explain how to configure instance to be available at `https://example.com/subdir`.
|
|
||||||
Change them to your actual domain and subdir.
|
|
||||||
|
|
||||||
* Edit `data/profile.toml` file, add this line:
|
|
||||||
|
|
||||||
id = "https://example.com/subdir"
|
|
||||||
|
|
||||||
* Edit `misc/*-supervisord.conf` file which is relevant to you (it depends on how you start microblogpub - if in doubt, do the same change in all of them) - in `[program:uvicorn]` section, in the line which starts with `command`, add this argument at the very end: ` --root-path /subdir`
|
|
||||||
|
|
||||||
Above two steps are enough to configure microblogpub.
|
|
||||||
Next, you also need to configure reverse proxy.
|
|
||||||
It might slightly differ if you plan to have other services running on the same domain, but for [NGINX config shown above](#reverse-proxy), the following changes are enough:
|
|
||||||
|
|
||||||
* Add subdir to location, so location block starts like this:
|
|
||||||
|
|
||||||
location /subdir {
|
|
||||||
|
|
||||||
* Add `/` at the end of `proxy_pass` directive, like this:
|
|
||||||
|
|
||||||
proxy_pass http://localhost:8000/;
|
|
||||||
|
|
||||||
These two changes will instruct NGINX that requests sent to `https://example.com/subdir/...` should be forwarded to `http://localhost:8000/...`.
|
|
||||||
|
|
||||||
* Inside `server` block, add redirects for well-known URLs (add these lines after `client_max_body_size`, remember to replace `subdir` with your actual subdir!):
|
|
||||||
|
|
||||||
location /.well-known/webfinger { return 301 /subdir$request_uri; }
|
|
||||||
location /.well-known/nodeinfo { return 301 /subdir$request_uri; }
|
|
||||||
location /.well-known/oauth-authorization-server { return 301 /subdir$request_uri; }
|
|
||||||
|
|
||||||
* Optionally, [check robots.txt from a running microblogpub instance](https://microblog.pub/robots.txt) and integrate it into robots.txt file in the root of your server - remember to prepend `subdir` to URLs, so for example `Disallow: /admin` becomes `Disallow: /subdir/admin`.
|
|
||||||
|
|
||||||
## YunoHost edition
|
## YunoHost edition
|
||||||
|
|
||||||
[YunoHost](https://yunohost.org/) support is available (although it is not an official package for now): <https://git.sr.ht/~tsileo/microblog.pub_ynh>.
|
[YunoHost](https://yunohost.org/) support is available (although it is not an official package for now): <https://git.sr.ht/~tsileo/microblog.pub_ynh>.
|
||||||
|
|
|
@ -25,10 +25,9 @@ As these two config items define your ActivityPub handle `@handle@domain`.
|
||||||
|
|
||||||
You can tweak your profile by tweaking these items:
|
You can tweak your profile by tweaking these items:
|
||||||
|
|
||||||
- `name`: The name shown with your profile.
|
- `name`
|
||||||
- `summary`: The summary or 'bio' part of your profile, written in Markdown.
|
- `summary` (using Markdown)
|
||||||
- `icon_url`: Your profile image or avatar.
|
- `icon_url`
|
||||||
- `image_url`: This provides a 'header' or 'banner' image. Note that it is not shown by the default Microblog.pub templates. It will be used by Mastodon (which uses a 3:1 ratio image) and Pleroma. Pixelfed and Peertube, for example, don't show these images by default.
|
|
||||||
|
|
||||||
Whenever one of these config items is updated, an `Update` activity will be sent to all known servers to update your remote profile.
|
Whenever one of these config items is updated, an `Update` activity will be sent to all known servers to update your remote profile.
|
||||||
|
|
||||||
|
@ -36,15 +35,6 @@ The server will need to be restarted for taking changes into account.
|
||||||
|
|
||||||
Before restarting the server, you can ensure you haven't made any mistakes by running the [configuration checking task](/user_guide.html#configuration-checking).
|
Before restarting the server, you can ensure you haven't made any mistakes by running the [configuration checking task](/user_guide.html#configuration-checking).
|
||||||
|
|
||||||
Note that currently `image_url` is not used anywhere in microblog.pub itself, but other clients/servers do occasionally use it when showing remote profiles as a background image.
|
|
||||||
Also, this image _can_ be used in microblog.pub - just add this:
|
|
||||||
|
|
||||||
```html
|
|
||||||
<img src="{{ local_actor.image_url | media_proxy_url }}">
|
|
||||||
```
|
|
||||||
|
|
||||||
to an appropriate place of your template (most likely, `header.html`).
|
|
||||||
For more information, see a section about [custom templates](/user_guide.html#custom-templates) further in this document.
|
|
||||||
|
|
||||||
### Profile metadata
|
### Profile metadata
|
||||||
|
|
||||||
|
@ -108,39 +98,6 @@ privacy_replace = [
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
|
|
||||||
### Disabling certain notification types
|
|
||||||
|
|
||||||
All notifications are enabled by default.
|
|
||||||
|
|
||||||
You can disabled specific notifications by adding them to the `disabled_notifications` list.
|
|
||||||
|
|
||||||
This example disables likes and shares notifications:
|
|
||||||
|
|
||||||
```
|
|
||||||
disabled_notifications = ["like", "announce"]
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Available notification types
|
|
||||||
|
|
||||||
- `new_follower`
|
|
||||||
- `rejected_follower`
|
|
||||||
- `unfollow`
|
|
||||||
- `follow_request_accepted`
|
|
||||||
- `follow_request_rejected`
|
|
||||||
- `move`
|
|
||||||
- `like`
|
|
||||||
- `undo_like`
|
|
||||||
- `announce`
|
|
||||||
- `undo_announce`
|
|
||||||
- `mention`
|
|
||||||
- `new_webmention`
|
|
||||||
- `updated_webmention`
|
|
||||||
- `deleted_webmention`
|
|
||||||
- `blocked`
|
|
||||||
- `unblocked`
|
|
||||||
- `block`
|
|
||||||
- `unblock`
|
|
||||||
|
|
||||||
### Customization
|
### Customization
|
||||||
|
|
||||||
#### Default emoji
|
#### Default emoji
|
||||||
|
@ -171,35 +128,10 @@ $secondary-color: #32cd32;
|
||||||
|
|
||||||
See `app/scss/main.scss` to see what variables can be overridden.
|
See `app/scss/main.scss` to see what variables can be overridden.
|
||||||
|
|
||||||
You will need to [recompile CSS](#recompiling-css-files) after doing any CSS changes (for actual css files to be updates) and restart microblog.pub (for css link in HTML documents to be updated with a new checksum - otherwise, browsers that downloaded old CSS will keep using it).
|
|
||||||
|
|
||||||
#### Custom favicon
|
|
||||||
|
|
||||||
By default, microblog.pub favicon is a square of `$primary-color` CSS color (see above section on how to redefine CSS colors).
|
|
||||||
You can change it to any icon you like - just save a desired file as `data/favicon.ico`.
|
|
||||||
After that, run the "[recompile CSS](#recompiling-css-files)" task to copy it to `app/static/favicon.ico`.
|
|
||||||
|
|
||||||
#### Custom templates
|
#### Custom templates
|
||||||
|
|
||||||
If you'd like to customize your instance's theme beyond CSS, you can modify the app's HTML by placing templates in `data/templates` which overwrite the defaults in `app/templates`.
|
If you'd like to customize your instance's theme beyond CSS, you can modify the app's HTML by placing templates in `data/templates` which overwrite the defaults in `app/templates`.
|
||||||
|
|
||||||
Templates are written using [Jinja](https://jinja.palletsprojects.com/en/latest/templates/) templating language.
|
|
||||||
Moreover, `utils.html` has scoped blocks around the body of every macro.
|
|
||||||
This allows macros to be overridden individually in `data/templates/utils.html`, without copying the whole file.
|
|
||||||
For example, to only override the display of a specific actor's name/icon, you can create `data/templates/utils.html` file with following content:
|
|
||||||
|
|
||||||
```jinja
|
|
||||||
{% extends "app/utils.html" %}
|
|
||||||
|
|
||||||
{% block display_actor %}
|
|
||||||
{% if actor.ap_id == "https://me.example.com" %}
|
|
||||||
<!-- custom actor display -->
|
|
||||||
{% else %}
|
|
||||||
{{ super() }}
|
|
||||||
{% endif %}
|
|
||||||
{% endblock %}
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Custom Content Security Policy (CSP)
|
#### Custom Content Security Policy (CSP)
|
||||||
|
|
||||||
You can override the default Content Security Policy by adding a line in `data/profile.toml`:
|
You can override the default Content Security Policy by adding a line in `data/profile.toml`:
|
||||||
|
@ -355,7 +287,7 @@ First you need to grab the "ActivityPub actor URL" for your existing account:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# For a Python install
|
# For a Python install
|
||||||
poetry run inv webfinger username@instance-you-want-to-move-from.tld
|
poetry run inv webfinger username@domain.tld
|
||||||
```
|
```
|
||||||
|
|
||||||
Edit the config.
|
Edit the config.
|
||||||
|
@ -364,7 +296,7 @@ Edit the config.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# For a Docker install
|
# For a Docker install
|
||||||
make account=username@instance-you-want-to-move-from.tld webfinger
|
make account=username@domain.tld webfinger
|
||||||
```
|
```
|
||||||
|
|
||||||
Edit the config.
|
Edit the config.
|
||||||
|
@ -374,35 +306,11 @@ Edit the config.
|
||||||
And add a reference to your old/existing account in `profile.toml`:
|
And add a reference to your old/existing account in `profile.toml`:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
also_known_as = "https://instance-you-want-to-move-form.tld/users/username"
|
also_known_as = "my@old-account.com"
|
||||||
```
|
```
|
||||||
|
|
||||||
Restart the server, and you should be able to complete the move from your existing account.
|
Restart the server, and you should be able to complete the move from your existing account.
|
||||||
|
|
||||||
Note that if you already have a redirect in place on Mastodon, you may have to remove it before initiating the migration.
|
|
||||||
|
|
||||||
## Import follows from Mastodon
|
|
||||||
|
|
||||||
You can import the list of follows/following accounts from Mastodon.
|
|
||||||
|
|
||||||
It requires downloading the "Follows" CSV file from your Mastodon instance via "Settings" / "Import and export" / "Data export".
|
|
||||||
|
|
||||||
Then you need to run the import task:
|
|
||||||
|
|
||||||
### Python edition
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# For a Python install
|
|
||||||
poetry run inv import-mastodon-following-accounts following_accounts.csv
|
|
||||||
```
|
|
||||||
|
|
||||||
### Docker edition
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# For a Docker install
|
|
||||||
make path=following_accounts.csv import-mastodon-following-accounts
|
|
||||||
```
|
|
||||||
|
|
||||||
## Tasks
|
## Tasks
|
||||||
|
|
||||||
### Configuration checking
|
### Configuration checking
|
||||||
|
|
3605
poetry.lock
generated
3605
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -14,7 +14,7 @@ bcrypt = "^3.2.2"
|
||||||
itsdangerous = "^2.1.2"
|
itsdangerous = "^2.1.2"
|
||||||
python-multipart = "^0.0.5"
|
python-multipart = "^0.0.5"
|
||||||
tomli = "^2.0.1"
|
tomli = "^2.0.1"
|
||||||
httpx = {version = "0.23.0", extras = ["http2"]}
|
httpx = {extras = ["http2"], version = "^0.23.0"}
|
||||||
SQLAlchemy = {extras = ["asyncio"], version = "^1.4.39"}
|
SQLAlchemy = {extras = ["asyncio"], version = "^1.4.39"}
|
||||||
alembic = "^1.8.0"
|
alembic = "^1.8.0"
|
||||||
bleach = "^5.0.0"
|
bleach = "^5.0.0"
|
||||||
|
|
|
@ -25,6 +25,10 @@ def _(event):
|
||||||
|
|
||||||
|
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
|
theme_file = Path("data/_theme.scss")
|
||||||
|
if not theme_file.exists():
|
||||||
|
theme_file.write_text("// override vars for theming here")
|
||||||
|
|
||||||
print("Welcome to microblog.pub setup wizard\n")
|
print("Welcome to microblog.pub setup wizard\n")
|
||||||
print("Generating key...")
|
print("Generating key...")
|
||||||
if _KEY_PATH.exists():
|
if _KEY_PATH.exists():
|
||||||
|
|
77
tasks.py
77
tasks.py
|
@ -2,49 +2,17 @@ import asyncio
|
||||||
import io
|
import io
|
||||||
import shutil
|
import shutil
|
||||||
import tarfile
|
import tarfile
|
||||||
from collections import namedtuple
|
|
||||||
from contextlib import contextmanager
|
from contextlib import contextmanager
|
||||||
from inspect import getfullargspec
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Generator
|
from typing import Generator
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
from unittest.mock import patch
|
|
||||||
|
|
||||||
import httpx
|
import httpx
|
||||||
import invoke # type: ignore
|
|
||||||
from invoke import Context # type: ignore
|
from invoke import Context # type: ignore
|
||||||
from invoke import run # type: ignore
|
from invoke import run # type: ignore
|
||||||
from invoke import task # type: ignore
|
from invoke import task # type: ignore
|
||||||
|
|
||||||
|
|
||||||
def fix_annotations():
|
|
||||||
"""
|
|
||||||
Pyinvoke doesn't accept annotations by default, this fix that
|
|
||||||
Based on: @zelo's fix in https://github.com/pyinvoke/invoke/pull/606
|
|
||||||
Context in: https://github.com/pyinvoke/invoke/issues/357
|
|
||||||
Python 3.11 https://github.com/pyinvoke/invoke/issues/833
|
|
||||||
"""
|
|
||||||
|
|
||||||
ArgSpec = namedtuple("ArgSpec", ["args", "defaults"])
|
|
||||||
|
|
||||||
def patched_inspect_getargspec(func):
|
|
||||||
spec = getfullargspec(func)
|
|
||||||
return ArgSpec(spec.args, spec.defaults)
|
|
||||||
|
|
||||||
org_task_argspec = invoke.tasks.Task.argspec
|
|
||||||
|
|
||||||
def patched_task_argspec(*args, **kwargs):
|
|
||||||
with patch(
|
|
||||||
target="inspect.getargspec", new=patched_inspect_getargspec, create=True
|
|
||||||
):
|
|
||||||
return org_task_argspec(*args, **kwargs)
|
|
||||||
|
|
||||||
invoke.tasks.Task.argspec = patched_task_argspec
|
|
||||||
|
|
||||||
|
|
||||||
fix_annotations()
|
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
def generate_db_migration(ctx, message):
|
def generate_db_migration(ctx, message):
|
||||||
# type: (Context, str) -> None
|
# type: (Context, str) -> None
|
||||||
|
@ -78,16 +46,16 @@ def compile_scss(ctx, watch=False):
|
||||||
# type: (Context, bool) -> None
|
# type: (Context, bool) -> None
|
||||||
from app.utils.favicon import build_favicon
|
from app.utils.favicon import build_favicon
|
||||||
|
|
||||||
|
theme_file = Path("data/_theme.scss")
|
||||||
|
if not theme_file.exists():
|
||||||
|
theme_file.write_text("// override vars for theming here")
|
||||||
|
|
||||||
favicon_file = Path("data/favicon.ico")
|
favicon_file = Path("data/favicon.ico")
|
||||||
if not favicon_file.exists():
|
if not favicon_file.exists():
|
||||||
build_favicon()
|
build_favicon()
|
||||||
else:
|
else:
|
||||||
shutil.copy2(favicon_file, "app/static/favicon.ico")
|
shutil.copy2(favicon_file, "app/static/favicon.ico")
|
||||||
|
|
||||||
theme_file = Path("data/_theme.scss")
|
|
||||||
if not theme_file.exists():
|
|
||||||
theme_file.write_text("// override vars for theming here")
|
|
||||||
|
|
||||||
if watch:
|
if watch:
|
||||||
run("boussole watch", echo=True)
|
run("boussole watch", echo=True)
|
||||||
else:
|
else:
|
||||||
|
@ -385,40 +353,3 @@ def check_config(ctx):
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
print("Config is OK")
|
print("Config is OK")
|
||||||
|
|
||||||
|
|
||||||
@task
|
|
||||||
def import_mastodon_following_accounts(ctx, path):
|
|
||||||
# type: (Context, str) -> None
|
|
||||||
from loguru import logger
|
|
||||||
|
|
||||||
from app.boxes import _get_following
|
|
||||||
from app.boxes import _send_follow
|
|
||||||
from app.database import async_session
|
|
||||||
from app.utils.mastodon import get_actor_urls_from_following_accounts_csv_file
|
|
||||||
|
|
||||||
async def _import_following() -> int:
|
|
||||||
count = 0
|
|
||||||
async with async_session() as db_session:
|
|
||||||
followings = {
|
|
||||||
following.ap_actor_id for following in await _get_following(db_session)
|
|
||||||
}
|
|
||||||
for (
|
|
||||||
handle,
|
|
||||||
actor_url,
|
|
||||||
) in await get_actor_urls_from_following_accounts_csv_file(path):
|
|
||||||
if actor_url in followings:
|
|
||||||
logger.info(f"Already following {handle}")
|
|
||||||
continue
|
|
||||||
|
|
||||||
logger.info(f"Importing {actor_url=}")
|
|
||||||
|
|
||||||
await _send_follow(db_session, actor_url)
|
|
||||||
count += 1
|
|
||||||
|
|
||||||
await db_session.commit()
|
|
||||||
|
|
||||||
return count
|
|
||||||
|
|
||||||
count = asyncio.run(_import_following())
|
|
||||||
logger.info(f"Import done, {count} follow requests sent")
|
|
||||||
|
|
|
@ -20,16 +20,12 @@ async def test_fetch_actor(async_db_session: AsyncSession, respx_mock) -> None:
|
||||||
public_key="pk",
|
public_key="pk",
|
||||||
)
|
)
|
||||||
respx_mock.get(ra.ap_id).mock(return_value=httpx.Response(200, json=ra.ap_actor))
|
respx_mock.get(ra.ap_id).mock(return_value=httpx.Response(200, json=ra.ap_actor))
|
||||||
respx_mock.get(
|
|
||||||
"https://example.com/.well-known/webfinger",
|
|
||||||
params={"resource": "acct%3Atoto%40example.com"},
|
|
||||||
).mock(return_value=httpx.Response(200, json={"subject": "acct:toto@example.com"}))
|
|
||||||
|
|
||||||
# When fetching this actor for the first time
|
# When fetching this actor for the first time
|
||||||
saved_actor = await fetch_actor(async_db_session, ra.ap_id)
|
saved_actor = await fetch_actor(async_db_session, ra.ap_id)
|
||||||
|
|
||||||
# Then it has been fetched and saved in DB
|
# Then it has been fetched and saved in DB
|
||||||
assert respx.calls.call_count == 2
|
assert respx.calls.call_count == 1
|
||||||
assert (
|
assert (
|
||||||
await async_db_session.execute(select(models.Actor))
|
await async_db_session.execute(select(models.Actor))
|
||||||
).scalar_one().ap_id == saved_actor.ap_id
|
).scalar_one().ap_id == saved_actor.ap_id
|
||||||
|
@ -42,7 +38,7 @@ async def test_fetch_actor(async_db_session: AsyncSession, respx_mock) -> None:
|
||||||
assert (
|
assert (
|
||||||
await async_db_session.execute(select(func.count(models.Actor.id)))
|
await async_db_session.execute(select(func.count(models.Actor.id)))
|
||||||
).scalar_one() == 1
|
).scalar_one() == 1
|
||||||
assert respx.calls.call_count == 2
|
assert respx.calls.call_count == 1
|
||||||
|
|
||||||
|
|
||||||
def test_sqlalchemy_factory(db: Session) -> None:
|
def test_sqlalchemy_factory(db: Session) -> None:
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
from unittest import mock
|
|
||||||
|
|
||||||
import pytest
|
|
||||||
|
|
||||||
from app.utils.url import is_hostname_blocked
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize(
|
|
||||||
"hostname,should_be_blocked",
|
|
||||||
[
|
|
||||||
("example.com", True),
|
|
||||||
("subdomain.example.com", True),
|
|
||||||
("example.xyz", False),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
def test_is_hostname_blocked(hostname: str, should_be_blocked: bool) -> None:
|
|
||||||
with mock.patch("app.utils.url.BLOCKED_SERVERS", ["example.com"]):
|
|
||||||
is_hostname_blocked.cache_clear()
|
|
||||||
assert is_hostname_blocked(hostname) is should_be_blocked
|
|
Loading…
Reference in a new issue