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 admin
|
|
|
|
|
|
|
|
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-01-15 16:36:15 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-07-05 12:23:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2022-01-15 13:33:58 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/id"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/uris"
|
2021-07-05 12:23:03 +01:00
|
|
|
)
|
|
|
|
|
2022-01-15 16:36:15 +00:00
|
|
|
func (p *processor) EmojiCreate(ctx context.Context, account *gtsmodel.Account, user *gtsmodel.User, form *apimodel.EmojiCreateRequest) (*apimodel.Emoji, gtserror.WithCode) {
|
2022-01-11 16:49:14 +00:00
|
|
|
if !user.Admin {
|
2022-01-15 16:36:15 +00:00
|
|
|
return nil, gtserror.NewErrorNotAuthorized(fmt.Errorf("user %s not an admin", user.ID), "user is not an admin")
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2022-01-16 17:52:55 +00:00
|
|
|
data := func(innerCtx context.Context) (io.Reader, error) {
|
|
|
|
return form.Image.Open()
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2022-01-15 13:33:58 +00:00
|
|
|
emojiID, err := id.NewRandomULID()
|
|
|
|
if err != nil {
|
2022-01-15 16:36:15 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error creating id for new emoji: %s", err), "error creating emoji ID")
|
2022-01-15 13:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
emojiURI := uris.GenerateURIForEmoji(emojiID)
|
|
|
|
|
|
|
|
processingEmoji, err := p.mediaManager.ProcessEmoji(ctx, data, form.Shortcode, emojiID, emojiURI, nil)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2022-01-15 16:36:15 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error processing emoji: %s", err), "error processing emoji")
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2022-01-11 16:49:14 +00:00
|
|
|
emoji, err := processingEmoji.LoadEmoji(ctx)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2022-01-15 16:36:15 +00:00
|
|
|
if err == db.ErrAlreadyExists {
|
|
|
|
return nil, gtserror.NewErrorConflict(fmt.Errorf("emoji with shortcode %s already exists", form.Shortcode), fmt.Sprintf("emoji with shortcode %s already exists", form.Shortcode))
|
|
|
|
}
|
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error loading emoji: %s", err), "error loading emoji")
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
apiEmoji, err := p.tc.EmojiToAPIEmoji(ctx, emoji)
|
2021-07-05 12:23:03 +01:00
|
|
|
if err != nil {
|
2022-01-15 16:36:15 +00:00
|
|
|
return nil, gtserror.NewErrorInternalError(fmt.Errorf("error converting emoji: %s", err), "error converting emoji to api representation")
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
return &apiEmoji, nil
|
2021-07-05 12:23:03 +01:00
|
|
|
}
|