aboutsummaryrefslogtreecommitdiff
path: root/routes/api/v1/admin/user.go
diff options
context:
space:
mode:
Diffstat (limited to 'routes/api/v1/admin/user.go')
-rw-r--r--routes/api/v1/admin/user.go160
1 files changed, 160 insertions, 0 deletions
diff --git a/routes/api/v1/admin/user.go b/routes/api/v1/admin/user.go
new file mode 100644
index 00000000..623911fd
--- /dev/null
+++ b/routes/api/v1/admin/user.go
@@ -0,0 +1,160 @@
+// 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 (
+ log "gopkg.in/clog.v1"
+
+ api "github.com/gogits/go-gogs-client"
+
+ "github.com/gogits/gogs/models"
+ "github.com/gogits/gogs/pkg/context"
+ "github.com/gogits/gogs/pkg/mailer"
+ "github.com/gogits/gogs/pkg/setting"
+ "github.com/gogits/gogs/routes/api/v1/user"
+)
+
+func parseLoginSource(c *context.APIContext, u *models.User, sourceID int64, loginName string) {
+ if sourceID == 0 {
+ return
+ }
+
+ source, err := models.GetLoginSourceByID(sourceID)
+ if err != nil {
+ if models.IsErrLoginSourceNotExist(err) {
+ c.Error(422, "", err)
+ } else {
+ c.Error(500, "GetLoginSourceByID", err)
+ }
+ return
+ }
+
+ u.LoginType = source.Type
+ u.LoginSource = source.ID
+ u.LoginName = loginName
+}
+
+// https://github.com/gogits/go-gogs-client/wiki/Administration-Users#create-a-new-user
+func CreateUser(c *context.APIContext, form api.CreateUserOption) {
+ u := &models.User{
+ Name: form.Username,
+ FullName: form.FullName,
+ Email: form.Email,
+ Passwd: form.Password,
+ IsActive: true,
+ LoginType: models.LOGIN_PLAIN,
+ }
+
+ parseLoginSource(c, u, form.SourceID, form.LoginName)
+ if c.Written() {
+ return
+ }
+
+ if err := models.CreateUser(u); err != nil {
+ if models.IsErrUserAlreadyExist(err) ||
+ models.IsErrEmailAlreadyUsed(err) ||
+ models.IsErrNameReserved(err) ||
+ models.IsErrNamePatternNotAllowed(err) {
+ c.Error(422, "", err)
+ } else {
+ c.Error(500, "CreateUser", err)
+ }
+ return
+ }
+ log.Trace("Account created by admin (%s): %s", c.User.Name, u.Name)
+
+ // Send email notification.
+ if form.SendNotify && setting.MailService != nil {
+ mailer.SendRegisterNotifyMail(c.Context.Context, models.NewMailerUser(u))
+ }
+
+ c.JSON(201, u.APIFormat())
+}
+
+// https://github.com/gogits/go-gogs-client/wiki/Administration-Users#edit-an-existing-user
+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.Passwd = form.Password
+ var err error
+ if u.Salt, err = models.GetUserSalt(); err != nil {
+ c.Error(500, "UpdateUser", err)
+ return
+ }
+ u.EncodePasswd()
+ }
+
+ 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 := models.UpdateUser(u); err != nil {
+ if models.IsErrEmailAlreadyUsed(err) {
+ c.Error(422, "", err)
+ } else {
+ c.Error(500, "UpdateUser", err)
+ }
+ return
+ }
+ log.Trace("Account profile updated by admin (%s): %s", c.User.Name, u.Name)
+
+ c.JSON(200, u.APIFormat())
+}
+
+// https://github.com/gogits/go-gogs-client/wiki/Administration-Users#delete-a-user
+func DeleteUser(c *context.APIContext) {
+ u := user.GetUserByParams(c)
+ if c.Written() {
+ return
+ }
+
+ if err := models.DeleteUser(u); err != nil {
+ if models.IsErrUserOwnRepos(err) ||
+ models.IsErrUserHasOrgs(err) {
+ c.Error(422, "", err)
+ } else {
+ c.Error(500, "DeleteUser", err)
+ }
+ return
+ }
+ log.Trace("Account deleted by admin(%s): %s", c.User.Name, u.Name)
+
+ c.Status(204)
+}
+
+// https://github.com/gogits/go-gogs-client/wiki/Administration-Users#create-a-public-key-for-user
+func CreatePublicKey(c *context.APIContext, form api.CreateKeyOption) {
+ u := user.GetUserByParams(c)
+ if c.Written() {
+ return
+ }
+ user.CreateUserPublicKey(c, form, u.ID)
+}