mirror of https://github.com/gogs/gogs.git
156 lines
3.4 KiB
Go
156 lines
3.4 KiB
Go
// 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 admin
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
api "github.com/gogs/go-gogs-client"
|
|
log "unknwon.dev/clog/v2"
|
|
|
|
"gogs.io/gogs/internal/conf"
|
|
"gogs.io/gogs/internal/context"
|
|
"gogs.io/gogs/internal/db"
|
|
"gogs.io/gogs/internal/email"
|
|
"gogs.io/gogs/internal/route/api/v1/user"
|
|
"gogs.io/gogs/internal/userutil"
|
|
)
|
|
|
|
func parseLoginSource(c *context.APIContext, u *db.User, sourceID int64, loginName string) {
|
|
if sourceID == 0 {
|
|
return
|
|
}
|
|
|
|
source, err := db.LoginSources.GetByID(c.Req.Context(), sourceID)
|
|
if err != nil {
|
|
if db.IsErrLoginSourceNotExist(err) {
|
|
c.ErrorStatus(http.StatusUnprocessableEntity, err)
|
|
} else {
|
|
c.Error(err, "get login source by ID")
|
|
}
|
|
return
|
|
}
|
|
|
|
u.LoginSource = source.ID
|
|
u.LoginName = loginName
|
|
}
|
|
|
|
func CreateUser(c *context.APIContext, form api.CreateUserOption) {
|
|
u := &db.User{
|
|
Name: form.Username,
|
|
FullName: form.FullName,
|
|
Email: form.Email,
|
|
Password: form.Password,
|
|
IsActive: true,
|
|
}
|
|
|
|
parseLoginSource(c, u, form.SourceID, form.LoginName)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
if err := db.CreateUser(u); err != nil {
|
|
if db.IsErrUserAlreadyExist(err) ||
|
|
db.IsErrEmailAlreadyUsed(err) ||
|
|
db.IsErrNameNotAllowed(err) {
|
|
c.ErrorStatus(http.StatusUnprocessableEntity, err)
|
|
} else {
|
|
c.Error(err, "create user")
|
|
}
|
|
return
|
|
}
|
|
log.Trace("Account created by admin %q: %s", c.User.Name, u.Name)
|
|
|
|
// Send email notification.
|
|
if form.SendNotify && conf.Email.Enabled {
|
|
email.SendRegisterNotifyMail(c.Context.Context, db.NewMailerUser(u))
|
|
}
|
|
|
|
c.JSON(http.StatusCreated, u.APIFormat())
|
|
}
|
|
|
|
func EditUser(c *context.APIContext, form api.EditUserOption) {
|
|
u := user.GetUserByParams(c)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
parseLoginSource(c, u, form.SourceID, form.LoginName)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
if len(form.Password) > 0 {
|
|
u.Password = form.Password
|
|
var err error
|
|
if u.Salt, err = userutil.RandomSalt(); err != nil {
|
|
c.Error(err, "get user salt")
|
|
return
|
|
}
|
|
u.Password = userutil.EncodePassword(u.Password, u.Salt)
|
|
}
|
|
|
|
u.LoginName = form.LoginName
|
|
u.FullName = form.FullName
|
|
u.Email = form.Email
|
|
u.Website = form.Website
|
|
u.Location = form.Location
|
|
if form.Active != nil {
|
|
u.IsActive = *form.Active
|
|
}
|
|
if form.Admin != nil {
|
|
u.IsAdmin = *form.Admin
|
|
}
|
|
if form.AllowGitHook != nil {
|
|
u.AllowGitHook = *form.AllowGitHook
|
|
}
|
|
if form.AllowImportLocal != nil {
|
|
u.AllowImportLocal = *form.AllowImportLocal
|
|
}
|
|
if form.MaxRepoCreation != nil {
|
|
u.MaxRepoCreation = *form.MaxRepoCreation
|
|
}
|
|
|
|
if err := db.UpdateUser(u); err != nil {
|
|
if db.IsErrEmailAlreadyUsed(err) {
|
|
c.ErrorStatus(http.StatusUnprocessableEntity, err)
|
|
} else {
|
|
c.Error(err, "update user")
|
|
}
|
|
return
|
|
}
|
|
log.Trace("Account profile updated by admin %q: %s", c.User.Name, u.Name)
|
|
|
|
c.JSONSuccess(u.APIFormat())
|
|
}
|
|
|
|
func DeleteUser(c *context.APIContext) {
|
|
u := user.GetUserByParams(c)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
|
|
if err := db.DeleteUser(u); err != nil {
|
|
if db.IsErrUserOwnRepos(err) ||
|
|
db.IsErrUserHasOrgs(err) {
|
|
c.ErrorStatus(http.StatusUnprocessableEntity, err)
|
|
} else {
|
|
c.Error(err, "delete user")
|
|
}
|
|
return
|
|
}
|
|
log.Trace("Account deleted by admin(%s): %s", c.User.Name, u.Name)
|
|
|
|
c.NoContent()
|
|
}
|
|
|
|
func CreatePublicKey(c *context.APIContext, form api.CreateKeyOption) {
|
|
u := user.GetUserByParams(c)
|
|
if c.Written() {
|
|
return
|
|
}
|
|
user.CreateUserPublicKey(c, form, u.ID)
|
|
}
|