From 660cf2c94ce6a87ac33d704ab1f68b2d4a258d92 Mon Sep 17 00:00:00 2001 From: nicole mikołajczyk Date: Tue, 12 Aug 2025 14:05:15 +0200 Subject: [feature] scheduled statuses (#4274) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit An implementation of [`scheduled_statuses`](https://docs.joinmastodon.org/methods/scheduled_statuses/). Will fix #1006. this is heavily WIP and I need to reorganize some of the code, working on this made me somehow familiar with the codebase and led to my other recent contributions i told some fops on fedi i'd work on this so i have no choice but to complete it 🤷‍♀️ btw iirc my avatar presents me working on this branch Signed-off-by: nicole mikołajczyk Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4274 Co-authored-by: nicole mikołajczyk Co-committed-by: nicole mikołajczyk --- internal/typeutils/internaltofrontend.go | 54 ++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'internal/typeutils/internaltofrontend.go') diff --git a/internal/typeutils/internaltofrontend.go b/internal/typeutils/internaltofrontend.go index aef38ad6e..a4cb1c0e1 100644 --- a/internal/typeutils/internaltofrontend.go +++ b/internal/typeutils/internaltofrontend.go @@ -3014,3 +3014,57 @@ func (c *Converter) TokenToAPITokenInfo( Application: apiApplication, }, nil } + +func (c *Converter) ScheduledStatusToAPIScheduledStatus( + ctx context.Context, + scheduledStatus *gtsmodel.ScheduledStatus, +) (*apimodel.ScheduledStatus, error) { + apiAttachments, err := c.convertAttachmentsToAPIAttachments( + ctx, + scheduledStatus.MediaAttachments, + scheduledStatus.MediaIDs, + ) + if err != nil { + log.Errorf(ctx, "error converting status attachments: %v", err) + } + + scheduledAt := util.FormatISO8601(scheduledStatus.ScheduledAt) + + apiScheduledStatus := &apimodel.ScheduledStatus{ + ID: scheduledStatus.ID, + ScheduledAt: scheduledAt, + Params: &apimodel.ScheduledStatusParams{ + Text: scheduledStatus.Text, + MediaIDs: scheduledStatus.MediaIDs, + Sensitive: *scheduledStatus.Sensitive, + SpoilerText: scheduledStatus.SpoilerText, + Visibility: VisToAPIVis(scheduledStatus.Visibility), + InReplyToID: scheduledStatus.InReplyToID, + Language: scheduledStatus.Language, + ApplicationID: scheduledStatus.ApplicationID, + LocalOnly: *scheduledStatus.LocalOnly, + ContentType: apimodel.StatusContentType(scheduledStatus.ContentType), + ScheduledAt: nil, + }, + MediaAttachments: apiAttachments, + } + + if len(scheduledStatus.Poll.Options) > 1 { + apiScheduledStatus.Params.Poll = &apimodel.ScheduledStatusParamsPoll{ + Options: scheduledStatus.Poll.Options, + ExpiresIn: scheduledStatus.Poll.ExpiresIn, + Multiple: *scheduledStatus.Poll.Multiple, + HideTotals: *scheduledStatus.Poll.HideTotals, + } + } + + if scheduledStatus.InteractionPolicy != nil { + apiInteractionPolicy, err := c.InteractionPolicyToAPIInteractionPolicy(ctx, scheduledStatus.InteractionPolicy, nil, nil) + if err != nil { + return nil, gtserror.Newf("error converting interaction policy: %w", err) + } + apiScheduledStatus.Params.InteractionPolicy = apiInteractionPolicy + } + + return apiScheduledStatus, nil +} -- cgit v1.2.3