summaryrefslogtreecommitdiff
path: root/internal/typeutils/internaltofrontend.go
diff options
context:
space:
mode:
authorLibravatar nicole mikołajczyk <git@mkljczk.pl>2025-08-12 14:05:15 +0200
committerLibravatar kim <gruf@noreply.codeberg.org>2025-08-12 14:05:15 +0200
commit660cf2c94ce6a87ac33d704ab1f68b2d4a258d92 (patch)
tree03eeab55b2f3bc2f3fc7667d245ed3b561a4f1a4 /internal/typeutils/internaltofrontend.go
parent[docs] Revamp trusted proxies warning a bit (#4365) (diff)
downloadgotosocial-660cf2c94ce6a87ac33d704ab1f68b2d4a258d92.tar.xz
[feature] scheduled statuses (#4274)
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 <git@mkljczk.pl> Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4274 Co-authored-by: nicole mikołajczyk <git@mkljczk.pl> Co-committed-by: nicole mikołajczyk <git@mkljczk.pl>
Diffstat (limited to 'internal/typeutils/internaltofrontend.go')
-rw-r--r--internal/typeutils/internaltofrontend.go54
1 files changed, 54 insertions, 0 deletions
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
+}