113 lines
2.1 KiB
Go
113 lines
2.1 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/drone/drone/model"
|
|
"github.com/drone/drone/shared/crypto"
|
|
"github.com/drone/drone/store"
|
|
)
|
|
|
|
// swagger:route GET /users user getUserList
|
|
//
|
|
// Get the list of all registered users.
|
|
//
|
|
// Responses:
|
|
// 200: user
|
|
//
|
|
func GetUsers(c *gin.Context) {
|
|
users, err := store.GetUserList(c)
|
|
if err != nil {
|
|
c.String(500, "Error getting user list. %s", err)
|
|
} else {
|
|
c.JSON(200, users)
|
|
}
|
|
}
|
|
|
|
// swagger:route GET /users/{login} user getUserLogin
|
|
//
|
|
// Get the user with the matching login.
|
|
//
|
|
// Responses:
|
|
// 200: user
|
|
//
|
|
func GetUser(c *gin.Context) {
|
|
user, err := store.GetUserLogin(c, c.Param("login"))
|
|
if err != nil {
|
|
c.String(404, "Cannot find user. %s", err)
|
|
} else {
|
|
c.JSON(200, user)
|
|
}
|
|
}
|
|
|
|
func PatchUser(c *gin.Context) {
|
|
in := &model.User{}
|
|
err := c.Bind(in)
|
|
if err != nil {
|
|
c.AbortWithStatus(http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
user, err := store.GetUserLogin(c, c.Param("login"))
|
|
if err != nil {
|
|
c.AbortWithStatus(http.StatusNotFound)
|
|
return
|
|
}
|
|
user.Admin = in.Admin
|
|
user.Active = in.Active
|
|
|
|
err = store.UpdateUser(c, user)
|
|
if err != nil {
|
|
c.AbortWithStatus(http.StatusConflict)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, user)
|
|
}
|
|
|
|
func PostUser(c *gin.Context) {
|
|
in := &model.User{}
|
|
err := c.Bind(in)
|
|
if err != nil {
|
|
c.String(http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
|
|
user := &model.User{}
|
|
user.Login = in.Login
|
|
user.Email = in.Email
|
|
user.Admin = in.Admin
|
|
user.Avatar = in.Avatar
|
|
user.Active = true
|
|
user.Hash = crypto.Rand()
|
|
|
|
err = store.CreateUser(c, user)
|
|
if err != nil {
|
|
c.String(http.StatusInternalServerError, err.Error())
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, user)
|
|
}
|
|
|
|
// swagger:route DELETE /users/{login} user deleteUserLogin
|
|
//
|
|
// Delete the user with the matching login.
|
|
//
|
|
// Responses:
|
|
// 200: user
|
|
//
|
|
func DeleteUser(c *gin.Context) {
|
|
user, err := store.GetUserLogin(c, c.Param("login"))
|
|
if err != nil {
|
|
c.String(404, "Cannot find user. %s", err)
|
|
return
|
|
}
|
|
if err = store.DeleteUser(c, user); err != nil {
|
|
c.String(500, "Error deleting user. %s", err)
|
|
} else {
|
|
c.String(200, "")
|
|
}
|
|
}
|