2014-03-10 09:54:52 +01:00
|
|
|
// Copyright 2014 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 user
|
|
|
|
|
|
|
|
import (
|
2014-07-26 06:24:27 +02:00
|
|
|
"github.com/Unknwon/com"
|
2014-03-11 01:48:58 +01:00
|
|
|
|
2014-03-10 09:54:52 +01:00
|
|
|
"github.com/gogits/gogs/models"
|
|
|
|
"github.com/gogits/gogs/modules/auth"
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-03-15 14:17:16 +01:00
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-03-10 09:54:52 +01:00
|
|
|
)
|
|
|
|
|
2014-06-23 05:11:12 +02:00
|
|
|
const (
|
2014-07-26 06:24:27 +02:00
|
|
|
SETTINGS_PROFILE base.TplName = "user/settings/profile"
|
|
|
|
SETTINGS_PASSWORD base.TplName = "user/settings/password"
|
|
|
|
SETTINGS_SSH_KEYS base.TplName = "user/settings/sshkeys"
|
|
|
|
SETTINGS_SOCIAL base.TplName = "user/settings/social"
|
2014-07-26 08:28:04 +02:00
|
|
|
SETTINGS_ORGS base.TplName = "user/settings/orgs"
|
2014-07-26 06:24:27 +02:00
|
|
|
SETTINGS_DELETE base.TplName = "user/settings/delete"
|
|
|
|
NOTIFICATION base.TplName = "user/notification"
|
|
|
|
SECURITY base.TplName = "user/security"
|
2014-06-23 05:11:12 +02:00
|
|
|
)
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func Settings(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsProfile"] = true
|
|
|
|
ctx.HTML(200, SETTINGS_PROFILE)
|
2014-04-10 22:36:50 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func SettingsPost(ctx *middleware.Context, form auth.UpdateProfileForm) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsProfile"] = true
|
2014-03-13 08:39:18 +01:00
|
|
|
|
2014-04-10 22:36:50 +02:00
|
|
|
if ctx.HasError() {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.HTML(200, SETTINGS_PROFILE)
|
2014-03-13 08:44:56 +01:00
|
|
|
return
|
2014-03-13 08:39:18 +01:00
|
|
|
}
|
|
|
|
|
2014-04-03 22:33:27 +02:00
|
|
|
// Check if user name has been changed.
|
2014-05-24 21:28:31 +02:00
|
|
|
if ctx.User.Name != form.UserName {
|
2014-04-03 22:33:27 +02:00
|
|
|
isExist, err := models.IsUserExist(form.UserName)
|
|
|
|
if err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.Handle(500, "IsUserExist", err)
|
2014-04-03 22:33:27 +02:00
|
|
|
return
|
|
|
|
} else if isExist {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.username_been_taken"), SETTINGS_PROFILE, &form)
|
2014-04-03 22:33:27 +02:00
|
|
|
return
|
2014-05-24 21:28:31 +02:00
|
|
|
} else if err = models.ChangeUserName(ctx.User, form.UserName); err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
if err == models.ErrUserNameIllegal {
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.illegal_username"))
|
|
|
|
ctx.Redirect("/user/settings")
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
ctx.Handle(500, "ChangeUserName", err)
|
|
|
|
}
|
2014-04-03 22:33:27 +02:00
|
|
|
return
|
|
|
|
}
|
2014-07-26 06:24:27 +02:00
|
|
|
log.Trace("User name changed: %s -> %s", ctx.User.Name, form.UserName)
|
2014-05-24 21:28:31 +02:00
|
|
|
ctx.User.Name = form.UserName
|
2014-03-13 08:39:18 +01:00
|
|
|
}
|
|
|
|
|
2014-05-24 21:28:31 +02:00
|
|
|
ctx.User.FullName = form.FullName
|
|
|
|
ctx.User.Email = form.Email
|
|
|
|
ctx.User.Website = form.Website
|
|
|
|
ctx.User.Location = form.Location
|
|
|
|
ctx.User.Avatar = base.EncodeMd5(form.Avatar)
|
|
|
|
ctx.User.AvatarEmail = form.Avatar
|
|
|
|
if err := models.UpdateUser(ctx.User); err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
2014-03-13 08:39:18 +01:00
|
|
|
return
|
|
|
|
}
|
2014-07-26 06:24:27 +02:00
|
|
|
log.Trace("User setting updated: %s", ctx.User.Name)
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.update_profile_success"))
|
2014-04-24 20:50:24 +02:00
|
|
|
ctx.Redirect("/user/settings")
|
2014-03-10 09:54:52 +01:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func SettingsPassword(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsPassword"] = true
|
|
|
|
ctx.HTML(200, SETTINGS_PASSWORD)
|
2014-04-11 00:09:57 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func SettingsPasswordPost(ctx *middleware.Context, form auth.ChangePasswordForm) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsPassword"] = true
|
2014-03-14 04:24:08 +01:00
|
|
|
|
2014-04-11 00:09:57 +02:00
|
|
|
if ctx.HasError() {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.HTML(200, SETTINGS_PASSWORD)
|
2014-03-14 06:12:07 +01:00
|
|
|
return
|
|
|
|
}
|
2014-03-13 09:06:35 +01:00
|
|
|
|
2014-04-11 00:09:57 +02:00
|
|
|
tmpUser := &models.User{
|
2014-07-26 06:24:27 +02:00
|
|
|
Passwd: form.OldPassword,
|
2014-05-24 21:28:31 +02:00
|
|
|
Salt: ctx.User.Salt,
|
2014-04-11 00:09:57 +02:00
|
|
|
}
|
|
|
|
tmpUser.EncodePasswd()
|
2014-05-24 21:28:31 +02:00
|
|
|
if ctx.User.Passwd != tmpUser.Passwd {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.Flash.Error(ctx.Tr("settings.password_incorrect"))
|
|
|
|
} else if form.Password != form.Retype {
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.password_not_match"))
|
2014-03-13 09:06:35 +01:00
|
|
|
} else {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.User.Passwd = form.Password
|
2014-05-24 21:28:31 +02:00
|
|
|
ctx.User.Salt = models.GetUserSalt()
|
|
|
|
ctx.User.EncodePasswd()
|
|
|
|
if err := models.UpdateUser(ctx.User); err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
2014-03-13 09:06:35 +01:00
|
|
|
return
|
|
|
|
}
|
2014-07-26 06:24:27 +02:00
|
|
|
log.Trace("User password updated: %s", ctx.User.Name)
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.change_password_success"))
|
2014-03-13 09:06:35 +01:00
|
|
|
}
|
2014-07-26 06:24:27 +02:00
|
|
|
|
2014-04-24 20:50:24 +02:00
|
|
|
ctx.Redirect("/user/settings/password")
|
2014-03-13 09:06:35 +01:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func SettingsSSHKeys(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsSSHKeys"] = true
|
2014-07-20 18:02:59 +02:00
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
var err error
|
|
|
|
ctx.Data["Keys"], err = models.ListPublicKey(ctx.User.Id)
|
2014-07-20 18:02:59 +02:00
|
|
|
if err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.Handle(500, "ssh.ListPublicKey", err)
|
|
|
|
return
|
2014-07-20 18:02:59 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.HTML(200, SETTINGS_SSH_KEYS)
|
2014-07-20 18:02:59 +02:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func SettingsSSHKeysPost(ctx *middleware.Context, form auth.AddSSHKeyForm) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsSSHKeys"] = true
|
|
|
|
|
|
|
|
var err error
|
|
|
|
ctx.Data["Keys"], err = models.ListPublicKey(ctx.User.Id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "ssh.ListPublicKey", err)
|
|
|
|
return
|
|
|
|
}
|
2014-03-11 01:48:58 +01:00
|
|
|
|
|
|
|
// Delete SSH key.
|
2014-07-26 06:24:27 +02:00
|
|
|
if ctx.Query("_method") == "DELETE" {
|
|
|
|
id := com.StrTo(ctx.Query("id")).MustInt64()
|
|
|
|
if id <= 0 {
|
2014-03-10 14:12:49 +01:00
|
|
|
return
|
|
|
|
}
|
2014-03-11 01:48:58 +01:00
|
|
|
|
2014-05-06 22:28:52 +02:00
|
|
|
if err = models.DeletePublicKey(&models.PublicKey{Id: id}); err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.Handle(500, "DeletePublicKey", err)
|
2014-03-10 14:12:49 +01:00
|
|
|
} else {
|
2014-07-26 06:24:27 +02:00
|
|
|
log.Trace("SSH key deleted: %s", ctx.User.Name)
|
|
|
|
ctx.Redirect("/user/settings/ssh")
|
2014-03-10 14:12:49 +01:00
|
|
|
}
|
2014-03-11 04:41:38 +01:00
|
|
|
return
|
2014-03-10 14:12:49 +01:00
|
|
|
}
|
2014-03-11 01:48:58 +01:00
|
|
|
|
|
|
|
// Add new SSH key.
|
2014-03-15 15:34:33 +01:00
|
|
|
if ctx.Req.Method == "POST" {
|
2014-04-14 03:00:12 +02:00
|
|
|
if ctx.HasError() {
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.HTML(200, SETTINGS_SSH_KEYS)
|
2014-03-11 01:48:58 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
if ok, err := models.CheckPublicKeyString(form.Content); !ok {
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error()))
|
2014-05-05 22:21:43 +02:00
|
|
|
ctx.Redirect("/user/settings/ssh")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-27 23:01:39 +02:00
|
|
|
k := &models.PublicKey{
|
|
|
|
OwnerId: ctx.User.Id,
|
2014-07-26 06:24:27 +02:00
|
|
|
Name: form.SSHTitle,
|
|
|
|
Content: form.Content,
|
2014-03-10 09:54:52 +01:00
|
|
|
}
|
2014-03-11 01:48:58 +01:00
|
|
|
if err := models.AddPublicKey(k); err != nil {
|
2014-07-26 06:24:27 +02:00
|
|
|
if err == models.ErrKeyAlreadyExist {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.ssh_key_been_used"), SETTINGS_SSH_KEYS, &form)
|
2014-03-16 11:25:16 +01:00
|
|
|
return
|
|
|
|
}
|
2014-04-14 03:00:12 +02:00
|
|
|
ctx.Handle(500, "ssh.AddPublicKey", err)
|
2014-03-10 09:54:52 +01:00
|
|
|
return
|
|
|
|
} else {
|
2014-07-26 06:24:27 +02:00
|
|
|
log.Trace("SSH key added: %s", ctx.User.Name)
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.add_key_success"))
|
2014-04-24 20:50:24 +02:00
|
|
|
ctx.Redirect("/user/settings/ssh")
|
2014-04-14 03:00:12 +02:00
|
|
|
return
|
2014-03-10 09:54:52 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-11 01:48:58 +01:00
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.HTML(200, SETTINGS_SSH_KEYS)
|
2014-03-10 09:54:52 +01:00
|
|
|
}
|
2014-03-14 10:12:28 +01:00
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func SettingsSocial(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsSocial"] = true
|
2014-08-10 02:25:02 +02:00
|
|
|
|
|
|
|
// Unbind social account.
|
|
|
|
remove, _ := com.StrTo(ctx.Query("remove")).Int64()
|
|
|
|
if remove > 0 {
|
|
|
|
if err := models.DeleteOauth2ById(remove); err != nil {
|
|
|
|
ctx.Handle(500, "DeleteOauth2ById", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.unbind_success"))
|
|
|
|
ctx.Redirect("/user/settings/social")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
socials, err := models.GetOauthByUserId(ctx.User.Id)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Handle(500, "GetOauthByUserId", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Socials"] = socials
|
2014-07-26 06:24:27 +02:00
|
|
|
ctx.HTML(200, SETTINGS_SOCIAL)
|
2014-03-14 10:12:28 +01:00
|
|
|
}
|
|
|
|
|
2014-07-26 08:28:04 +02:00
|
|
|
func SettingsOrgs(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsOrgs"] = true
|
|
|
|
ctx.HTML(200, SETTINGS_ORGS)
|
|
|
|
}
|
|
|
|
|
2014-07-26 06:24:27 +02:00
|
|
|
func SettingsDelete(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsDelete"] = true
|
|
|
|
|
|
|
|
if ctx.Req.Method == "POST" {
|
|
|
|
// tmpUser := models.User{
|
|
|
|
// Passwd: ctx.Query("password"),
|
|
|
|
// Salt: ctx.User.Salt,
|
|
|
|
// }
|
|
|
|
// tmpUser.EncodePasswd()
|
|
|
|
// if tmpUser.Passwd != ctx.User.Passwd {
|
|
|
|
// ctx.Flash.Error("Password is not correct. Make sure you are owner of this account.")
|
|
|
|
// } else {
|
|
|
|
if err := models.DeleteUser(ctx.User); err != nil {
|
|
|
|
switch err {
|
|
|
|
case models.ErrUserOwnRepos:
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.still_own_repo"))
|
|
|
|
ctx.Redirect("/user/settings/delete")
|
|
|
|
default:
|
|
|
|
ctx.Handle(500, "DeleteUser", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Trace("Account deleted: %s", ctx.User.Name)
|
|
|
|
ctx.Redirect("/")
|
|
|
|
}
|
2014-08-14 08:12:21 +02:00
|
|
|
return
|
2014-07-26 06:24:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.HTML(200, SETTINGS_DELETE)
|
2014-03-14 10:12:28 +01:00
|
|
|
}
|