diff options
author | 2023-04-29 18:29:51 +0200 | |
---|---|---|
committer | 2023-04-29 17:29:51 +0100 | |
commit | 8b1e2288d80a723a0c51770f0427fb6c7e07a366 (patch) | |
tree | 93970e7138dffdc320e8bb28671548be88d44001 /internal/api/client/notifications/notificationget.go | |
parent | [bugfix] add From to email header (#1717) (diff) | |
download | gotosocial-8b1e2288d80a723a0c51770f0427fb6c7e07a366.tar.xz |
[feature] Add GET endpoint for single notification (#1719)
Diffstat (limited to 'internal/api/client/notifications/notificationget.go')
-rw-r--r-- | internal/api/client/notifications/notificationget.go | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/internal/api/client/notifications/notificationget.go b/internal/api/client/notifications/notificationget.go new file mode 100644 index 000000000..3efdf171d --- /dev/null +++ b/internal/api/client/notifications/notificationget.go @@ -0,0 +1,87 @@ +// 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/>. + +package notifications + +import ( + "errors" + "net/http" + + "github.com/gin-gonic/gin" + apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util" + "github.com/superseriousbusiness/gotosocial/internal/gtserror" + "github.com/superseriousbusiness/gotosocial/internal/oauth" +) + +// NotificationGETHandler swagger:operation GET /api/v1/notification/{id} notification +// +// Get a single notification with the given ID. +// +// --- +// tags: +// - notifications +// +// produces: +// - application/json +// +// security: +// - OAuth2 Bearer: +// - read:notifications +// +// responses: +// '200': +// name: notifications +// description: Requested notification. +// schema: +// "$ref": "#/definitions/notification" +// '400': +// description: bad request +// '401': +// description: unauthorized +// '404': +// description: not found +// '406': +// description: not acceptable +// '500': +// description: internal server error +func (m *Module) NotificationGETHandler(c *gin.Context) { + authed, err := oauth.Authed(c, true, true, true, true) + if err != nil { + apiutil.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGetV1) + return + } + + if _, err := apiutil.NegotiateAccept(c, apiutil.JSONAcceptHeaders...); err != nil { + apiutil.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGetV1) + return + } + + targetNotifID := c.Param(IDKey) + if targetNotifID == "" { + err := errors.New("no notification id specified") + apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGetV1) + return + } + + resp, errWithCode := m.processor.NotificationGet(c.Request.Context(), authed.Account, targetNotifID) + if errWithCode != nil { + apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1) + return + } + + c.JSON(http.StatusOK, resp) +} |