2018-05-17 04:05:00 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2017-03-17 14:16:08 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-05-17 04:05:00 +00:00
|
|
|
package setting
|
2017-03-17 14:16:08 +00:00
|
|
|
|
|
|
|
import (
|
2021-04-05 15:30:52 +00:00
|
|
|
"net/http"
|
|
|
|
|
2017-03-17 14:16:08 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth/openid"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-04-06 19:44:05 +00:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2017-03-17 14:16:08 +00:00
|
|
|
)
|
|
|
|
|
2018-05-17 04:05:00 +00:00
|
|
|
// OpenIDPost response for change user's openid
|
2021-01-26 15:36:53 +00:00
|
|
|
func OpenIDPost(ctx *context.Context) {
|
2021-04-06 19:44:05 +00:00
|
|
|
form := web.GetForm(ctx).(*forms.AddOpenIDForm)
|
2017-03-17 14:16:08 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
2018-05-15 10:07:32 +00:00
|
|
|
ctx.Data["PageIsSettingsSecurity"] = true
|
2017-03-17 14:16:08 +00:00
|
|
|
|
|
|
|
if ctx.HasError() {
|
2018-06-18 18:24:45 +00:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplSettingsSecurity)
|
2017-03-17 14:16:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// WARNING: specifying a wrong OpenID here could lock
|
|
|
|
// a user out of her account, would be better to
|
|
|
|
// verify/confirm the new OpenID before storing it
|
|
|
|
|
|
|
|
// Also, consider allowing for multiple OpenID URIs
|
|
|
|
|
|
|
|
id, err := openid.Normalize(form.Openid)
|
|
|
|
if err != nil {
|
2018-06-18 18:24:45 +00:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2018-05-15 10:07:32 +00:00
|
|
|
ctx.RenderWithErr(err.Error(), tplSettingsSecurity, &form)
|
2017-03-21 00:55:00 +00:00
|
|
|
return
|
2017-03-17 14:16:08 +00:00
|
|
|
}
|
|
|
|
form.Openid = id
|
2017-03-21 00:55:00 +00:00
|
|
|
log.Trace("Normalized id: " + id)
|
2017-03-17 14:16:08 +00:00
|
|
|
|
|
|
|
oids, err := models.GetUserOpenIDs(ctx.User.ID)
|
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetUserOpenIDs", err)
|
2017-03-17 14:16:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["OpenIDs"] = oids
|
|
|
|
|
|
|
|
// Check that the OpenID is not already used
|
|
|
|
for _, obj := range oids {
|
|
|
|
if obj.URI == id {
|
2018-06-18 18:24:45 +00:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2018-05-15 10:07:32 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.openid_been_used", id), tplSettingsSecurity, &form)
|
2017-03-17 14:16:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-15 10:07:32 +00:00
|
|
|
redirectTo := setting.AppURL + "user/settings/security"
|
2017-03-17 14:16:08 +00:00
|
|
|
url, err := openid.RedirectURL(id, redirectTo, setting.AppURL)
|
2017-03-21 00:55:00 +00:00
|
|
|
if err != nil {
|
2018-06-18 18:24:45 +00:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2018-05-15 10:07:32 +00:00
|
|
|
ctx.RenderWithErr(err.Error(), tplSettingsSecurity, &form)
|
2017-03-21 00:55:00 +00:00
|
|
|
return
|
|
|
|
}
|
2017-03-17 14:16:08 +00:00
|
|
|
ctx.Redirect(url)
|
|
|
|
}
|
|
|
|
|
|
|
|
func settingsOpenIDVerify(ctx *context.Context) {
|
2021-01-26 15:36:53 +00:00
|
|
|
log.Trace("Incoming call to: " + ctx.Req.URL.String())
|
2017-03-17 14:16:08 +00:00
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
fullURL := setting.AppURL + ctx.Req.URL.String()[1:]
|
2017-03-21 00:55:00 +00:00
|
|
|
log.Trace("Full URL: " + fullURL)
|
2017-03-17 14:16:08 +00:00
|
|
|
|
|
|
|
id, err := openid.Verify(fullURL)
|
|
|
|
if err != nil {
|
2021-04-06 19:44:05 +00:00
|
|
|
ctx.RenderWithErr(err.Error(), tplSettingsSecurity, &forms.AddOpenIDForm{
|
2017-03-17 14:16:08 +00:00
|
|
|
Openid: id,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("Verified ID: " + id)
|
|
|
|
|
2017-03-21 00:55:00 +00:00
|
|
|
oid := &models.UserOpenID{UID: ctx.User.ID, URI: id}
|
2017-03-17 14:16:08 +00:00
|
|
|
if err = models.AddUserOpenID(oid); err != nil {
|
|
|
|
if models.IsErrOpenIDAlreadyUsed(err) {
|
2021-04-06 19:44:05 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.openid_been_used", id), tplSettingsSecurity, &forms.AddOpenIDForm{Openid: id})
|
2017-03-17 14:16:08 +00:00
|
|
|
return
|
|
|
|
}
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("AddUserOpenID", err)
|
2017-03-17 14:16:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Associated OpenID %s to user %s", id, ctx.User.Name)
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.add_openid_success"))
|
|
|
|
|
2018-05-15 10:07:32 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/security")
|
2017-03-17 14:16:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteOpenID response for delete user's openid
|
|
|
|
func DeleteOpenID(ctx *context.Context) {
|
|
|
|
if err := models.DeleteUserOpenID(&models.UserOpenID{ID: ctx.QueryInt64("id"), UID: ctx.User.ID}); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("DeleteUserOpenID", err)
|
2017-03-17 14:16:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("OpenID address deleted: %s", ctx.User.Name)
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.openid_deletion_success"))
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2018-05-15 10:07:32 +00:00
|
|
|
"redirect": setting.AppSubURL + "/user/settings/security",
|
2017-03-17 14:16:08 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-03-20 08:31:08 +00:00
|
|
|
// ToggleOpenIDVisibility response for toggle visibility of user's openid
|
|
|
|
func ToggleOpenIDVisibility(ctx *context.Context) {
|
|
|
|
if err := models.ToggleUserOpenIDVisibility(ctx.QueryInt64("id")); err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("ToggleUserOpenIDVisibility", err)
|
2017-03-20 08:31:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-15 10:07:32 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/security")
|
2017-03-20 08:31:08 +00:00
|
|
|
}
|