| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Affero General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | package status | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-31 15:59:12 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/ap" | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model" | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtserror" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/id" | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2021-08-31 15:59:12 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/messages" | 
					
						
							| 
									
										
										
										
											2021-07-26 20:25:54 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/text" | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/typeutils" | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/uris" | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/util" | 
					
						
							| 
									
										
										
										
											2024-11-11 15:45:19 +00:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/util/xslices" | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | // Create processes the given form to create a new status, returning the api model representation of that status if it's OK. | 
					
						
							| 
									
										
										
										
											2023-08-07 01:25:54 -07:00
										 |  |  | // | 
					
						
							|  |  |  | // Precondition: the form's fields should have already been validated and normalized by the caller. | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | func (p *Processor) Create( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							|  |  |  | 	requester *gtsmodel.Account, | 
					
						
							|  |  |  | 	application *gtsmodel.Application, | 
					
						
							| 
									
										
										
										
											2024-08-22 19:47:10 +02:00
										 |  |  | 	form *apimodel.StatusCreateRequest, | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | ) ( | 
					
						
							|  |  |  | 	*apimodel.Status, | 
					
						
							|  |  |  | 	gtserror.WithCode, | 
					
						
							|  |  |  | ) { | 
					
						
							| 
									
										
										
										
											2024-03-22 14:03:46 +01:00
										 |  |  | 	// Ensure account populated; we'll need settings. | 
					
						
							|  |  |  | 	if err := p.state.DB.PopulateAccount(ctx, requester); err != nil { | 
					
						
							|  |  |  | 		log.Errorf(ctx, "error(s) populating account, will continue: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// Generate new ID for status. | 
					
						
							|  |  |  | 	statusID := id.NewULID() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Generate necessary URIs for username, to build status URIs. | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 	accountURIs := uris.GenerateURIsForAccount(requester.Username) | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Get current time. | 
					
						
							|  |  |  | 	now := time.Now() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status := >smodel.Status{ | 
					
						
							|  |  |  | 		ID:                       statusID, | 
					
						
							|  |  |  | 		URI:                      accountURIs.StatusesURI + "/" + statusID, | 
					
						
							|  |  |  | 		URL:                      accountURIs.StatusesURL + "/" + statusID, | 
					
						
							|  |  |  | 		CreatedAt:                now, | 
					
						
							|  |  |  | 		UpdatedAt:                now, | 
					
						
							|  |  |  | 		Local:                    util.Ptr(true), | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 		Account:                  requester, | 
					
						
							|  |  |  | 		AccountID:                requester.ID, | 
					
						
							|  |  |  | 		AccountURI:               requester.URI, | 
					
						
							| 
									
										
										
										
											2021-08-31 15:59:12 +02:00
										 |  |  | 		ActivityStreamsType:      ap.ObjectNote, | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		Sensitive:                &form.Sensitive, | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		CreatedWithApplicationID: application.ID, | 
					
						
							|  |  |  | 		Text:                     form.Status, | 
					
						
							| 
									
										
										
										
											2024-10-11 15:21:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Assume not pending approval; this may | 
					
						
							|  |  |  | 		// change when permissivity is checked. | 
					
						
							|  |  |  | 		PendingApproval: util.Ptr(false), | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-04 09:35:48 +00:00
										 |  |  | 	// Process any attached poll. | 
					
						
							|  |  |  | 	p.processPoll(status, form.Poll) | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 	// Check + attach in-reply-to status. | 
					
						
							|  |  |  | 	if errWithCode := p.processInReplyTo(ctx, | 
					
						
							|  |  |  | 		requester, | 
					
						
							|  |  |  | 		status, | 
					
						
							|  |  |  | 		form.InReplyToID, | 
					
						
							|  |  |  | 	); errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2022-06-08 20:38:03 +02:00
										 |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	if errWithCode := p.processThreadID(ctx, status); errWithCode != nil { | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 	if errWithCode := p.processMediaIDs(ctx, form, requester.ID, status); errWithCode != nil { | 
					
						
							| 
									
										
										
										
											2022-11-05 13:33:38 +01:00
										 |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 	if err := p.processVisibility(ctx, form, requester.Settings.Privacy, status); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 	// Process policy AFTER visibility as it relies | 
					
						
							|  |  |  | 	// on status.Visibility and form.Visibility being set. | 
					
						
							|  |  |  | 	if errWithCode := processInteractionPolicy(form, requester.Settings, status); errWithCode != nil { | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-22 14:03:46 +01:00
										 |  |  | 	if err := processLanguage(form, requester.Settings.Language, status); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	if err := p.processContent(ctx, p.parseMention, form, status); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	if status.Poll != nil { | 
					
						
							|  |  |  | 		// Try to insert the new status poll in the database. | 
					
						
							|  |  |  | 		if err := p.state.DB.PutPoll(ctx, status.Poll); err != nil { | 
					
						
							|  |  |  | 			err := gtserror.Newf("error inserting poll in db: %w", err) | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// Insert this new status in the database. | 
					
						
							|  |  |  | 	if err := p.state.DB.PutStatus(ctx, status); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-04 09:35:48 +00:00
										 |  |  | 	if status.Poll != nil && !status.Poll.ExpiresAt.IsZero() { | 
					
						
							|  |  |  | 		// Now that the status is inserted, and side effects queued, | 
					
						
							|  |  |  | 		// attempt to schedule an expiry handler for the status poll. | 
					
						
							|  |  |  | 		if err := p.polls.ScheduleExpiry(ctx, status.Poll); err != nil { | 
					
						
							|  |  |  | 			log.Errorf(ctx, "error scheduling poll expiry: %v", err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// send it back to the client API worker for async side-effects. | 
					
						
							| 
									
										
										
										
											2024-04-26 13:50:46 +01:00
										 |  |  | 	p.state.Workers.Client.Queue.Push(&messages.FromClientAPI{ | 
					
						
							| 
									
										
										
										
											2021-08-31 15:59:12 +02:00
										 |  |  | 		APObjectType:   ap.ObjectNote, | 
					
						
							|  |  |  | 		APActivityType: ap.ActivityCreate, | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		GTSModel:       status, | 
					
						
							| 
									
										
										
										
											2024-04-26 13:50:46 +01:00
										 |  |  | 		Origin:         requester, | 
					
						
							| 
									
										
										
										
											2022-04-28 13:23:11 +01:00
										 |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-23 14:42:19 +02:00
										 |  |  | 	// If the new status replies to a status that | 
					
						
							|  |  |  | 	// replies to us, use our reply as an implicit | 
					
						
							|  |  |  | 	// accept of any pending interaction. | 
					
						
							|  |  |  | 	implicitlyAccepted, errWithCode := p.implicitlyAccept(ctx, | 
					
						
							|  |  |  | 		requester, status, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		return nil, errWithCode | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If we ended up implicitly accepting, mark the | 
					
						
							|  |  |  | 	// replied-to status as no longer pending approval | 
					
						
							|  |  |  | 	// so it's serialized properly via the API. | 
					
						
							|  |  |  | 	if implicitlyAccepted { | 
					
						
							|  |  |  | 		status.InReplyTo.PendingApproval = util.Ptr(false) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 	return p.c.GetAPIStatus(ctx, requester, status) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-04 09:35:48 +00:00
										 |  |  | func (p *Processor) processPoll(status *gtsmodel.Status, poll *apimodel.PollRequest) { | 
					
						
							|  |  |  | 	if poll == nil { | 
					
						
							|  |  |  | 		// No poll set. | 
					
						
							|  |  |  | 		// Nothing to do. | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var expiresAt time.Time | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Now will have been set | 
					
						
							|  |  |  | 	// as the status creation. | 
					
						
							|  |  |  | 	now := status.CreatedAt | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Update the status AS type to "Question". | 
					
						
							|  |  |  | 	status.ActivityStreamsType = ap.ActivityQuestion | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Set an expiry time if one given. | 
					
						
							|  |  |  | 	if in := poll.ExpiresIn; in > 0 { | 
					
						
							|  |  |  | 		expiresIn := time.Duration(in) | 
					
						
							|  |  |  | 		expiresAt = now.Add(expiresIn * time.Second) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Create new poll for status. | 
					
						
							|  |  |  | 	status.Poll = >smodel.Poll{ | 
					
						
							|  |  |  | 		ID:         id.NewULID(), | 
					
						
							|  |  |  | 		Multiple:   &poll.Multiple, | 
					
						
							|  |  |  | 		HideCounts: &poll.HideTotals, | 
					
						
							|  |  |  | 		Options:    poll.Options, | 
					
						
							|  |  |  | 		StatusID:   status.ID, | 
					
						
							|  |  |  | 		Status:     status, | 
					
						
							|  |  |  | 		ExpiresAt:  expiresAt, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Set poll ID on the status. | 
					
						
							|  |  |  | 	status.PollID = status.Poll.ID | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | func (p *Processor) processInReplyTo(ctx context.Context, requester *gtsmodel.Account, status *gtsmodel.Status, inReplyToID string) gtserror.WithCode { | 
					
						
							|  |  |  | 	if inReplyToID == "" { | 
					
						
							| 
									
										
										
										
											2024-07-24 13:27:42 +02:00
										 |  |  | 		// Not a reply. | 
					
						
							|  |  |  | 		// Nothing to do. | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 	// Fetch target in-reply-to status (checking visibility). | 
					
						
							|  |  |  | 	inReplyTo, errWithCode := p.c.GetVisibleTargetStatus(ctx, | 
					
						
							|  |  |  | 		requester, | 
					
						
							|  |  |  | 		inReplyToID, | 
					
						
							|  |  |  | 		nil, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		return errWithCode | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-29 14:20:57 +00:00
										 |  |  | 	// If this is a boost, unwrap it to get source status. | 
					
						
							|  |  |  | 	inReplyTo, errWithCode = p.c.UnwrapIfBoost(ctx, | 
					
						
							|  |  |  | 		requester, | 
					
						
							|  |  |  | 		inReplyTo, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		return errWithCode | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 13:27:42 +02:00
										 |  |  | 	// Ensure valid reply target for requester. | 
					
						
							|  |  |  | 	policyResult, err := p.intFilter.StatusReplyable(ctx, | 
					
						
							|  |  |  | 		requester, | 
					
						
							|  |  |  | 		inReplyTo, | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("error seeing if status %s is replyable: %w", status.ID, err) | 
					
						
							|  |  |  | 		return gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if policyResult.Forbidden() { | 
					
						
							|  |  |  | 		const errText = "you do not have permission to reply to this status" | 
					
						
							|  |  |  | 		err := gtserror.New(errText) | 
					
						
							|  |  |  | 		return gtserror.NewErrorForbidden(err, errText) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Derive pendingApproval status. | 
					
						
							|  |  |  | 	var pendingApproval bool | 
					
						
							|  |  |  | 	switch { | 
					
						
							|  |  |  | 	case policyResult.WithApproval(): | 
					
						
							|  |  |  | 		// We're allowed to do | 
					
						
							|  |  |  | 		// this pending approval. | 
					
						
							|  |  |  | 		pendingApproval = true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case policyResult.MatchedOnCollection(): | 
					
						
							|  |  |  | 		// We're permitted to do this, but since | 
					
						
							|  |  |  | 		// we matched due to presence in a followers | 
					
						
							|  |  |  | 		// or following collection, we should mark | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		// as pending approval and wait until we can | 
					
						
							|  |  |  | 		// prove it's been Accepted by the target. | 
					
						
							| 
									
										
										
										
											2024-07-24 13:27:42 +02:00
										 |  |  | 		pendingApproval = true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-26 12:04:28 +02:00
										 |  |  | 		if *inReplyTo.Local { | 
					
						
							|  |  |  | 			// If the target is local we don't need | 
					
						
							|  |  |  | 			// to wait for an Accept from remote, | 
					
						
							|  |  |  | 			// we can just preapprove it and have | 
					
						
							|  |  |  | 			// the processor create the Accept. | 
					
						
							|  |  |  | 			status.PreApproved = true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 13:27:42 +02:00
										 |  |  | 	case policyResult.Permitted(): | 
					
						
							|  |  |  | 		// We're permitted to do this | 
					
						
							|  |  |  | 		// based on another kind of match. | 
					
						
							|  |  |  | 		pendingApproval = false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status.PendingApproval = &pendingApproval | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// Set status fields from inReplyTo. | 
					
						
							|  |  |  | 	status.InReplyToID = inReplyTo.ID | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	status.InReplyTo = inReplyTo | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	status.InReplyToURI = inReplyTo.URI | 
					
						
							|  |  |  | 	status.InReplyToAccountID = inReplyTo.AccountID | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | func (p *Processor) processThreadID(ctx context.Context, status *gtsmodel.Status) gtserror.WithCode { | 
					
						
							| 
									
										
										
										
											2024-02-19 11:50:49 +01:00
										 |  |  | 	// Status takes the thread ID of | 
					
						
							|  |  |  | 	// whatever it replies to, if set. | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// Might not be set if status is local | 
					
						
							|  |  |  | 	// and replies to a remote status that | 
					
						
							|  |  |  | 	// doesn't have a thread ID yet. | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// If so, we can just thread from this | 
					
						
							|  |  |  | 	// status onwards instead, since this | 
					
						
							|  |  |  | 	// is where the relevant part of the | 
					
						
							|  |  |  | 	// thread starts, from the perspective | 
					
						
							|  |  |  | 	// of our instance at least. | 
					
						
							|  |  |  | 	if status.InReplyTo != nil && | 
					
						
							|  |  |  | 		status.InReplyTo.ThreadID != "" { | 
					
						
							|  |  |  | 		// Just inherit threadID from parent. | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 		status.ThreadID = status.InReplyTo.ThreadID | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-19 11:50:49 +01:00
										 |  |  | 	// Mark new thread (or threaded | 
					
						
							|  |  |  | 	// subsection) starting from here. | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	threadID := id.NewULID() | 
					
						
							|  |  |  | 	if err := p.state.DB.PutThread( | 
					
						
							|  |  |  | 		ctx, | 
					
						
							|  |  |  | 		>smodel.Thread{ | 
					
						
							|  |  |  | 			ID: threadID, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	); err != nil { | 
					
						
							|  |  |  | 		err := gtserror.Newf("error inserting new thread in db: %w", err) | 
					
						
							|  |  |  | 		return gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Future replies to this status | 
					
						
							|  |  |  | 	// (if any) will inherit this thread ID. | 
					
						
							|  |  |  | 	status.ThreadID = threadID | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-22 19:47:10 +02:00
										 |  |  | func (p *Processor) processMediaIDs(ctx context.Context, form *apimodel.StatusCreateRequest, thisAccountID string, status *gtsmodel.Status) gtserror.WithCode { | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	if form.MediaIDs == nil { | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// Get minimum allowed char descriptions. | 
					
						
							|  |  |  | 	minChars := config.GetMediaDescriptionMinChars() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	attachments := []*gtsmodel.MediaAttachment{} | 
					
						
							|  |  |  | 	attachmentIDs := []string{} | 
					
						
							| 
									
										
										
										
											2024-01-19 12:57:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	for _, mediaID := range form.MediaIDs { | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		attachment, err := p.state.DB.GetAttachmentByID(ctx, mediaID) | 
					
						
							|  |  |  | 		if err != nil && !errors.Is(err, db.ErrNoEntries) { | 
					
						
							|  |  |  | 			err := gtserror.Newf("error fetching media from db: %w", err) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 			return gtserror.NewErrorInternalError(err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		if attachment == nil { | 
					
						
							|  |  |  | 			text := fmt.Sprintf("media %s not found", mediaID) | 
					
						
							|  |  |  | 			return gtserror.NewErrorBadRequest(errors.New(text), text) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 		if attachment.AccountID != thisAccountID { | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 			text := fmt.Sprintf("media %s does not belong to account", mediaID) | 
					
						
							|  |  |  | 			return gtserror.NewErrorBadRequest(errors.New(text), text) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if attachment.StatusID != "" || attachment.ScheduledStatusID != "" { | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 			text := fmt.Sprintf("media %s already attached to status", mediaID) | 
					
						
							|  |  |  | 			return gtserror.NewErrorBadRequest(errors.New(text), text) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		if length := len([]rune(attachment.Description)); length < minChars { | 
					
						
							|  |  |  | 			text := fmt.Sprintf("media %s description too short, at least %d required", mediaID, minChars) | 
					
						
							|  |  |  | 			return gtserror.NewErrorBadRequest(errors.New(text), text) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		attachments = append(attachments, attachment) | 
					
						
							|  |  |  | 		attachmentIDs = append(attachmentIDs, attachment.ID) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status.Attachments = attachments | 
					
						
							|  |  |  | 	status.AttachmentIDs = attachmentIDs | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | func (p *Processor) processVisibility( | 
					
						
							|  |  |  | 	ctx context.Context, | 
					
						
							| 
									
										
										
										
											2024-08-22 19:47:10 +02:00
										 |  |  | 	form *apimodel.StatusCreateRequest, | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 	accountDefaultVis gtsmodel.Visibility, | 
					
						
							|  |  |  | 	status *gtsmodel.Status, | 
					
						
							|  |  |  | ) error { | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	switch { | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 	// Visibility set on form, use that. | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	case form.Visibility != "": | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 		status.Visibility = typeutils.APIVisToVis(form.Visibility) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 	// Fall back to account default, set | 
					
						
							|  |  |  | 	// this back on the form for later use. | 
					
						
							| 
									
										
										
										
											2024-11-25 13:48:59 +00:00
										 |  |  | 	case accountDefaultVis != 0: | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 		status.Visibility = accountDefaultVis | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 		form.Visibility = p.converter.VisToAPIVis(ctx, accountDefaultVis) | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 	// What? Fall back to global default, set | 
					
						
							|  |  |  | 	// this back on the form for later use. | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 		status.Visibility = gtsmodel.VisibilityDefault | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 		form.Visibility = p.converter.VisToAPIVis(ctx, gtsmodel.VisibilityDefault) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-22 19:47:10 +02:00
										 |  |  | 	// Set federated according to "local_only" field, | 
					
						
							|  |  |  | 	// assuming federated (ie., not local-only) by default. | 
					
						
							|  |  |  | 	localOnly := util.PtrOrValue(form.LocalOnly, false) | 
					
						
							|  |  |  | 	status.Federated = util.Ptr(!localOnly) | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func processInteractionPolicy( | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 	form *apimodel.StatusCreateRequest, | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 	settings *gtsmodel.AccountSettings, | 
					
						
							|  |  |  | 	status *gtsmodel.Status, | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | ) gtserror.WithCode { | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 	// If policy is set on the | 
					
						
							|  |  |  | 	// form then prefer this. | 
					
						
							|  |  |  | 	// | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 	// TODO: prevent scope widening by | 
					
						
							|  |  |  | 	// limiting interaction policy if | 
					
						
							|  |  |  | 	// inReplyTo status has a stricter | 
					
						
							|  |  |  | 	// interaction policy than this one. | 
					
						
							| 
									
										
										
										
											2024-09-18 18:35:35 +02:00
										 |  |  | 	if form.InteractionPolicy != nil { | 
					
						
							|  |  |  | 		p, err := typeutils.APIInteractionPolicyToInteractionPolicy( | 
					
						
							|  |  |  | 			form.InteractionPolicy, | 
					
						
							|  |  |  | 			form.Visibility, | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			errWithCode := gtserror.NewErrorBadRequest(err, err.Error()) | 
					
						
							|  |  |  | 			return errWithCode | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		status.InteractionPolicy = p | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-07-17 16:46:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch status.Visibility { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case gtsmodel.VisibilityPublic: | 
					
						
							|  |  |  | 		// Take account's default "public" policy if set. | 
					
						
							|  |  |  | 		if p := settings.InteractionPolicyPublic; p != nil { | 
					
						
							|  |  |  | 			status.InteractionPolicy = p | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case gtsmodel.VisibilityUnlocked: | 
					
						
							|  |  |  | 		// Take account's default "unlisted" policy if set. | 
					
						
							|  |  |  | 		if p := settings.InteractionPolicyUnlocked; p != nil { | 
					
						
							|  |  |  | 			status.InteractionPolicy = p | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case gtsmodel.VisibilityFollowersOnly, | 
					
						
							|  |  |  | 		gtsmodel.VisibilityMutualsOnly: | 
					
						
							|  |  |  | 		// Take account's default followers-only policy if set. | 
					
						
							|  |  |  | 		// TODO: separate policy for mutuals-only vis. | 
					
						
							|  |  |  | 		if p := settings.InteractionPolicyFollowersOnly; p != nil { | 
					
						
							|  |  |  | 			status.InteractionPolicy = p | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case gtsmodel.VisibilityDirect: | 
					
						
							|  |  |  | 		// Take account's default direct policy if set. | 
					
						
							|  |  |  | 		if p := settings.InteractionPolicyDirect; p != nil { | 
					
						
							|  |  |  | 			status.InteractionPolicy = p | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// If no policy set by now, status interaction | 
					
						
							|  |  |  | 	// policy will be stored as nil, which just means | 
					
						
							|  |  |  | 	// "fall back to global default policy". We avoid | 
					
						
							|  |  |  | 	// setting it explicitly to save space. | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-22 19:47:10 +02:00
										 |  |  | func processLanguage(form *apimodel.StatusCreateRequest, accountDefaultLanguage string, status *gtsmodel.Status) error { | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	if form.Language != "" { | 
					
						
							|  |  |  | 		status.Language = form.Language | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		status.Language = accountDefaultLanguage | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if status.Language == "" { | 
					
						
							|  |  |  | 		return errors.New("no language given either in status create form or account default") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-22 19:47:10 +02:00
										 |  |  | func (p *Processor) processContent(ctx context.Context, parseMention gtsmodel.ParseMentionFunc, form *apimodel.StatusCreateRequest, status *gtsmodel.Status) error { | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	if form.ContentType == "" { | 
					
						
							|  |  |  | 		// If content type wasn't specified, use the author's preferred content-type. | 
					
						
							| 
									
										
										
										
											2024-03-22 14:03:46 +01:00
										 |  |  | 		contentType := apimodel.StatusContentType(status.Account.Settings.StatusContentType) | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		form.ContentType = contentType | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// format is the currently set text formatting | 
					
						
							|  |  |  | 	// function, according to the provided content-type. | 
					
						
							|  |  |  | 	var format text.FormatFunc | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// formatInput is a shorthand function to format the given input string with the | 
					
						
							|  |  |  | 	// currently set 'formatFunc', passing in all required args and returning result. | 
					
						
							|  |  |  | 	formatInput := func(formatFunc text.FormatFunc, input string) *text.FormatResult { | 
					
						
							|  |  |  | 		return formatFunc(ctx, parseMention, status.AccountID, status.ID, input) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-02 03:06:40 -08:00
										 |  |  | 	switch form.ContentType { | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// None given / set, | 
					
						
							|  |  |  | 	// use default (plain). | 
					
						
							|  |  |  | 	case "": | 
					
						
							|  |  |  | 		fallthrough | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Format status according to text/plain. | 
					
						
							| 
									
										
										
										
											2023-03-02 03:06:40 -08:00
										 |  |  | 	case apimodel.StatusContentTypePlain: | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		format = p.formatter.FromPlain | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Format status according to text/markdown. | 
					
						
							| 
									
										
										
										
											2023-03-02 03:06:40 -08:00
										 |  |  | 	case apimodel.StatusContentTypeMarkdown: | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		format = p.formatter.FromMarkdown | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Unknown. | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 		return fmt.Errorf("invalid status format: %q", form.ContentType) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// Sanitize status text and format. | 
					
						
							|  |  |  | 	contentRes := formatInput(format, form.Status) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// Collect formatted results. | 
					
						
							|  |  |  | 	status.Content = contentRes.HTML | 
					
						
							|  |  |  | 	status.Mentions = append(status.Mentions, contentRes.Mentions...) | 
					
						
							|  |  |  | 	status.Emojis = append(status.Emojis, contentRes.Emojis...) | 
					
						
							|  |  |  | 	status.Tags = append(status.Tags, contentRes.Tags...) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// From here-on-out just use emoji-only | 
					
						
							|  |  |  | 	// plain-text formatting as the FormatFunc. | 
					
						
							|  |  |  | 	format = p.formatter.FromPlainEmojiOnly | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Sanitize content warning and format. | 
					
						
							|  |  |  | 	spoiler := text.SanitizeToPlaintext(form.SpoilerText) | 
					
						
							|  |  |  | 	warningRes := formatInput(format, spoiler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Collect formatted results. | 
					
						
							|  |  |  | 	status.ContentWarning = warningRes.HTML | 
					
						
							|  |  |  | 	status.Emojis = append(status.Emojis, warningRes.Emojis...) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	if status.Poll != nil { | 
					
						
							|  |  |  | 		for i := range status.Poll.Options { | 
					
						
							|  |  |  | 			// Sanitize each option title name and format. | 
					
						
							|  |  |  | 			option := text.SanitizeToPlaintext(status.Poll.Options[i]) | 
					
						
							|  |  |  | 			optionRes := formatInput(format, option) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// Collect each formatted result. | 
					
						
							|  |  |  | 			status.Poll.Options[i] = optionRes.HTML | 
					
						
							|  |  |  | 			status.Emojis = append(status.Emojis, optionRes.Emojis...) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	// Gather all the database IDs from each of the gathered status mentions, tags, and emojis. | 
					
						
							| 
									
										
										
										
											2024-11-11 15:45:19 +00:00
										 |  |  | 	status.MentionIDs = xslices.Gather(nil, status.Mentions, func(mention *gtsmodel.Mention) string { return mention.ID }) | 
					
						
							|  |  |  | 	status.TagIDs = xslices.Gather(nil, status.Tags, func(tag *gtsmodel.Tag) string { return tag.ID }) | 
					
						
							|  |  |  | 	status.EmojiIDs = xslices.Gather(nil, status.Emojis, func(emoji *gtsmodel.Emoji) string { return emoji.ID }) | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-16 11:38:12 +00:00
										 |  |  | 	if status.ContentWarning != "" && len(status.AttachmentIDs) > 0 { | 
					
						
							|  |  |  | 		// If a content-warning is set, and | 
					
						
							|  |  |  | 		// the status contains media, always | 
					
						
							|  |  |  | 		// set the status sensitive flag. | 
					
						
							|  |  |  | 		status.Sensitive = util.Ptr(true) | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-09-16 11:38:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2023-10-04 13:09:42 +01:00
										 |  |  | } |