mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
e2daf0f012
* start centralizing negotiation logic for API * swagger document nodeinfo endpoint * go fmt * document negotiate function * use content negotiation * tidy up negotiation logic * negotiate content throughout client api * swagger * remove attachment on Content * add accept header to test requests
66 lines
1.6 KiB
Go
66 lines
1.6 KiB
Go
package favourites
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/superseriousbusiness/gotosocial/internal/api"
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
)
|
|
|
|
// FavouritesGETHandler handles GETting favourites.
|
|
func (m *Module) FavouritesGETHandler(c *gin.Context) {
|
|
l := logrus.WithField("func", "PublicTimelineGETHandler")
|
|
|
|
authed, err := oauth.Authed(c, true, true, true, true)
|
|
if err != nil {
|
|
l.Debugf("error authing: %s", err)
|
|
c.JSON(http.StatusUnauthorized, gin.H{"error": "unauthorized"})
|
|
return
|
|
}
|
|
|
|
if _, err := api.NegotiateAccept(c, api.JSONAcceptHeaders...); err != nil {
|
|
c.JSON(http.StatusNotAcceptable, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
maxID := ""
|
|
maxIDString := c.Query(MaxIDKey)
|
|
if maxIDString != "" {
|
|
maxID = maxIDString
|
|
}
|
|
|
|
minID := ""
|
|
minIDString := c.Query(MinIDKey)
|
|
if minIDString != "" {
|
|
minID = minIDString
|
|
}
|
|
|
|
limit := 20
|
|
limitString := c.Query(LimitKey)
|
|
if limitString != "" {
|
|
i, err := strconv.ParseInt(limitString, 10, 64)
|
|
if err != nil {
|
|
l.Debugf("error parsing limit string: %s", err)
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "couldn't parse limit query param"})
|
|
return
|
|
}
|
|
limit = int(i)
|
|
}
|
|
|
|
resp, errWithCode := m.processor.FavedTimelineGet(c.Request.Context(), authed, maxID, minID, limit)
|
|
if errWithCode != nil {
|
|
l.Debugf("error from processor FavedTimelineGet: %s", errWithCode)
|
|
c.JSON(errWithCode.Code(), gin.H{"error": errWithCode.Safe()})
|
|
return
|
|
}
|
|
|
|
if resp.LinkHeader != "" {
|
|
c.Header("Link", resp.LinkHeader)
|
|
}
|
|
c.JSON(http.StatusOK, resp.Statuses)
|
|
}
|