2015-12-21 17:54:11 +05:30
|
|
|
// 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 (
|
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
|
|
|
|
"github.com/gogits/gogs/models"
|
2016-03-11 22:26:52 +05:30
|
|
|
"github.com/gogits/gogs/modules/context"
|
2015-12-21 17:54:11 +05:30
|
|
|
"github.com/gogits/gogs/routers/api/v1/convert"
|
|
|
|
)
|
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
func responseApiUsers(ctx *context.APIContext, users []*models.User) {
|
2015-12-21 17:54:11 +05:30
|
|
|
apiUsers := make([]*api.User, len(users))
|
|
|
|
for i := range users {
|
2016-03-14 08:50:22 +05:30
|
|
|
apiUsers[i] = convert.ToUser(users[i])
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiUsers)
|
|
|
|
}
|
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
func listUserFollowers(ctx *context.APIContext, u *models.User) {
|
2015-12-21 17:54:11 +05:30
|
|
|
users, err := u.GetFollowers(ctx.QueryInt("page"))
|
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetUserFollowers", err)
|
2015-12-21 17:54:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
responseApiUsers(ctx, users)
|
|
|
|
}
|
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListMyFollowers(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
listUserFollowers(ctx, ctx.User)
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users-Followers#list-followers-of-a-user
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListFollowers(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
u := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
listUserFollowers(ctx, u)
|
|
|
|
}
|
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
func listUserFollowing(ctx *context.APIContext, u *models.User) {
|
2015-12-21 17:54:11 +05:30
|
|
|
users, err := u.GetFollowing(ctx.QueryInt("page"))
|
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetFollowing", err)
|
2015-12-21 17:54:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
responseApiUsers(ctx, users)
|
|
|
|
}
|
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListMyFollowing(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
listUserFollowing(ctx, ctx.User)
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users-Followers#list-users-followed-by-another-user
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListFollowing(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
u := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
listUserFollowing(ctx, u)
|
|
|
|
}
|
|
|
|
|
2016-03-14 04:19:16 +05:30
|
|
|
func checkUserFollowing(ctx *context.APIContext, u *models.User, followID int64) {
|
2015-12-21 17:54:11 +05:30
|
|
|
if u.IsFollowing(followID) {
|
|
|
|
ctx.Status(204)
|
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Status(404)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users-Followers#check-if-you-are-following-a-user
|
2016-03-14 04:19:16 +05:30
|
|
|
func CheckMyFollowing(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
target := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
checkUserFollowing(ctx, ctx.User, target.Id)
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users-Followers#check-if-one-user-follows-another
|
2016-03-14 04:19:16 +05:30
|
|
|
func CheckFollowing(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
u := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
target := GetUserByParamsName(ctx, ":target")
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
checkUserFollowing(ctx, u, target.Id)
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users-Followers#follow-a-user
|
2016-03-14 04:19:16 +05:30
|
|
|
func Follow(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
target := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := models.FollowUser(ctx.User.Id, target.Id); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "FollowUser", err)
|
2015-12-21 17:54:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Users-Followers#unfollow-a-user
|
2016-03-14 04:19:16 +05:30
|
|
|
func Unfollow(ctx *context.APIContext) {
|
2015-12-21 17:54:11 +05:30
|
|
|
target := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := models.UnfollowUser(ctx.User.Id, target.Id); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "UnfollowUser", err)
|
2015-12-21 17:54:11 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|