2018-05-17 00:05:00 -04:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-03-17 10:16:08 -04:00
|
|
|
|
2022-01-02 08:12:35 -05:00
|
|
|
package security
|
2017-03-17 10:16:08 -04:00
|
|
|
|
|
|
|
import (
|
2021-04-05 11:30:52 -04:00
|
|
|
"net/http"
|
|
|
|
|
2021-11-17 04:58:31 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2017-03-17 10:16:08 -04:00
|
|
|
"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 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-04-06 15:44:05 -04:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2017-03-17 10:16:08 -04:00
|
|
|
)
|
|
|
|
|
2018-05-17 00:05:00 -04:00
|
|
|
// OpenIDPost response for change user's openid
|
2021-01-26 10:36:53 -05:00
|
|
|
func OpenIDPost(ctx *context.Context) {
|
2021-04-06 15:44:05 -04:00
|
|
|
form := web.GetForm(ctx).(*forms.AddOpenIDForm)
|
2017-03-17 10:16:08 -04:00
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
2018-05-15 06:07:32 -04:00
|
|
|
ctx.Data["PageIsSettingsSecurity"] = true
|
2017-03-17 10:16:08 -04:00
|
|
|
|
|
|
|
if ctx.HasError() {
|
2018-06-18 14:24:45 -04:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2021-04-05 11:30:52 -04:00
|
|
|
ctx.HTML(http.StatusOK, tplSettingsSecurity)
|
2017-03-17 10:16:08 -04: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 14:24:45 -04:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2018-05-15 06:07:32 -04:00
|
|
|
ctx.RenderWithErr(err.Error(), tplSettingsSecurity, &form)
|
2017-03-20 20:55:00 -04:00
|
|
|
return
|
2017-03-17 10:16:08 -04:00
|
|
|
}
|
|
|
|
form.Openid = id
|
2017-03-20 20:55:00 -04:00
|
|
|
log.Trace("Normalized id: " + id)
|
2017-03-17 10:16:08 -04:00
|
|
|
|
2022-03-22 03:03:22 -04:00
|
|
|
oids, err := user_model.GetUserOpenIDs(ctx.Doer.ID)
|
2017-03-17 10:16:08 -04:00
|
|
|
if err != nil {
|
2018-01-10 16:34:17 -05:00
|
|
|
ctx.ServerError("GetUserOpenIDs", err)
|
2017-03-17 10:16:08 -04: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 14:24:45 -04:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2018-05-15 06:07:32 -04:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.openid_been_used", id), tplSettingsSecurity, &form)
|
2017-03-17 10:16:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-15 06:07:32 -04:00
|
|
|
redirectTo := setting.AppURL + "user/settings/security"
|
2017-03-17 10:16:08 -04:00
|
|
|
url, err := openid.RedirectURL(id, redirectTo, setting.AppURL)
|
2017-03-20 20:55:00 -04:00
|
|
|
if err != nil {
|
2018-06-18 14:24:45 -04:00
|
|
|
loadSecurityData(ctx)
|
|
|
|
|
2018-05-15 06:07:32 -04:00
|
|
|
ctx.RenderWithErr(err.Error(), tplSettingsSecurity, &form)
|
2017-03-20 20:55:00 -04:00
|
|
|
return
|
|
|
|
}
|
2017-03-17 10:16:08 -04:00
|
|
|
ctx.Redirect(url)
|
|
|
|
}
|
|
|
|
|
|
|
|
func settingsOpenIDVerify(ctx *context.Context) {
|
2021-01-26 10:36:53 -05:00
|
|
|
log.Trace("Incoming call to: " + ctx.Req.URL.String())
|
2017-03-17 10:16:08 -04:00
|
|
|
|
2021-01-26 10:36:53 -05:00
|
|
|
fullURL := setting.AppURL + ctx.Req.URL.String()[1:]
|
2017-03-20 20:55:00 -04:00
|
|
|
log.Trace("Full URL: " + fullURL)
|
2017-03-17 10:16:08 -04:00
|
|
|
|
|
|
|
id, err := openid.Verify(fullURL)
|
|
|
|
if err != nil {
|
2021-04-06 15:44:05 -04:00
|
|
|
ctx.RenderWithErr(err.Error(), tplSettingsSecurity, &forms.AddOpenIDForm{
|
2017-03-17 10:16:08 -04:00
|
|
|
Openid: id,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Trace("Verified ID: " + id)
|
|
|
|
|
2022-03-22 03:03:22 -04:00
|
|
|
oid := &user_model.UserOpenID{UID: ctx.Doer.ID, URI: id}
|
2022-05-20 10:08:52 -04:00
|
|
|
if err = user_model.AddUserOpenID(ctx, oid); err != nil {
|
2021-11-17 04:58:31 -05:00
|
|
|
if user_model.IsErrOpenIDAlreadyUsed(err) {
|
2021-04-06 15:44:05 -04:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.openid_been_used", id), tplSettingsSecurity, &forms.AddOpenIDForm{Openid: id})
|
2017-03-17 10:16:08 -04:00
|
|
|
return
|
|
|
|
}
|
2018-01-10 16:34:17 -05:00
|
|
|
ctx.ServerError("AddUserOpenID", err)
|
2017-03-17 10:16:08 -04:00
|
|
|
return
|
|
|
|
}
|
2022-03-22 03:03:22 -04:00
|
|
|
log.Trace("Associated OpenID %s to user %s", id, ctx.Doer.Name)
|
2017-03-17 10:16:08 -04:00
|
|
|
ctx.Flash.Success(ctx.Tr("settings.add_openid_success"))
|
|
|
|
|
2018-05-15 06:07:32 -04:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/security")
|
2017-03-17 10:16:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteOpenID response for delete user's openid
|
|
|
|
func DeleteOpenID(ctx *context.Context) {
|
2022-03-22 03:03:22 -04:00
|
|
|
if err := user_model.DeleteUserOpenID(&user_model.UserOpenID{ID: ctx.FormInt64("id"), UID: ctx.Doer.ID}); err != nil {
|
2018-01-10 16:34:17 -05:00
|
|
|
ctx.ServerError("DeleteUserOpenID", err)
|
2017-03-17 10:16:08 -04:00
|
|
|
return
|
|
|
|
}
|
2022-03-22 03:03:22 -04:00
|
|
|
log.Trace("OpenID address deleted: %s", ctx.Doer.Name)
|
2017-03-17 10:16:08 -04:00
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.openid_deletion_success"))
|
2021-04-05 11:30:52 -04:00
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2018-05-15 06:07:32 -04:00
|
|
|
"redirect": setting.AppSubURL + "/user/settings/security",
|
2017-03-17 10:16:08 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-03-20 04:31:08 -04:00
|
|
|
// ToggleOpenIDVisibility response for toggle visibility of user's openid
|
|
|
|
func ToggleOpenIDVisibility(ctx *context.Context) {
|
2021-11-17 04:58:31 -05:00
|
|
|
if err := user_model.ToggleUserOpenIDVisibility(ctx.FormInt64("id")); err != nil {
|
2018-01-10 16:34:17 -05:00
|
|
|
ctx.ServerError("ToggleUserOpenIDVisibility", err)
|
2017-03-20 04:31:08 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-15 06:07:32 -04:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/security")
|
2017-03-20 04:31:08 -04:00
|
|
|
}
|