mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 14:01:26 +00:00
680d003a29
* Add linter revive * Add underscore to variable name to prevent shadowing * Remove unnecessary leading underscore * Revert changes to vendor file * export ConfigFetcher as interface * no 'yoda conditions' * rename envsubst Co-authored-by: 6543 <6543@obermui.de>
112 lines
2.5 KiB
Go
112 lines
2.5 KiB
Go
// Copyright 2018 Drone.IO Inc.
|
|
//
|
|
// 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
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// 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.
|
|
|
|
package api
|
|
|
|
import (
|
|
"encoding/base32"
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gorilla/securecookie"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
"github.com/woodpecker-ci/woodpecker/server/store"
|
|
)
|
|
|
|
func GetUsers(c *gin.Context) {
|
|
users, err := store.FromContext(c).GetUserList()
|
|
if err != nil {
|
|
c.String(500, "Error getting user list. %s", err)
|
|
return
|
|
}
|
|
c.JSON(200, users)
|
|
}
|
|
|
|
func GetUser(c *gin.Context) {
|
|
user, err := store.FromContext(c).GetUserLogin(c.Param("login"))
|
|
if err != nil {
|
|
c.String(404, "Cannot find user. %s", err)
|
|
return
|
|
}
|
|
c.JSON(200, user)
|
|
}
|
|
|
|
func PatchUser(c *gin.Context) {
|
|
_store := store.FromContext(c)
|
|
|
|
in := &model.User{}
|
|
err := c.Bind(in)
|
|
if err != nil {
|
|
c.AbortWithStatus(http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
user, err := _store.GetUserLogin(c.Param("login"))
|
|
if err != nil {
|
|
c.AbortWithStatus(http.StatusNotFound)
|
|
return
|
|
}
|
|
user.Active = in.Active
|
|
|
|
err = _store.UpdateUser(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{
|
|
Active: true,
|
|
Login: in.Login,
|
|
Email: in.Email,
|
|
Avatar: in.Avatar,
|
|
Hash: base32.StdEncoding.EncodeToString(
|
|
securecookie.GenerateRandomKey(32),
|
|
),
|
|
}
|
|
if err = user.Validate(); err != nil {
|
|
c.String(http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
if err = store.FromContext(c).CreateUser(user); err != nil {
|
|
c.String(http.StatusInternalServerError, err.Error())
|
|
return
|
|
}
|
|
c.JSON(http.StatusOK, user)
|
|
}
|
|
|
|
func DeleteUser(c *gin.Context) {
|
|
_store := store.FromContext(c)
|
|
|
|
user, err := _store.GetUserLogin(c.Param("login"))
|
|
if err != nil {
|
|
c.String(404, "Cannot find user. %s", err)
|
|
return
|
|
}
|
|
if err = _store.DeleteUser(user); err != nil {
|
|
c.String(500, "Error deleting user. %s", err)
|
|
return
|
|
}
|
|
c.String(200, "")
|
|
}
|