mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
Support editing media description when editing statuses (#556)
This commit is contained in:
parent
b31c5156ff
commit
7d1558a2ab
3 changed files with 33 additions and 2 deletions
|
@ -518,6 +518,7 @@ class Post(StatorModel):
|
|||
sensitive: bool | None = None,
|
||||
visibility: int = Visibilities.public,
|
||||
attachments: list | None = None,
|
||||
attachment_attributes: list | None = None,
|
||||
):
|
||||
with transaction.atomic():
|
||||
# Strip all HTML and apply linebreaks filter
|
||||
|
@ -533,6 +534,15 @@ class Post(StatorModel):
|
|||
self.attachments.set(attachments or [])
|
||||
self.save()
|
||||
|
||||
for attrs in attachment_attributes or []:
|
||||
attachment = next(
|
||||
(a for a in attachments or [] if str(a.id) == attrs.id), None
|
||||
)
|
||||
if attachment is None:
|
||||
continue
|
||||
attachment.name = attrs.description
|
||||
attachment.save()
|
||||
|
||||
@classmethod
|
||||
def mentions_from_content(cls, content, author) -> set[Identity]:
|
||||
mention_hits = FediverseHtmlParser(content, find_mentions=True).mentions
|
||||
|
|
|
@ -50,12 +50,18 @@ class PostStatusSchema(Schema):
|
|||
poll: PostPollSchema | None = None
|
||||
|
||||
|
||||
class MediaAttributesSchema(Schema):
|
||||
id: str
|
||||
description: str
|
||||
|
||||
|
||||
class EditStatusSchema(Schema):
|
||||
status: str
|
||||
sensitive: bool = False
|
||||
spoiler_text: str | None = None
|
||||
language: str | None = None
|
||||
media_ids: list[str] = []
|
||||
media_attributes: list[MediaAttributesSchema] = []
|
||||
|
||||
|
||||
def post_for_id(request: HttpRequest, id: str) -> Post:
|
||||
|
@ -134,6 +140,7 @@ def edit_status(request, id: str, details: EditStatusSchema) -> schemas.Status:
|
|||
summary=details.spoiler_text,
|
||||
sensitive=details.sensitive,
|
||||
attachments=attachments,
|
||||
attachment_attributes=details.media_attributes,
|
||||
)
|
||||
return schemas.Status.from_post(post)
|
||||
|
||||
|
|
|
@ -1,13 +1,20 @@
|
|||
import pytest
|
||||
|
||||
from activities.models import Post
|
||||
from activities.models import Post, PostAttachment, PostAttachmentStates
|
||||
|
||||
|
||||
@pytest.mark.django_db
|
||||
def test_post_status(api_client):
|
||||
def test_post_status(api_client, identity):
|
||||
"""
|
||||
Tests posting, editing and deleting a status
|
||||
"""
|
||||
# Create media attachment
|
||||
attachment = PostAttachment.objects.create(
|
||||
mimetype="image/webp",
|
||||
name=None,
|
||||
state=PostAttachmentStates.fetched,
|
||||
author=identity,
|
||||
)
|
||||
# Post new one
|
||||
response = api_client.post(
|
||||
"/api/v1/statuses",
|
||||
|
@ -15,10 +22,12 @@ def test_post_status(api_client):
|
|||
data={
|
||||
"status": "Hello, world!",
|
||||
"visibility": "unlisted",
|
||||
"media_ids": [attachment.id],
|
||||
},
|
||||
).json()
|
||||
assert response["content"] == "<p>Hello, world!</p>"
|
||||
assert response["visibility"] == "unlisted"
|
||||
assert response["media_attachments"][0]["description"] is None
|
||||
status_id = response["id"]
|
||||
# Retrieve "source" version an edit would use
|
||||
response = api_client.get(f"/api/v1/statuses/{status_id}/source").json()
|
||||
|
@ -29,11 +38,16 @@ def test_post_status(api_client):
|
|||
content_type="application/json",
|
||||
data={
|
||||
"status": "Hello, world! Again!",
|
||||
"media_ids": [attachment.id],
|
||||
"media_attributes": [
|
||||
{"id": attachment.id, "description": "the alt text"},
|
||||
],
|
||||
},
|
||||
).json()
|
||||
# Check it stuck
|
||||
response = api_client.get(f"/api/v1/statuses/{status_id}").json()
|
||||
assert response["content"] == "<p>Hello, world! Again!</p>"
|
||||
assert response["media_attachments"][0]["description"] == "the alt text"
|
||||
# Delete it
|
||||
response = api_client.delete(f"/api/v1/statuses/{status_id}")
|
||||
assert response.status_code == 200
|
||||
|
|
Loading…
Reference in a new issue