2016-04-02 14:40:07 +02:00
|
|
|
package projects
|
|
|
|
|
|
|
|
import (
|
2020-12-03 14:51:15 +01:00
|
|
|
"github.com/ansible-semaphore/semaphore/api/helpers"
|
2020-12-04 23:41:26 +01:00
|
|
|
"github.com/ansible-semaphore/semaphore/db"
|
2017-02-23 00:21:49 +01:00
|
|
|
"net/http"
|
2016-04-17 12:41:36 +02:00
|
|
|
"strconv"
|
2016-04-09 21:09:57 +02:00
|
|
|
|
2020-12-01 20:06:49 +01:00
|
|
|
log "github.com/Sirupsen/logrus"
|
2017-02-23 00:21:49 +01:00
|
|
|
"github.com/gorilla/context"
|
2016-04-02 14:40:07 +02:00
|
|
|
)
|
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// UserMiddleware ensures a user exists and loads it to the context
|
2019-07-09 18:14:06 +02:00
|
|
|
func UserMiddleware(next http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2020-12-04 23:41:26 +01:00
|
|
|
project := context.Get(r, "project").(db.Project)
|
2020-12-03 14:51:15 +01:00
|
|
|
userID, err := helpers.GetIntParam("user_id", w, r)
|
2019-07-09 18:14:06 +02:00
|
|
|
if err != nil {
|
2016-04-09 21:09:57 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-17 15:00:05 +01:00
|
|
|
_, err = helpers.Store(r).GetProjectUser(project.ID, userID)
|
2019-07-09 18:14:06 +02:00
|
|
|
|
2020-12-17 15:00:05 +01:00
|
|
|
if err != nil {
|
|
|
|
helpers.WriteError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
user, err := helpers.Store(r).GetUser(userID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
helpers.WriteError(w, err)
|
|
|
|
return
|
2019-07-09 18:14:06 +02:00
|
|
|
}
|
2016-04-09 21:09:57 +02:00
|
|
|
|
2019-07-09 18:14:06 +02:00
|
|
|
context.Set(r, "projectUser", user)
|
|
|
|
next.ServeHTTP(w, r)
|
|
|
|
})
|
2016-04-04 15:44:34 +02:00
|
|
|
}
|
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// GetUsers returns all users in a project
|
2019-07-09 18:11:01 +02:00
|
|
|
func GetUsers(w http.ResponseWriter, r *http.Request) {
|
2020-12-04 23:22:05 +01:00
|
|
|
|
|
|
|
// get single user if user ID specified in the request
|
2020-11-03 21:56:22 +01:00
|
|
|
if user := context.Get(r, "projectUser"); user != nil {
|
2020-12-04 23:41:26 +01:00
|
|
|
helpers.WriteJSON(w, http.StatusOK, user.(db.User))
|
2020-11-03 21:56:22 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-04 23:41:26 +01:00
|
|
|
project := context.Get(r, "project").(db.Project)
|
2020-12-17 15:00:05 +01:00
|
|
|
params := db.RetrieveQueryParams{
|
|
|
|
SortBy: r.URL.Query().Get("sort"),
|
|
|
|
SortInverted: r.URL.Query().Get("order") == desc,
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
|
|
|
|
2020-12-17 15:00:05 +01:00
|
|
|
users, err := helpers.Store(r).GetProjectUsers(project.ID, params)
|
2019-07-09 18:11:01 +02:00
|
|
|
|
2020-12-17 15:00:05 +01:00
|
|
|
if err != nil {
|
|
|
|
helpers.WriteError(w, err)
|
|
|
|
return
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 14:51:15 +01:00
|
|
|
helpers.WriteJSON(w, http.StatusOK, users)
|
2016-04-02 14:40:07 +02:00
|
|
|
}
|
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// AddUser adds a user to a projects team in the database
|
2019-07-09 18:11:01 +02:00
|
|
|
func AddUser(w http.ResponseWriter, r *http.Request) {
|
2020-12-04 23:41:26 +01:00
|
|
|
project := context.Get(r, "project").(db.Project)
|
2021-08-20 08:28:50 +02:00
|
|
|
var projectUser struct {
|
2019-07-09 18:11:01 +02:00
|
|
|
UserID int `json:"user_id" binding:"required"`
|
|
|
|
Admin bool `json:"admin"`
|
|
|
|
}
|
|
|
|
|
2021-08-20 08:28:50 +02:00
|
|
|
if !helpers.Bind(w, r, &projectUser) {
|
2019-07-09 18:11:01 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-20 08:28:50 +02:00
|
|
|
_, err := helpers.Store(r).CreateProjectUser(db.ProjectUser{ProjectID: project.ID, UserID: projectUser.UserID, Admin: projectUser.Admin})
|
2020-12-01 20:06:49 +01:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
w.WriteHeader(http.StatusConflict)
|
|
|
|
return
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
|
|
|
|
2021-08-20 08:28:50 +02:00
|
|
|
user := context.Get(r, "user").(*db.User)
|
2019-07-09 18:11:01 +02:00
|
|
|
objType := "user"
|
2021-08-20 08:28:50 +02:00
|
|
|
desc := "User ID " + strconv.Itoa(projectUser.UserID) + " added to team"
|
2020-12-01 20:06:49 +01:00
|
|
|
|
2020-12-04 23:41:26 +01:00
|
|
|
_, err = helpers.Store(r).CreateEvent(db.Event{
|
2021-08-20 08:28:50 +02:00
|
|
|
UserID: &user.ID,
|
2019-07-09 18:11:01 +02:00
|
|
|
ProjectID: &project.ID,
|
|
|
|
ObjectType: &objType,
|
2021-08-20 08:28:50 +02:00
|
|
|
ObjectID: &projectUser.UserID,
|
2019-07-09 18:11:01 +02:00
|
|
|
Description: &desc,
|
2020-12-01 20:06:49 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err)
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
2016-04-02 14:40:07 +02:00
|
|
|
}
|
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// RemoveUser removes a user from a project team
|
2019-07-09 18:11:01 +02:00
|
|
|
func RemoveUser(w http.ResponseWriter, r *http.Request) {
|
2020-12-04 23:41:26 +01:00
|
|
|
project := context.Get(r, "project").(db.Project)
|
2021-08-20 08:28:50 +02:00
|
|
|
projectUser := context.Get(r, "projectUser").(db.User)
|
2019-07-09 18:11:01 +02:00
|
|
|
|
2021-08-20 08:28:50 +02:00
|
|
|
err := helpers.Store(r).DeleteProjectUser(project.ID, projectUser.ID)
|
2020-12-01 20:06:49 +01:00
|
|
|
|
|
|
|
if err != nil {
|
2020-12-17 15:00:05 +01:00
|
|
|
helpers.WriteError(w, err)
|
2020-12-01 20:06:49 +01:00
|
|
|
return
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
|
|
|
|
2021-08-20 08:28:50 +02:00
|
|
|
user := context.Get(r, "user").(*db.User)
|
2019-07-09 18:11:01 +02:00
|
|
|
objType := "user"
|
2021-08-20 08:28:50 +02:00
|
|
|
desc := "User ID " + strconv.Itoa(projectUser.ID) + " removed from team"
|
2020-12-01 20:06:49 +01:00
|
|
|
|
2020-12-04 23:41:26 +01:00
|
|
|
_, err = helpers.Store(r).CreateEvent(db.Event{
|
2021-08-20 08:28:50 +02:00
|
|
|
UserID: &user.ID,
|
2019-07-09 18:11:01 +02:00
|
|
|
ProjectID: &project.ID,
|
|
|
|
ObjectType: &objType,
|
2021-08-20 08:28:50 +02:00
|
|
|
ObjectID: &projectUser.ID,
|
2019-07-09 18:11:01 +02:00
|
|
|
Description: &desc,
|
2020-12-01 20:06:49 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err)
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusNoContent)
|
2016-04-02 14:40:07 +02:00
|
|
|
}
|
2016-04-04 15:44:34 +02:00
|
|
|
|
2018-03-27 22:12:47 +02:00
|
|
|
// MakeUserAdmin writes the admin flag to the users account
|
2019-07-09 18:11:01 +02:00
|
|
|
func MakeUserAdmin(w http.ResponseWriter, r *http.Request) {
|
2020-12-04 23:41:26 +01:00
|
|
|
project := context.Get(r, "project").(db.Project)
|
|
|
|
user := context.Get(r, "projectUser").(db.User)
|
2020-12-17 15:00:05 +01:00
|
|
|
admin := true
|
2016-04-09 21:09:57 +02:00
|
|
|
|
2019-07-09 18:11:01 +02:00
|
|
|
if r.Method == "DELETE" {
|
|
|
|
// strip admin
|
2020-12-17 15:00:05 +01:00
|
|
|
admin = false
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
2016-04-04 15:44:34 +02:00
|
|
|
|
2020-12-17 15:00:05 +01:00
|
|
|
err := helpers.Store(r).UpdateProjectUser(db.ProjectUser{UserID: user.ID, ProjectID: project.ID, Admin: admin})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
helpers.WriteError(w, err)
|
|
|
|
return
|
2019-07-09 18:11:01 +02:00
|
|
|
}
|
2016-04-09 21:09:57 +02:00
|
|
|
|
2019-07-09 18:11:01 +02:00
|
|
|
w.WriteHeader(http.StatusNoContent)
|
2016-04-04 15:44:34 +02:00
|
|
|
}
|