2021-08-25 14:34:33 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-08-25 14:34:33 +01:00
|
|
|
|
|
|
|
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-06-13 17:42:28 +01:00
|
|
|
package status
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2021-06-13 17:42:28 +01:00
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
2021-06-13 17:42:28 +01:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/id"
|
2021-08-31 14:59:12 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2021-07-26 19:25:54 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/text"
|
2021-12-20 14:19:53 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/uris"
|
2021-06-13 17:42:28 +01:00
|
|
|
)
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) Create(ctx context.Context, account *gtsmodel.Account, application *gtsmodel.Application, form *apimodel.AdvancedStatusCreateForm) (*apimodel.Status, gtserror.WithCode) {
|
2021-12-20 14:19:53 +00:00
|
|
|
accountURIs := uris.GenerateURIsForAccount(account.Username)
|
2021-06-13 17:42:28 +01:00
|
|
|
thisStatusID, err := id.NewULID()
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
2021-12-20 14:19:53 +00:00
|
|
|
thisStatusURI := fmt.Sprintf("%s/%s", accountURIs.StatusesURI, thisStatusID)
|
|
|
|
thisStatusURL := fmt.Sprintf("%s/%s", accountURIs.StatusesURL, thisStatusID)
|
2021-06-13 17:42:28 +01:00
|
|
|
|
|
|
|
newStatus := >smodel.Status{
|
|
|
|
ID: thisStatusID,
|
|
|
|
URI: thisStatusURI,
|
|
|
|
URL: thisStatusURL,
|
|
|
|
CreatedAt: time.Now(),
|
|
|
|
UpdatedAt: time.Now(),
|
|
|
|
Local: true,
|
|
|
|
AccountID: account.ID,
|
2021-06-17 17:02:33 +01:00
|
|
|
AccountURI: account.URI,
|
2021-07-26 19:25:54 +01:00
|
|
|
ContentWarning: text.RemoveHTML(form.SpoilerText),
|
2021-08-31 14:59:12 +01:00
|
|
|
ActivityStreamsType: ap.ObjectNote,
|
2021-06-13 17:42:28 +01:00
|
|
|
Sensitive: form.Sensitive,
|
|
|
|
Language: form.Language,
|
|
|
|
CreatedWithApplicationID: application.ID,
|
|
|
|
Text: form.Status,
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessReplyToID(ctx, form, account.ID, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessMediaIDs(ctx, form, account.ID, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessVisibility(ctx, form, account.Privacy, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessLanguage(ctx, form, account.Language, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessMentions(ctx, form, account.ID, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessTags(ctx, form, account.ID, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessEmojis(ctx, form, account.ID, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.ProcessContent(ctx, form, account.ID, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
2021-08-20 11:26:56 +01:00
|
|
|
// put the new status in the database
|
2021-08-25 14:34:33 +01:00
|
|
|
if err := p.db.PutStatus(ctx, newStatus); err != nil {
|
2021-06-13 17:42:28 +01:00
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// send it back to the processor for async processing
|
2021-08-31 14:59:12 +01:00
|
|
|
p.fromClientAPI <- messages.FromClientAPI{
|
|
|
|
APObjectType: ap.ObjectNote,
|
|
|
|
APActivityType: ap.ActivityCreate,
|
2021-06-13 17:42:28 +01:00
|
|
|
GTSModel: newStatus,
|
|
|
|
OriginAccount: account,
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the frontend representation of the new status to the submitter
|
2021-10-04 14:24:19 +01:00
|
|
|
apiStatus, err := p.tc.StatusToAPIStatus(ctx, newStatus, account)
|
2021-06-13 17:42:28 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting status %s to frontend representation: %s", newStatus.ID, err))
|
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
return apiStatus, nil
|
2021-06-13 17:42:28 +01:00
|
|
|
}
|