2019-03-08 22:12:50 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-08 22:12:50 +05:30
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2022-10-09 17:37:41 +05:30
|
|
|
tplSettingsOAuthApplicationEdit base.TplName = "user/settings/applications_oauth2_edit"
|
2019-03-08 22:12:50 +05:30
|
|
|
)
|
|
|
|
|
2022-10-09 17:37:41 +05:30
|
|
|
func newOAuth2CommonHandlers(userID int64) *OAuth2CommonHandlers {
|
|
|
|
return &OAuth2CommonHandlers{
|
|
|
|
OwnerID: userID,
|
|
|
|
BasePathList: setting.AppSubURL + "/user/settings/applications",
|
|
|
|
BasePathEditPrefix: setting.AppSubURL + "/user/settings/applications/oauth2",
|
|
|
|
TplAppEdit: tplSettingsOAuthApplicationEdit,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-08 22:12:50 +05:30
|
|
|
// OAuthApplicationsPost response for adding a oauth2 application
|
2021-01-26 21:06:53 +05:30
|
|
|
func OAuthApplicationsPost(ctx *context.Context) {
|
2019-03-08 22:12:50 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsSettingsApplications"] = true
|
|
|
|
|
2022-10-09 17:37:41 +05:30
|
|
|
oa := newOAuth2CommonHandlers(ctx.Doer.ID)
|
|
|
|
oa.AddApp(ctx)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// OAuthApplicationsEdit response for editing oauth2 application
|
2021-01-26 21:06:53 +05:30
|
|
|
func OAuthApplicationsEdit(ctx *context.Context) {
|
2019-03-08 22:12:50 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsSettingsApplications"] = true
|
|
|
|
|
2022-10-09 17:37:41 +05:30
|
|
|
oa := newOAuth2CommonHandlers(ctx.Doer.ID)
|
|
|
|
oa.EditSave(ctx)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
2019-03-09 21:59:58 +05:30
|
|
|
// OAuthApplicationsRegenerateSecret handles the post request for regenerating the secret
|
|
|
|
func OAuthApplicationsRegenerateSecret(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsSettingsApplications"] = true
|
|
|
|
|
2022-10-09 17:37:41 +05:30
|
|
|
oa := newOAuth2CommonHandlers(ctx.Doer.ID)
|
|
|
|
oa.RegenerateSecret(ctx)
|
2019-03-09 21:59:58 +05:30
|
|
|
}
|
|
|
|
|
2019-03-08 22:12:50 +05:30
|
|
|
// OAuth2ApplicationShow displays the given application
|
|
|
|
func OAuth2ApplicationShow(ctx *context.Context) {
|
2022-10-09 17:37:41 +05:30
|
|
|
oa := newOAuth2CommonHandlers(ctx.Doer.ID)
|
|
|
|
oa.EditShow(ctx)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteOAuth2Application deletes the given oauth2 application
|
|
|
|
func DeleteOAuth2Application(ctx *context.Context) {
|
2022-10-09 17:37:41 +05:30
|
|
|
oa := newOAuth2CommonHandlers(ctx.Doer.ID)
|
|
|
|
oa.DeleteApp(ctx)
|
2019-03-08 22:12:50 +05:30
|
|
|
}
|
2019-04-17 13:48:16 +05:30
|
|
|
|
|
|
|
// RevokeOAuth2Grant revokes the grant with the given id
|
|
|
|
func RevokeOAuth2Grant(ctx *context.Context) {
|
2022-10-09 17:37:41 +05:30
|
|
|
oa := newOAuth2CommonHandlers(ctx.Doer.ID)
|
|
|
|
oa.RevokeGrant(ctx)
|
2019-04-17 13:48:16 +05:30
|
|
|
}
|