Files
Gogs/internal/route/api/v1/admin_user.go
ᴊᴏᴇ ᴄʜᴇɴ 94d6e53dc2 email: replace gomail with go-mail (#8164)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-10 17:44:01 -05:00

174 lines
4.5 KiB
Go

package v1
import (
"net/http"
log "unknwon.dev/clog/v2"
"gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/database"
"gogs.io/gogs/internal/email"
)
func parseLoginSource(c *context.APIContext, sourceID int64) {
if sourceID == 0 {
return
}
_, err := database.Handle.LoginSources().GetByID(c.Req.Context(), sourceID)
if err != nil {
if database.IsErrLoginSourceNotExist(err) {
c.ErrorStatus(http.StatusUnprocessableEntity, err)
} else {
c.Error(err, "get login source by ID")
}
return
}
}
type adminCreateUserRequest struct {
SourceID int64 `json:"source_id"`
LoginName string `json:"login_name"`
Username string `json:"username" binding:"Required;AlphaDashDot;MaxSize(35)"`
FullName string `json:"full_name" binding:"MaxSize(100)"`
Email string `json:"email" binding:"Required;Email;MaxSize(254)"`
Password string `json:"password" binding:"MaxSize(255)"`
SendNotify bool `json:"send_notify"`
}
func adminCreateUser(c *context.APIContext, form adminCreateUserRequest) {
parseLoginSource(c, form.SourceID)
if c.Written() {
return
}
u, err := database.Handle.Users().Create(
c.Req.Context(),
form.Username,
form.Email,
database.CreateUserOptions{
FullName: form.FullName,
Password: form.Password,
LoginSource: form.SourceID,
LoginName: form.LoginName,
Activated: true,
},
)
if err != nil {
if database.IsErrUserAlreadyExist(err) ||
database.IsErrEmailAlreadyUsed(err) ||
database.IsErrNameNotAllowed(err) {
c.ErrorStatus(http.StatusUnprocessableEntity, err)
} else {
c.Error(err, "create user")
}
return
}
log.Trace("Account %q created by admin %q", u.Name, c.User.Name)
// Send email notification.
if form.SendNotify && conf.Email.Enabled {
if err := email.SendRegisterNotifyMail(c.Context.Context, database.NewMailerUser(u)); err != nil {
log.Error("Failed to send register notify mail: %v", err)
}
}
c.JSON(http.StatusCreated, toUser(u))
}
type adminEditUserRequest struct {
SourceID int64 `json:"source_id"`
LoginName string `json:"login_name"`
FullName string `json:"full_name" binding:"MaxSize(100)"`
Email string `json:"email" binding:"Required;Email;MaxSize(254)"`
Password string `json:"password" binding:"MaxSize(255)"`
Website string `json:"website" binding:"MaxSize(50)"`
Location string `json:"location" binding:"MaxSize(50)"`
Active *bool `json:"active"`
Admin *bool `json:"admin"`
AllowGitHook *bool `json:"allow_git_hook"`
AllowImportLocal *bool `json:"allow_import_local"`
MaxRepoCreation *int `json:"max_repo_creation"`
}
func adminEditUser(c *context.APIContext, form adminEditUserRequest) {
u := getUserByParams(c)
if c.Written() {
return
}
parseLoginSource(c, form.SourceID)
if c.Written() {
return
}
opts := database.UpdateUserOptions{
LoginSource: &form.SourceID,
LoginName: &form.LoginName,
FullName: &form.FullName,
Website: &form.Website,
Location: &form.Location,
MaxRepoCreation: form.MaxRepoCreation,
IsActivated: form.Active,
IsAdmin: form.Admin,
AllowGitHook: form.AllowGitHook,
AllowImportLocal: form.AllowImportLocal,
ProhibitLogin: nil, // TODO: Add this option to API
}
if form.Password != "" {
opts.Password = &form.Password
}
if u.Email != form.Email {
opts.Email = &form.Email
}
err := database.Handle.Users().Update(c.Req.Context(), u.ID, opts)
if err != nil {
if database.IsErrEmailAlreadyUsed(err) {
c.ErrorStatus(http.StatusUnprocessableEntity, err)
} else {
c.Error(err, "update user")
}
return
}
log.Trace("Account updated by admin %q: %s", c.User.Name, u.Name)
u, err = database.Handle.Users().GetByID(c.Req.Context(), u.ID)
if err != nil {
c.Error(err, "get user")
return
}
c.JSONSuccess(toUser(u))
}
func adminDeleteUser(c *context.APIContext) {
u := getUserByParams(c)
if c.Written() {
return
}
if err := database.Handle.Users().DeleteByID(c.Req.Context(), u.ID, false); err != nil {
if database.IsErrUserOwnRepos(err) ||
database.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 adminCreatePublicKey(c *context.APIContext, form createPublicKeyRequest) {
u := getUserByParams(c)
if c.Written() {
return
}
createUserPublicKey(c, form, u.ID)
}