2023-03-12 15:00:57 +00:00
|
|
|
// 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/>.
|
2021-05-21 14:48:26 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
package lists
|
2021-05-21 14:48:26 +01:00
|
|
|
|
|
|
|
import (
|
2023-05-25 09:37:38 +01:00
|
|
|
"errors"
|
2021-05-21 14:48:26 +01:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2023-01-02 12:10:50 +00:00
|
|
|
apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
2021-05-21 14:48:26 +01:00
|
|
|
)
|
|
|
|
|
2023-06-19 09:00:19 +01:00
|
|
|
// ListGETHandler swagger:operation GET /api/v1/lists/{id} list
|
2023-05-25 09:37:38 +01:00
|
|
|
//
|
|
|
|
// Get a single list with the given ID.
|
|
|
|
//
|
|
|
|
// ---
|
|
|
|
// tags:
|
|
|
|
// - lists
|
|
|
|
//
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// parameters:
|
|
|
|
// -
|
|
|
|
// name: id
|
|
|
|
// type: string
|
|
|
|
// description: ID of the list
|
|
|
|
// in: path
|
|
|
|
// required: true
|
|
|
|
//
|
|
|
|
// security:
|
|
|
|
// - OAuth2 Bearer:
|
|
|
|
// - read:lists
|
|
|
|
//
|
|
|
|
// responses:
|
|
|
|
// '200':
|
|
|
|
// name: list
|
|
|
|
// description: Requested list.
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/list"
|
|
|
|
// '400':
|
|
|
|
// description: bad request
|
|
|
|
// '401':
|
|
|
|
// description: unauthorized
|
|
|
|
// '404':
|
|
|
|
// description: not found
|
|
|
|
// '406':
|
|
|
|
// description: not acceptable
|
|
|
|
// '500':
|
|
|
|
// description: internal server error
|
|
|
|
func (m *Module) ListGETHandler(c *gin.Context) {
|
|
|
|
authed, err := oauth.Authed(c, true, true, true, true)
|
|
|
|
if err != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGetV1)
|
2023-01-02 12:10:50 +00:00
|
|
|
return
|
2021-05-21 14:48:26 +01:00
|
|
|
}
|
2023-01-02 12:10:50 +00:00
|
|
|
|
|
|
|
if _, err := apiutil.NegotiateAccept(c, apiutil.JSONAcceptHeaders...); err != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGetV1)
|
2023-01-02 12:10:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-25 09:37:38 +01:00
|
|
|
targetListID := c.Param(IDKey)
|
|
|
|
if targetListID == "" {
|
|
|
|
err := errors.New("no list id specified")
|
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGetV1)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, errWithCode := m.processor.List().Get(c.Request.Context(), authed.Account, targetListID)
|
|
|
|
if errWithCode != nil {
|
|
|
|
apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, resp)
|
2021-05-21 14:48:26 +01:00
|
|
|
}
|