2014-03-10 14:24:52 +05:30
|
|
|
// 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-08-25 23:37:08 +05:30
|
|
|
"strings"
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
"github.com/Unknwon/com"
|
2014-03-11 06:18:58 +05:30
|
|
|
|
2014-03-10 14:24:52 +05:30
|
|
|
"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 18:47:16 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-03-10 14:24:52 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
2014-07-26 09:54:27 +05:30
|
|
|
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"
|
|
|
|
SETTINGS_DELETE base.TplName = "user/settings/delete"
|
|
|
|
NOTIFICATION base.TplName = "user/notification"
|
|
|
|
SECURITY base.TplName = "user/security"
|
2014-06-23 08:41:12 +05:30
|
|
|
)
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
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-11 02:06:50 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
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 13:09:18 +05:30
|
|
|
|
2014-04-11 02:06:50 +05:30
|
|
|
if ctx.HasError() {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, SETTINGS_PROFILE)
|
2014-03-13 13:14:56 +05:30
|
|
|
return
|
2014-03-13 13:09:18 +05:30
|
|
|
}
|
|
|
|
|
2014-04-04 02:03:27 +05:30
|
|
|
// Check if user name has been changed.
|
2014-05-25 00:58:31 +05:30
|
|
|
if ctx.User.Name != form.UserName {
|
2014-04-04 02:03:27 +05:30
|
|
|
isExist, err := models.IsUserExist(form.UserName)
|
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "IsUserExist", err)
|
2014-04-04 02:03:27 +05:30
|
|
|
return
|
|
|
|
} else if isExist {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.RenderWithErr(ctx.Tr("form.username_been_taken"), SETTINGS_PROFILE, &form)
|
2014-04-04 02:03:27 +05:30
|
|
|
return
|
2014-05-25 00:58:31 +05:30
|
|
|
} else if err = models.ChangeUserName(ctx.User, form.UserName); err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
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-04 02:03:27 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Trace("User name changed: %s -> %s", ctx.User.Name, form.UserName)
|
2014-05-25 00:58:31 +05:30
|
|
|
ctx.User.Name = form.UserName
|
2014-03-13 13:09:18 +05:30
|
|
|
}
|
|
|
|
|
2014-05-25 00:58:31 +05:30
|
|
|
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 09:54:27 +05:30
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
2014-03-13 13:09:18 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Trace("User setting updated: %s", ctx.User.Name)
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.update_profile_success"))
|
2014-04-25 00:20:24 +05:30
|
|
|
ctx.Redirect("/user/settings")
|
2014-03-10 14:24:52 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
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 03:39:57 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
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 08:54:08 +05:30
|
|
|
|
2014-04-11 03:39:57 +05:30
|
|
|
if ctx.HasError() {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, SETTINGS_PASSWORD)
|
2014-03-14 10:42:07 +05:30
|
|
|
return
|
|
|
|
}
|
2014-03-13 13:36:35 +05:30
|
|
|
|
2014-04-11 03:39:57 +05:30
|
|
|
tmpUser := &models.User{
|
2014-07-26 09:54:27 +05:30
|
|
|
Passwd: form.OldPassword,
|
2014-05-25 00:58:31 +05:30
|
|
|
Salt: ctx.User.Salt,
|
2014-04-11 03:39:57 +05:30
|
|
|
}
|
|
|
|
tmpUser.EncodePasswd()
|
2014-05-25 00:58:31 +05:30
|
|
|
if ctx.User.Passwd != tmpUser.Passwd {
|
2014-07-26 09:54:27 +05:30
|
|
|
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 13:36:35 +05:30
|
|
|
} else {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.User.Passwd = form.Password
|
2014-05-25 00:58:31 +05:30
|
|
|
ctx.User.Salt = models.GetUserSalt()
|
|
|
|
ctx.User.EncodePasswd()
|
|
|
|
if err := models.UpdateUser(ctx.User); err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "UpdateUser", err)
|
2014-03-13 13:36:35 +05:30
|
|
|
return
|
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Trace("User password updated: %s", ctx.User.Name)
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.change_password_success"))
|
2014-03-13 13:36:35 +05:30
|
|
|
}
|
2014-07-26 09:54:27 +05:30
|
|
|
|
2014-04-25 00:20:24 +05:30
|
|
|
ctx.Redirect("/user/settings/password")
|
2014-03-13 13:36:35 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
func SettingsSSHKeys(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsSSHKeys"] = true
|
2014-07-20 21:32:59 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
var err error
|
|
|
|
ctx.Data["Keys"], err = models.ListPublicKey(ctx.User.Id)
|
2014-07-20 21:32:59 +05:30
|
|
|
if err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "ssh.ListPublicKey", err)
|
|
|
|
return
|
2014-07-20 21:32:59 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, SETTINGS_SSH_KEYS)
|
2014-07-20 21:32:59 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
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 06:18:58 +05:30
|
|
|
|
|
|
|
// Delete SSH key.
|
2014-07-26 09:54:27 +05:30
|
|
|
if ctx.Query("_method") == "DELETE" {
|
|
|
|
id := com.StrTo(ctx.Query("id")).MustInt64()
|
|
|
|
if id <= 0 {
|
2014-03-10 18:42:49 +05:30
|
|
|
return
|
|
|
|
}
|
2014-03-11 06:18:58 +05:30
|
|
|
|
2014-05-07 01:58:52 +05:30
|
|
|
if err = models.DeletePublicKey(&models.PublicKey{Id: id}); err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Handle(500, "DeletePublicKey", err)
|
2014-03-10 18:42:49 +05:30
|
|
|
} else {
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Trace("SSH key deleted: %s", ctx.User.Name)
|
|
|
|
ctx.Redirect("/user/settings/ssh")
|
2014-03-10 18:42:49 +05:30
|
|
|
}
|
2014-03-11 09:11:38 +05:30
|
|
|
return
|
2014-03-10 18:42:49 +05:30
|
|
|
}
|
2014-03-11 06:18:58 +05:30
|
|
|
|
|
|
|
// Add new SSH key.
|
2014-03-15 20:04:33 +05:30
|
|
|
if ctx.Req.Method == "POST" {
|
2014-04-14 06:30:12 +05:30
|
|
|
if ctx.HasError() {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, SETTINGS_SSH_KEYS)
|
2014-03-11 06:18:58 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-08-25 21:24:50 +05:30
|
|
|
// Remove newline characters from form.KeyContent
|
2014-08-25 23:37:08 +05:30
|
|
|
cleanContent := strings.Replace(form.Content, "\n", "", -1)
|
2014-08-25 21:24:50 +05:30
|
|
|
|
2014-08-25 22:50:44 +05:30
|
|
|
if ok, err := models.CheckPublicKeyString(cleanContent); !ok {
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.Flash.Error(ctx.Tr("form.invalid_ssh_key", err.Error()))
|
2014-05-06 01:51:43 +05:30
|
|
|
ctx.Redirect("/user/settings/ssh")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-04-28 02:31:39 +05:30
|
|
|
k := &models.PublicKey{
|
|
|
|
OwnerId: ctx.User.Id,
|
2014-07-26 09:54:27 +05:30
|
|
|
Name: form.SSHTitle,
|
2014-08-25 22:50:44 +05:30
|
|
|
Content: cleanContent,
|
2014-03-10 14:24:52 +05:30
|
|
|
}
|
2014-03-11 06:18:58 +05:30
|
|
|
if err := models.AddPublicKey(k); err != nil {
|
2014-07-26 09:54:27 +05:30
|
|
|
if err == models.ErrKeyAlreadyExist {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.ssh_key_been_used"), SETTINGS_SSH_KEYS, &form)
|
2014-03-16 15:55:16 +05:30
|
|
|
return
|
|
|
|
}
|
2014-04-14 06:30:12 +05:30
|
|
|
ctx.Handle(500, "ssh.AddPublicKey", err)
|
2014-03-10 14:24:52 +05:30
|
|
|
return
|
|
|
|
} else {
|
2014-07-26 09:54:27 +05:30
|
|
|
log.Trace("SSH key added: %s", ctx.User.Name)
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.add_key_success"))
|
2014-04-25 00:20:24 +05:30
|
|
|
ctx.Redirect("/user/settings/ssh")
|
2014-04-14 06:30:12 +05:30
|
|
|
return
|
2014-03-10 14:24:52 +05:30
|
|
|
}
|
|
|
|
}
|
2014-03-11 06:18:58 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
ctx.HTML(200, SETTINGS_SSH_KEYS)
|
2014-03-10 14:24:52 +05:30
|
|
|
}
|
2014-03-14 14:42:28 +05:30
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
func SettingsSocial(ctx *middleware.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsUserSettings"] = true
|
|
|
|
ctx.Data["PageIsSettingsSocial"] = true
|
2014-08-10 05:55:02 +05:30
|
|
|
|
|
|
|
// 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 09:54:27 +05:30
|
|
|
ctx.HTML(200, SETTINGS_SOCIAL)
|
2014-03-14 14:42:28 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 09:54:27 +05:30
|
|
|
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 11:42:21 +05:30
|
|
|
return
|
2014-07-26 09:54:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
ctx.HTML(200, SETTINGS_DELETE)
|
2014-03-14 14:42:28 +05:30
|
|
|
}
|