woodpecker/server/users.go

109 lines
2.4 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2016-05-02 19:21:25 +00:00
package server
2015-04-08 22:43:59 +00:00
import (
"encoding/base32"
2015-09-30 01:21:17 +00:00
"net/http"
2015-04-08 22:43:59 +00:00
2015-09-30 01:21:17 +00:00
"github.com/gin-gonic/gin"
"github.com/gorilla/securecookie"
2015-09-30 01:21:17 +00:00
2019-04-04 18:51:20 +00:00
"github.com/laszlocph/drone-oss-08/model"
"github.com/laszlocph/drone-oss-08/store"
2015-04-08 22:43:59 +00:00
)
func GetUsers(c *gin.Context) {
users, err := store.GetUserList(c)
2015-04-08 22:43:59 +00:00
if err != nil {
c.String(500, "Error getting user list. %s", err)
return
2015-04-08 22:43:59 +00:00
}
c.JSON(200, users)
2015-04-08 22:43:59 +00:00
}
func GetUser(c *gin.Context) {
user, err := store.GetUserLogin(c, c.Param("login"))
2015-04-08 22:43:59 +00:00
if err != nil {
c.String(404, "Cannot find user. %s", err)
2016-05-02 19:21:25 +00:00
return
2015-04-08 22:43:59 +00:00
}
2016-05-02 19:21:25 +00:00
c.JSON(200, user)
2015-04-08 22:43:59 +00:00
}
2015-09-30 01:21:17 +00:00
func PatchUser(c *gin.Context) {
in := &model.User{}
err := c.Bind(in)
2015-04-08 22:43:59 +00:00
if err != nil {
2015-09-30 01:21:17 +00:00
c.AbortWithStatus(http.StatusBadRequest)
2015-04-08 22:43:59 +00:00
return
}
user, err := store.GetUserLogin(c, c.Param("login"))
2015-09-30 01:21:17 +00:00
if err != nil {
c.AbortWithStatus(http.StatusNotFound)
2015-04-08 22:43:59 +00:00
return
}
2015-09-30 01:21:17 +00:00
user.Active = in.Active
err = store.UpdateUser(c, user)
2015-09-30 01:21:17 +00:00
if err != nil {
c.AbortWithStatus(http.StatusConflict)
return
}
c.JSON(http.StatusOK, user)
2015-09-30 01:21:17 +00:00
}
2015-04-08 22:43:59 +00:00
2015-09-30 01:21:17 +00:00
func PostUser(c *gin.Context) {
in := &model.User{}
err := c.Bind(in)
if err != nil {
c.String(http.StatusBadRequest, err.Error())
return
2015-04-08 22:43:59 +00:00
}
2016-05-02 19:21:25 +00:00
user := &model.User{
Active: true,
Login: in.Login,
Email: in.Email,
Avatar: in.Avatar,
Hash: base32.StdEncoding.EncodeToString(
securecookie.GenerateRandomKey(32),
),
2016-05-02 19:21:25 +00:00
}
2017-07-17 04:01:35 +00:00
if err = user.Validate(); err != nil {
c.String(http.StatusBadRequest, err.Error())
return
}
2016-05-02 19:21:25 +00:00
if err = store.CreateUser(c, user); err != nil {
2015-09-30 01:21:17 +00:00
c.String(http.StatusInternalServerError, err.Error())
return
2015-04-08 22:43:59 +00:00
}
c.JSON(http.StatusOK, user)
2015-04-08 22:43:59 +00:00
}
func DeleteUser(c *gin.Context) {
user, err := store.GetUserLogin(c, c.Param("login"))
2015-04-08 22:43:59 +00:00
if err != nil {
c.String(404, "Cannot find user. %s", err)
2015-04-08 22:43:59 +00:00
return
}
if err = store.DeleteUser(c, user); err != nil {
c.String(500, "Error deleting user. %s", err)
2016-05-02 19:21:25 +00:00
return
2015-04-08 22:43:59 +00:00
}
2016-05-02 19:21:25 +00:00
c.String(200, "")
2015-04-08 22:43:59 +00:00
}