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 (
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2015-12-21 17:54:11 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2015-12-21 17:54:11 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +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-08-14 16:47:26 +05:30
|
|
|
apiUsers[i] = users[i].APIFormat()
|
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
|
|
|
|
}
|
2016-11-24 12:34:31 +05:30
|
|
|
responseAPIUsers(ctx, users)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListMyFollowers list all my followers
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListMyFollowers(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /user/followers userCurrentListFollowers
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: UserList
|
|
|
|
// 500: error
|
|
|
|
|
2015-12-21 17:54:11 +05:30
|
|
|
listUserFollowers(ctx, ctx.User)
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListFollowers list user's followers
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListFollowers(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /users/:username/followers userListFollowers
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: UserList
|
|
|
|
// 500: error
|
|
|
|
|
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
|
|
|
|
}
|
2016-11-24 12:34:31 +05:30
|
|
|
responseAPIUsers(ctx, users)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListMyFollowing list all my followings
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListMyFollowing(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /user/following userCurrentListFollowing
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: UserList
|
|
|
|
// 500: error
|
|
|
|
|
2015-12-21 17:54:11 +05:30
|
|
|
listUserFollowing(ctx, ctx.User)
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListFollowing list user's followings
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListFollowing(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /users/{username}/following userListFollowing
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: UserList
|
|
|
|
// 500: error
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CheckMyFollowing check if the repo is followed by me
|
2016-03-14 04:19:16 +05:30
|
|
|
func CheckMyFollowing(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /user/following/{username} userCurrentCheckFollowing
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 204: empty
|
|
|
|
// 404: notFound
|
|
|
|
|
2015-12-21 17:54:11 +05:30
|
|
|
target := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2016-07-23 22:38:22 +05:30
|
|
|
checkUserFollowing(ctx, ctx.User, target.ID)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CheckFollowing check if the repo is followed by user
|
2016-03-14 04:19:16 +05:30
|
|
|
func CheckFollowing(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /users/{username}/following/:target userCheckFollowing
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 204: empty
|
|
|
|
// 404: notFound
|
|
|
|
|
2015-12-21 17:54:11 +05:30
|
|
|
u := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
target := GetUserByParamsName(ctx, ":target")
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2016-07-23 22:38:22 +05:30
|
|
|
checkUserFollowing(ctx, u, target.ID)
|
2015-12-21 17:54:11 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Follow follow one repository
|
2016-03-14 04:19:16 +05:30
|
|
|
func Follow(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route PUT /user/following/{username} userCurrentPutFollow
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 204: empty
|
|
|
|
// 500: error
|
|
|
|
|
2015-12-21 17:54:11 +05:30
|
|
|
target := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2016-07-23 22:38:22 +05:30
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Unfollow unfollow one repository
|
2016-03-14 04:19:16 +05:30
|
|
|
func Unfollow(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route DELETE /user/following/{username} userCurrentDeleteFollow
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 204: empty
|
|
|
|
// 500: error
|
|
|
|
|
2015-12-21 17:54:11 +05:30
|
|
|
target := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2016-07-23 22:38:22 +05:30
|
|
|
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)
|
|
|
|
}
|