2021-07-05 12:23:03 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-07-05 12:23:03 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package media
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2021-07-05 12:23:03 +01:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
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
|
|
|
)
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
func (p *processor) Create(ctx context.Context, account *gtsmodel.Account, form *apimodel.AttachmentRequest) (*apimodel.Attachment, gtserror.WithCode) {
|
2022-11-03 14:03:12 +00:00
|
|
|
data := func(innerCtx context.Context) (io.ReadCloser, int64, error) {
|
2022-01-23 13:41:58 +00:00
|
|
|
f, err := form.File.Open()
|
2022-09-29 21:50:43 +01:00
|
|
|
return f, form.File.Size, err
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2022-01-09 17:41:22 +00:00
|
|
|
focusX, focusY, err := parseFocus(form.Focus)
|
|
|
|
if err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := fmt.Errorf("could not parse focus value %s: %s", form.Focus, err)
|
|
|
|
return nil, gtserror.NewErrorBadRequest(err, err.Error())
|
2022-01-09 17:41:22 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 16:17:01 +00:00
|
|
|
// process the media attachment and load it immediately
|
2022-02-22 12:50:33 +00:00
|
|
|
media, err := p.mediaManager.ProcessMedia(ctx, data, nil, account.ID, &media.AdditionalMediaInfo{
|
2022-01-09 17:41:22 +00:00
|
|
|
Description: &form.Description,
|
|
|
|
FocusX: &focusX,
|
|
|
|
FocusY: &focusY,
|
|
|
|
})
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
return nil, gtserror.NewErrorUnprocessableEntity(err)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2022-01-11 16:49:14 +00:00
|
|
|
attachment, err := media.LoadAttachment(ctx)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
return nil, gtserror.NewErrorUnprocessableEntity(err)
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
apiAttachment, err := p.tc.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
|
|
|
}
|