2018-05-17 09:35:00 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Copyright 2018 The Gitea 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 setting
|
|
|
|
|
|
|
|
import (
|
2021-04-05 21:00:52 +05:30
|
|
|
"net/http"
|
|
|
|
|
2018-05-17 09:35:00 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
tplSettingsSecurity base.TplName = "user/settings/security"
|
|
|
|
tplSettingsTwofaEnroll base.TplName = "user/settings/twofa_enroll"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Security render change user's password page and 2FA
|
|
|
|
func Security(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsSettingsSecurity"] = true
|
2021-01-21 02:47:46 +05:30
|
|
|
ctx.Data["RequireU2F"] = true
|
2018-05-17 09:35:00 +05:30
|
|
|
|
2021-08-11 06:01:13 +05:30
|
|
|
if ctx.FormString("openid.return_to") != "" {
|
2018-06-18 23:54:45 +05:30
|
|
|
settingsOpenIDVerify(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplSettingsSecurity)
|
2018-06-18 23:54:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteAccountLink delete a single account link
|
|
|
|
func DeleteAccountLink(ctx *context.Context) {
|
2021-07-29 07:12:15 +05:30
|
|
|
id := ctx.FormInt64("id")
|
2019-02-07 12:21:23 +05:30
|
|
|
if id <= 0 {
|
|
|
|
ctx.Flash.Error("Account link id is not given")
|
2018-06-18 23:54:45 +05:30
|
|
|
} else {
|
2019-02-07 12:21:23 +05:30
|
|
|
if _, err := models.RemoveAccountLink(ctx.User, id); err != nil {
|
|
|
|
ctx.Flash.Error("RemoveAccountLink: " + err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.remove_account_link_success"))
|
|
|
|
}
|
2018-06-18 23:54:45 +05:30
|
|
|
}
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2018-06-18 23:54:45 +05:30
|
|
|
"redirect": setting.AppSubURL + "/user/settings/security",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadSecurityData(ctx *context.Context) {
|
2018-05-17 09:35:00 +05:30
|
|
|
enrolled := true
|
|
|
|
_, err := models.GetTwoFactorByUID(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrTwoFactorNotEnrolled(err) {
|
|
|
|
enrolled = false
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("SettingsTwoFactor", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["TwofaEnrolled"] = enrolled
|
2018-05-19 19:42:37 +05:30
|
|
|
if enrolled {
|
|
|
|
ctx.Data["U2FRegistrations"], err = models.GetU2FRegistrationsByUID(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetU2FRegistrationsByUID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2018-05-17 09:35:00 +05:30
|
|
|
|
2020-08-28 13:39:33 +05:30
|
|
|
tokens, err := models.ListAccessTokens(models.ListAccessTokensOptions{UserID: ctx.User.ID})
|
2018-05-17 09:35:00 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ListAccessTokens", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Tokens"] = tokens
|
|
|
|
|
|
|
|
accountLinks, err := models.ListAccountLinks(ctx.User)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ListAccountLinks", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// map the provider display name with the LoginSource
|
|
|
|
sources := make(map[*models.LoginSource]string)
|
|
|
|
for _, externalAccount := range accountLinks {
|
|
|
|
if loginSource, err := models.GetLoginSourceByID(externalAccount.LoginSourceID); err == nil {
|
|
|
|
var providerDisplayName string
|
2021-08-06 06:41:08 +05:30
|
|
|
|
|
|
|
type DisplayNamed interface {
|
|
|
|
DisplayName() string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Named interface {
|
|
|
|
Name() string
|
|
|
|
}
|
|
|
|
|
|
|
|
if displayNamed, ok := loginSource.Cfg.(DisplayNamed); ok {
|
|
|
|
providerDisplayName = displayNamed.DisplayName()
|
|
|
|
} else if named, ok := loginSource.Cfg.(Named); ok {
|
|
|
|
providerDisplayName = named.Name()
|
2018-05-17 09:35:00 +05:30
|
|
|
} else {
|
|
|
|
providerDisplayName = loginSource.Name
|
|
|
|
}
|
|
|
|
sources[loginSource] = providerDisplayName
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["AccountLinks"] = sources
|
|
|
|
|
|
|
|
openid, err := models.GetUserOpenIDs(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserOpenIDs", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["OpenIDs"] = openid
|
|
|
|
}
|