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 12:23:03 +01:00
|
|
|
|
|
|
|
package media
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2024-07-12 10:39:47 +01:00
|
|
|
"errors"
|
2021-07-05 12:23:03 +01:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
2024-07-12 10:39:47 +01:00
|
|
|
"codeberg.org/gruf/go-iotools"
|
2021-07-05 12:23:03 +01:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
2024-07-12 10:39:47 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-07-05 12:23:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2022-01-09 17:41:22 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/media"
|
2021-07-05 12:23:03 +01:00
|
|
|
)
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
// Create creates a new media attachment belonging to the given account, using the request form.
|
|
|
|
func (p *Processor) Create(ctx context.Context, account *gtsmodel.Account, form *apimodel.AttachmentRequest) (*apimodel.Attachment, gtserror.WithCode) {
|
2024-07-12 10:39:47 +01:00
|
|
|
|
|
|
|
// Get maximum supported local media size.
|
|
|
|
maxsz := config.GetMediaLocalMaxSize()
|
|
|
|
|
|
|
|
// Ensure media within size bounds.
|
|
|
|
if form.File.Size > int64(maxsz) {
|
|
|
|
text := fmt.Sprintf("media exceeds configured max size: %s", maxsz)
|
|
|
|
return nil, gtserror.NewErrorBadRequest(errors.New(text), text)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2024-07-12 10:39:47 +01:00
|
|
|
// Parse focus details from API form input.
|
2022-01-09 17:41:22 +00:00
|
|
|
focusX, focusY, err := parseFocus(form.Focus)
|
|
|
|
if err != nil {
|
2024-07-12 10:39:47 +01:00
|
|
|
text := fmt.Sprintf("could not parse focus value %s: %s", form.Focus, err)
|
|
|
|
return nil, gtserror.NewErrorBadRequest(errors.New(text), text)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open multipart file reader.
|
|
|
|
mpfile, err := form.File.Open()
|
|
|
|
if err != nil {
|
|
|
|
err := gtserror.Newf("error opening multipart file: %w", err)
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2022-01-09 17:41:22 +00:00
|
|
|
}
|
|
|
|
|
2024-07-12 10:39:47 +01:00
|
|
|
// Wrap the multipart file reader to ensure is limited to max.
|
|
|
|
rc, _, _ := iotools.UpdateReadCloserLimit(mpfile, int64(maxsz))
|
|
|
|
|
2024-06-26 16:01:16 +01:00
|
|
|
// Create local media and write to instance storage.
|
|
|
|
attachment, errWithCode := p.c.StoreLocalMedia(ctx,
|
|
|
|
account.ID,
|
2024-07-12 10:39:47 +01:00
|
|
|
func(ctx context.Context) (reader io.ReadCloser, err error) {
|
|
|
|
return rc, nil
|
|
|
|
},
|
2024-06-26 16:01:16 +01:00
|
|
|
media.AdditionalMediaInfo{
|
|
|
|
Description: &form.Description,
|
|
|
|
FocusX: &focusX,
|
|
|
|
FocusY: &focusY,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if errWithCode != nil {
|
|
|
|
return nil, errWithCode
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2023-09-23 17:44:11 +01:00
|
|
|
apiAttachment, err := p.converter.AttachmentToAPIAttachment(ctx, attachment)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := fmt.Errorf("error parsing media attachment to frontend type: %s", err)
|
|
|
|
return nil, gtserror.NewErrorInternalError(err)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
return &apiAttachment, nil
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|