Files
Atay-Makhzan/routers/api/v1/user/follower.go
T

183 lines
4.0 KiB
Go
Raw Normal View History

2015-12-21 04:24:11 -08:00
// Copyright 2015 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package user
import (
2016-11-11 10:39:44 +01:00
api "code.gitea.io/sdk/gitea"
2015-12-21 04:24:11 -08:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
2015-12-21 04:24:11 -08:00
)
2016-11-24 15:04:31 +08:00
func responseAPIUsers(ctx *context.APIContext, users []*models.User) {
2015-12-21 04:24:11 -08:00
apiUsers := make([]*api.User, len(users))
for i := range users {
2016-08-14 04:17:26 -07:00
apiUsers[i] = users[i].APIFormat()
2015-12-21 04:24:11 -08:00
}
ctx.JSON(200, &apiUsers)
}
func listUserFollowers(ctx *context.APIContext, u *models.User) {
2015-12-21 04:24:11 -08:00
users, err := u.GetFollowers(ctx.QueryInt("page"))
if err != nil {
ctx.Error(500, "GetUserFollowers", err)
2015-12-21 04:24:11 -08:00
return
}
2016-11-24 15:04:31 +08:00
responseAPIUsers(ctx, users)
2015-12-21 04:24:11 -08:00
}
2016-11-24 15:04:31 +08:00
// ListMyFollowers list all my followers
func ListMyFollowers(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route GET /user/followers user userCurrentListFollowers
2017-05-02 15:35:59 +02:00
//
// Produces:
// - application/json
//
// Responses:
// 200: UserList
// 500: error
2015-12-21 04:24:11 -08:00
listUserFollowers(ctx, ctx.User)
}
2016-11-24 15:04:31 +08:00
// ListFollowers list user's followers
func ListFollowers(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route GET /users/:username/followers user userListFollowers
2017-05-02 15:35:59 +02:00
//
// Produces:
// - application/json
//
// Responses:
// 200: UserList
// 500: error
2015-12-21 04:24:11 -08:00
u := GetUserByParams(ctx)
if ctx.Written() {
return
}
listUserFollowers(ctx, u)
}
func listUserFollowing(ctx *context.APIContext, u *models.User) {
2015-12-21 04:24:11 -08:00
users, err := u.GetFollowing(ctx.QueryInt("page"))
if err != nil {
ctx.Error(500, "GetFollowing", err)
2015-12-21 04:24:11 -08:00
return
}
2016-11-24 15:04:31 +08:00
responseAPIUsers(ctx, users)
2015-12-21 04:24:11 -08:00
}
2016-11-24 15:04:31 +08:00
// ListMyFollowing list all my followings
func ListMyFollowing(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route GET /user/following user userCurrentListFollowing
2017-05-02 15:35:59 +02:00
//
// Produces:
// - application/json
//
// Responses:
// 200: UserList
// 500: error
2015-12-21 04:24:11 -08:00
listUserFollowing(ctx, ctx.User)
}
2016-11-24 15:04:31 +08:00
// ListFollowing list user's followings
func ListFollowing(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route GET /users/{username}/following user userListFollowing
2017-05-02 15:35:59 +02:00
//
// Produces:
// - application/json
//
// Responses:
// 200: UserList
// 500: error
2015-12-21 04:24:11 -08:00
u := GetUserByParams(ctx)
if ctx.Written() {
return
}
listUserFollowing(ctx, u)
}
func checkUserFollowing(ctx *context.APIContext, u *models.User, followID int64) {
2015-12-21 04:24:11 -08:00
if u.IsFollowing(followID) {
ctx.Status(204)
} else {
ctx.Status(404)
2015-12-21 04:24:11 -08:00
}
}
2016-11-24 15:04:31 +08:00
// CheckMyFollowing check if the repo is followed by me
func CheckMyFollowing(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route GET /user/following/{username} user userCurrentCheckFollowing
2017-05-02 15:35:59 +02:00
//
// Responses:
// 204: empty
// 404: notFound
2015-12-21 04:24:11 -08:00
target := GetUserByParams(ctx)
if ctx.Written() {
return
}
2016-07-24 01:08:22 +08:00
checkUserFollowing(ctx, ctx.User, target.ID)
2015-12-21 04:24:11 -08:00
}
2016-11-24 15:04:31 +08:00
// CheckFollowing check if the repo is followed by user
func CheckFollowing(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route GET /users/{username}/following/:target user userCheckFollowing
2017-05-02 15:35:59 +02:00
//
// Responses:
// 204: empty
// 404: notFound
2015-12-21 04:24:11 -08:00
u := GetUserByParams(ctx)
if ctx.Written() {
return
}
target := GetUserByParamsName(ctx, ":target")
if ctx.Written() {
return
}
2016-07-24 01:08:22 +08:00
checkUserFollowing(ctx, u, target.ID)
2015-12-21 04:24:11 -08:00
}
2016-11-24 15:04:31 +08:00
// Follow follow one repository
func Follow(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route PUT /user/following/{username} user userCurrentPutFollow
2017-05-02 15:35:59 +02:00
//
// Responses:
// 204: empty
// 500: error
2015-12-21 04:24:11 -08:00
target := GetUserByParams(ctx)
if ctx.Written() {
return
}
2016-07-24 01:08:22 +08:00
if err := models.FollowUser(ctx.User.ID, target.ID); err != nil {
ctx.Error(500, "FollowUser", err)
2015-12-21 04:24:11 -08:00
return
}
ctx.Status(204)
}
2016-11-24 15:04:31 +08:00
// Unfollow unfollow one repository
func Unfollow(ctx *context.APIContext) {
2017-08-21 13:13:47 +02:00
// swagger:route DELETE /user/following/{username} user userCurrentDeleteFollow
2017-05-02 15:35:59 +02:00
//
// Responses:
// 204: empty
// 500: error
2015-12-21 04:24:11 -08:00
target := GetUserByParams(ctx)
if ctx.Written() {
return
}
2016-07-24 01:08:22 +08:00
if err := models.UnfollowUser(ctx.User.ID, target.ID); err != nil {
ctx.Error(500, "UnfollowUser", err)
2015-12-21 04:24:11 -08:00
return
}
ctx.Status(204)
}