2023-03-12 15:00:57 +00: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-07-05 11:23:03 +00:00
|
|
|
|
|
|
|
package media
|
|
|
|
|
|
|
|
import (
|
2021-08-25 13:34:33 +00:00
|
|
|
"context"
|
2021-07-05 11:23:03 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-07-26 18:25:54 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/text"
|
2021-07-05 11:23:03 +00:00
|
|
|
)
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
// Update updates a media attachment with the given id, using the provided form parameters.
|
|
|
|
func (p *Processor) Update(ctx context.Context, account *gtsmodel.Account, mediaAttachmentID string, form *apimodel.AttachmentUpdateRequest) (*apimodel.Attachment, gtserror.WithCode) {
|
2023-03-01 18:26:53 +00:00
|
|
|
attachment, err := p.state.DB.GetAttachmentByID(ctx, mediaAttachmentID)
|
2021-08-25 13:34:33 +00:00
|
|
|
if err != nil {
|
2021-08-20 10:26:56 +00:00
|
|
|
if err == db.ErrNoEntries {
|
2021-07-05 11:23:03 +00:00
|
|
|
// attachment doesn't exist
|
|
|
|
return nil, gtserror.NewErrorNotFound(errors.New("attachment doesn't exist in the db"))
|
|
|
|
}
|
|
|
|
return nil, gtserror.NewErrorNotFound(fmt.Errorf("db error getting attachment: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
if attachment.AccountID != account.ID {
|
|
|
|
return nil, gtserror.NewErrorNotFound(errors.New("attachment not owned by requesting account"))
|
|
|
|
}
|
|
|
|
|
2023-03-04 14:53:21 +00:00
|
|
|
var updatingColumns []string
|
2022-08-15 10:35:05 +00:00
|
|
|
|
2021-07-05 11:23:03 +00:00
|
|
|
if form.Description != nil {
|
2023-08-11 12:40:11 +00:00
|
|
|
attachment.Description = text.SanitizeToPlaintext(*form.Description)
|
2022-08-15 10:35:05 +00:00
|
|
|
updatingColumns = append(updatingColumns, "description")
|
2021-07-05 11:23:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if form.Focus != nil {
|
|
|
|
focusx, focusy, err := parseFocus(*form.Focus)
|
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err)
|
|
|
|
}
|
|
|
|
attachment.FileMeta.Focus.X = focusx
|
|
|
|
attachment.FileMeta.Focus.Y = focusy
|
2022-08-15 10:35:05 +00:00
|
|
|
updatingColumns = append(updatingColumns, "focus_x", "focus_y")
|
|
|
|
}
|
|
|
|
|
2023-03-04 14:53:21 +00:00
|
|
|
if err := p.state.DB.UpdateAttachment(ctx, attachment, updatingColumns...); err != nil {
|
2022-08-15 10:35:05 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("database error updating media: %s", err))
|
2021-07-05 11:23:03 +00:00
|
|
|
}
|
|
|
|
|
2023-09-23 16:44:11 +00:00
|
|
|
a, err := p.converter.AttachmentToAPIAttachment(ctx, attachment)
|
2021-07-05 11:23:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, gtserror.NewErrorNotFound(fmt.Errorf("error converting attachment: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
return &a, nil
|
|
|
|
}
|