2021-07-05 12:23:03 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 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"
|
|
|
|
"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
|
|
|
)
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
func (p *processor) Create(ctx context.Context, account *gtsmodel.Account, form *apimodel.AttachmentRequest) (*apimodel.Attachment, error) {
|
2022-01-23 13:41:58 +00:00
|
|
|
data := func(innerCtx context.Context) (io.Reader, int, error) {
|
|
|
|
f, err := form.File.Open()
|
|
|
|
return f, int(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 {
|
|
|
|
return nil, fmt.Errorf("could not parse focus value %s: %s", form.Focus, err)
|
|
|
|
}
|
|
|
|
|
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-01-08 12:45:42 +00:00
|
|
|
return nil, 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-01-08 12:45:42 +00:00
|
|
|
return nil, err
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// prepare the frontend representation now -- if there are any errors here at least we can bail without
|
|
|
|
// having already put something in the database and then having to clean it up again (eugh)
|
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 {
|
|
|
|
return nil, fmt.Errorf("error parsing media attachment to frontend type: %s", err)
|
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
return &apiAttachment, nil
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|