| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- 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 {
- email.SendRegisterNotifyMail(c.Context.Context, database.NewMailerUser(u))
- }
- 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)
- }
|