-
-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] Allow newly uploaded emojis to be placed in categories (#939)
* [feature] Add emoji categories GET Serialize emojis in appropriate categories; make it possible to get categories via the admin API * [feature] Create (or use existing) category for new emoji uploads * fix lint issue * update misleading line in swagger docs
- Loading branch information
1 parent
8c20ccd
commit 4cd00d5
Showing
31 changed files
with
916 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* | ||
GoToSocial | ||
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | ||
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 ( | ||
"fmt" | ||
"net/http" | ||
|
||
"github.com/gin-gonic/gin" | ||
"github.com/superseriousbusiness/gotosocial/internal/api" | ||
"github.com/superseriousbusiness/gotosocial/internal/gtserror" | ||
"github.com/superseriousbusiness/gotosocial/internal/oauth" | ||
) | ||
|
||
// EmojiCategoriesGETHandler swagger:operation GET /api/v1/admin/custom_emojis/categories emojiCategoriesGet | ||
// | ||
// Get a list of existing emoji categories. | ||
// | ||
// --- | ||
// tags: | ||
// - admin | ||
// | ||
// produces: | ||
// - application/json | ||
// | ||
// parameters: | ||
// - | ||
// name: id | ||
// type: string | ||
// description: The id of the emoji. | ||
// in: path | ||
// required: true | ||
// | ||
// responses: | ||
// '200': | ||
// description: Array of existing emoji categories. | ||
// schema: | ||
// type: array | ||
// items: | ||
// "$ref": "#/definitions/adminEmojiCategory" | ||
// '400': | ||
// description: bad request | ||
// '401': | ||
// description: unauthorized | ||
// '403': | ||
// description: forbidden | ||
// '404': | ||
// description: not found | ||
// '406': | ||
// description: not acceptable | ||
// '500': | ||
// description: internal server error | ||
func (m *Module) EmojiCategoriesGETHandler(c *gin.Context) { | ||
authed, err := oauth.Authed(c, true, true, true, true) | ||
if err != nil { | ||
api.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGet) | ||
return | ||
} | ||
|
||
if !*authed.User.Admin { | ||
err := fmt.Errorf("user %s not an admin", authed.User.ID) | ||
api.ErrorHandler(c, gtserror.NewErrorForbidden(err, err.Error()), m.processor.InstanceGet) | ||
return | ||
} | ||
|
||
if _, err := api.NegotiateAccept(c, api.JSONAcceptHeaders...); err != nil { | ||
api.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGet) | ||
return | ||
} | ||
|
||
categories, errWithCode := m.processor.AdminEmojiCategoriesGet(c.Request.Context()) | ||
if errWithCode != nil { | ||
api.ErrorHandler(c, errWithCode, m.processor.InstanceGet) | ||
return | ||
} | ||
|
||
c.JSON(http.StatusOK, categories) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
GoToSocial | ||
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | ||
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_test | ||
|
||
import ( | ||
"io" | ||
"net/http" | ||
"net/http/httptest" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/suite" | ||
"github.com/superseriousbusiness/gotosocial/internal/api/client/admin" | ||
) | ||
|
||
type EmojiCategoriesGetTestSuite struct { | ||
AdminStandardTestSuite | ||
} | ||
|
||
func (suite *EmojiCategoriesGetTestSuite) TestEmojiCategoriesGet() { | ||
recorder := httptest.NewRecorder() | ||
|
||
path := admin.EmojiCategoriesPath | ||
ctx := suite.newContext(recorder, http.MethodGet, nil, path, "application/json") | ||
|
||
suite.adminModule.EmojiCategoriesGETHandler(ctx) | ||
suite.Equal(http.StatusOK, recorder.Code) | ||
|
||
b, err := io.ReadAll(recorder.Body) | ||
suite.NoError(err) | ||
suite.NotNil(b) | ||
|
||
suite.Equal(`[{"id":"01GGQ989PTT9PMRN4FZ1WWK2B9","name":"cute stuff"},{"id":"01GGQ8V4993XK67B2JB396YFB7","name":"reactions"}]`, string(b)) | ||
} | ||
|
||
func TestEmojiCategoriesGetTestSuite(t *testing.T) { | ||
suite.Run(t, &EmojiCategoriesGetTestSuite{}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.