-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Support instance-wide OAuth2 applications #21335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
99c86fc
Support instance-wide OAuth2 applications
qwerty287 93510e8
Merge branch 'main' into instance-oauth2
qwerty287 4972a16
fix indentation
qwerty287 6a3afda
fix indentation
qwerty287 88858db
Merge branch 'main' into instance-oauth2
qwerty287 ab1e62f
Reuse code
qwerty287 a85fd20
Merge branch 'main' into instance-oauth2
qwerty287 d5bf5d2
Update routers/web/admin/applications.go
wxiaoguang 3ffff0c
refactor route path
wxiaoguang a624c10
Merge branch 'main' into instance-oauth2
lafriks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
// Copyright 2022 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 admin | ||
|
||
package admin | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
|
||
"code.gitea.io/gitea/models/auth" | ||
"code.gitea.io/gitea/modules/base" | ||
"code.gitea.io/gitea/modules/context" | ||
"code.gitea.io/gitea/modules/log" | ||
"code.gitea.io/gitea/modules/setting" | ||
"code.gitea.io/gitea/modules/web" | ||
"code.gitea.io/gitea/services/forms" | ||
) | ||
|
||
var ( | ||
// tplSettingsLabels template path for render application settings | ||
tplSettingsApplications base.TplName = "admin/applications/list" | ||
// tplSettingsLabels template path for render application edit settings | ||
tplSettingsEditApplication base.TplName = "admin/applications/edit" | ||
) | ||
|
||
const instanceOwnerUserID = 0 | ||
|
||
// Applications render admin applications page | ||
func Applications(ctx *context.Context) { | ||
ctx.Data["Title"] = ctx.Tr("settings.applications") | ||
ctx.Data["PageIsAdmin"] = true | ||
ctx.Data["PageIsAdminApplications"] = true | ||
|
||
apps, err := auth.GetOAuth2ApplicationsByUserID(ctx, instanceOwnerUserID) | ||
if err != nil { | ||
ctx.ServerError("GetOAuth2ApplicationsByUserID", err) | ||
return | ||
} | ||
ctx.Data["Applications"] = apps | ||
|
||
ctx.HTML(http.StatusOK, tplSettingsApplications) | ||
} | ||
|
||
// ApplicationsPost response for adding an oauth2 application | ||
func ApplicationsPost(ctx *context.Context) { | ||
form := web.GetForm(ctx).(*forms.EditOAuth2ApplicationForm) | ||
ctx.Data["Title"] = ctx.Tr("settings.applications") | ||
ctx.Data["PageIsAdmin"] = true | ||
ctx.Data["PageIsAdminApplications"] = true | ||
|
||
if ctx.HasError() { | ||
apps, err := auth.GetOAuth2ApplicationsByUserID(ctx, instanceOwnerUserID) | ||
if err != nil { | ||
ctx.ServerError("GetOAuth2ApplicationsByUserID", err) | ||
return | ||
} | ||
ctx.Data["Applications"] = apps | ||
|
||
ctx.HTML(http.StatusOK, tplSettingsApplications) | ||
return | ||
} | ||
|
||
app, err := auth.CreateOAuth2Application(ctx, auth.CreateOAuth2ApplicationOptions{ | ||
Name: form.Name, | ||
RedirectURIs: []string{form.RedirectURI}, | ||
UserID: instanceOwnerUserID, | ||
}) | ||
if err != nil { | ||
ctx.ServerError("CreateOAuth2Application", err) | ||
return | ||
} | ||
ctx.Data["App"] = app | ||
ctx.Data["ClientSecret"], err = app.GenerateClientSecret() | ||
if err != nil { | ||
ctx.ServerError("GenerateClientSecret", err) | ||
return | ||
} | ||
ctx.Flash.Success(ctx.Tr("settings.create_oauth2_application_success")) | ||
ctx.HTML(http.StatusOK, tplSettingsEditApplication) | ||
} | ||
|
||
// EditApplication response for editing oauth2 application | ||
func EditApplication(ctx *context.Context) { | ||
app, err := auth.GetOAuth2ApplicationByID(ctx, ctx.ParamsInt64("id")) | ||
if err != nil { | ||
if auth.IsErrOAuthApplicationNotFound(err) { | ||
ctx.NotFound("Application not found", err) | ||
return | ||
} | ||
ctx.ServerError("GetOAuth2ApplicationByID", err) | ||
return | ||
} | ||
if app.UID != instanceOwnerUserID { | ||
ctx.NotFound("Application not found", nil) | ||
return | ||
} | ||
ctx.Data["PageIsAdmin"] = true | ||
ctx.Data["PageIsAdminApplications"] = true | ||
ctx.Data["App"] = app | ||
ctx.HTML(http.StatusOK, tplSettingsEditApplication) | ||
} | ||
|
||
// EditApplicationPost response for editing oauth2 application | ||
func EditApplicationPost(ctx *context.Context) { | ||
form := web.GetForm(ctx).(*forms.EditOAuth2ApplicationForm) | ||
ctx.Data["Title"] = ctx.Tr("settings.applications") | ||
ctx.Data["PageIsAdmin"] = true | ||
ctx.Data["PageIsAdminApplications"] = true | ||
|
||
if ctx.HasError() { | ||
apps, err := auth.GetOAuth2ApplicationsByUserID(ctx, instanceOwnerUserID) | ||
if err != nil { | ||
ctx.ServerError("GetOAuth2ApplicationsByUserID", err) | ||
return | ||
} | ||
ctx.Data["Applications"] = apps | ||
|
||
ctx.HTML(http.StatusOK, tplSettingsApplications) | ||
return | ||
} | ||
var err error | ||
if ctx.Data["App"], err = auth.UpdateOAuth2Application(auth.UpdateOAuth2ApplicationOptions{ | ||
ID: ctx.ParamsInt64("id"), | ||
Name: form.Name, | ||
RedirectURIs: []string{form.RedirectURI}, | ||
UserID: instanceOwnerUserID, | ||
}); err != nil { | ||
ctx.ServerError("UpdateOAuth2Application", err) | ||
return | ||
} | ||
ctx.Flash.Success(ctx.Tr("settings.update_oauth2_application_success")) | ||
ctx.HTML(http.StatusOK, tplSettingsEditApplication) | ||
} | ||
|
||
// ApplicationsRegenerateSecret handles the post request for regenerating the secret | ||
func ApplicationsRegenerateSecret(ctx *context.Context) { | ||
ctx.Data["Title"] = ctx.Tr("settings") | ||
ctx.Data["PageIsAdminApplications"] = true | ||
ctx.Data["PageIsAdmin"] = true | ||
|
||
app, err := auth.GetOAuth2ApplicationByID(ctx, ctx.ParamsInt64("id")) | ||
if err != nil { | ||
if auth.IsErrOAuthApplicationNotFound(err) { | ||
ctx.NotFound("Application not found", err) | ||
return | ||
} | ||
ctx.ServerError("GetOAuth2ApplicationByID", err) | ||
return | ||
} | ||
if app.UID != instanceOwnerUserID { | ||
ctx.NotFound("Application not found", nil) | ||
return | ||
} | ||
ctx.Data["App"] = app | ||
ctx.Data["ClientSecret"], err = app.GenerateClientSecret() | ||
if err != nil { | ||
ctx.ServerError("GenerateClientSecret", err) | ||
return | ||
} | ||
ctx.Flash.Success(ctx.Tr("settings.update_oauth2_application_success")) | ||
ctx.HTML(http.StatusOK, tplSettingsEditApplication) | ||
} | ||
|
||
// DeleteApplication deletes the given oauth2 application | ||
func DeleteApplication(ctx *context.Context) { | ||
if err := auth.DeleteOAuth2Application(ctx.FormInt64("id"), instanceOwnerUserID); err != nil { | ||
ctx.ServerError("DeleteOAuth2Application", err) | ||
return | ||
} | ||
log.Trace("OAuth2 Application deleted: %s", ctx.Doer.Name) | ||
|
||
ctx.Flash.Success(ctx.Tr("settings.remove_oauth2_application_success")) | ||
ctx.JSON(http.StatusOK, map[string]interface{}{ | ||
"redirect": fmt.Sprintf("%s/admin/applications", setting.AppSubURL), | ||
}) | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{{template "base/head" .}} | ||
<div class="page-content admin config"> | ||
{{template "admin/navbar" .}} | ||
<div class="ui container"> | ||
qwerty287 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<div class="twelve wide column content"> | ||
{{template "base/alert" .}} | ||
<h4 class="ui top attached header"> | ||
{{.locale.Tr "settings.edit_oauth2_application"}} | ||
</h4> | ||
<div class="ui attached segment form ignore-dirty"> | ||
{{.CsrfTokenHtml}} | ||
<div class="field"> | ||
<label for="client-id">{{.locale.Tr "settings.oauth2_client_id"}}</label> | ||
<input id="client-id" readonly value="{{.App.ClientID}}"> | ||
</div> | ||
{{if .ClientSecret}} | ||
<div class="field"> | ||
<label for="client-secret">{{.locale.Tr "settings.oauth2_client_secret"}}</label> | ||
<input id="client-secret" type="text" readonly value="{{.ClientSecret}}"> | ||
</div> | ||
{{else}} | ||
<div class="field"> | ||
<label for="client-secret">{{.locale.Tr "settings.oauth2_client_secret"}}</label> | ||
<input id="client-secret" type="password" readonly value="averysecuresecret"> | ||
</div> | ||
{{end}} | ||
<div class="item"> | ||
{{.locale.Tr "settings.oauth2_regenerate_secret_hint"}} | ||
<form class="ui form ignore-dirty" action="{{AppSubUrl}}/admin/applications/{{.App.ID}}/regenerate_secret" method="post"> | ||
{{.CsrfTokenHtml}} | ||
<a href="#" onclick="event.target.parentNode.submit()">{{.locale.Tr "settings.oauth2_regenerate_secret"}}</a> | ||
</form> | ||
</div> | ||
</div> | ||
<div class="ui attached bottom segment"> | ||
<form class="ui form ignore-dirty" action="{{AppSubUrl}}/admin/applications/{{.App.ID}}" method="post"> | ||
{{.CsrfTokenHtml}} | ||
<div class="field {{if .Err_AppName}}error{{end}}"> | ||
<label for="application-name">{{.locale.Tr "settings.oauth2_application_name"}}</label> | ||
<input id="application-name" value="{{.App.Name}}" name="application_name" required> | ||
</div> | ||
<div class="field {{if .Err_RedirectURI}}error{{end}}"> | ||
<label for="redirect-uri">{{.locale.Tr "settings.oauth2_redirect_uri"}}</label> | ||
<input type="url" name="redirect_uri" value="{{.App.PrimaryRedirectURI}}" id="redirect-uri"> | ||
</div> | ||
<button class="ui green button"> | ||
{{.locale.Tr "settings.save_application"}} | ||
</button> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
{{template "base/footer" .}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{{template "base/head" .}} | ||
<div class="page-content admin config"> | ||
{{template "admin/navbar" .}} | ||
<div class="ui container"> | ||
<div class="twelve wide column content"> | ||
{{template "base/alert" .}} | ||
<h4 class="ui top attached header"> | ||
{{.locale.Tr "settings.applications"}} | ||
</h4> | ||
<div class="ui attached segment"> | ||
<div class="ui key list"> | ||
<div class="item"> | ||
{{.locale.Tr "settings.oauth2_application_create_description"}} | ||
</div> | ||
{{range $app := .Applications}} | ||
<div class="item"> | ||
<div class="right floated content"> | ||
<a href="{{$.Link}}/{{$app.ID}}" class="ui primary tiny button"> | ||
{{svg "octicon-pencil" 16 "mr-2"}} | ||
{{$.locale.Tr "settings.oauth2_application_edit"}} | ||
</a> | ||
<button class="ui red tiny button delete-button" data-modal-id="remove-gitea-oauth2-application" | ||
data-url="{{$.Link}}/{{.ID}}/delete" | ||
data-id="{{$app.ID}}"> | ||
{{svg "octicon-trash" 16 "mr-2"}} | ||
{{$.locale.Tr "settings.delete_key"}} | ||
</button> | ||
</div> | ||
<div class="content"> | ||
<strong>{{$app.Name}}</strong> | ||
</div> | ||
</div> | ||
{{end}} | ||
</div> | ||
<div class="ui attached bottom segment"> | ||
<h5 class="ui top header"> | ||
{{.locale.Tr "settings.create_oauth2_application"}} | ||
</h5> | ||
<form class="ui form ignore-dirty" action="{{.Link}}" method="post"> | ||
{{.CsrfTokenHtml}} | ||
<div class="field {{if .Err_AppName}}error{{end}}"> | ||
<label for="application-name">{{.locale.Tr "settings.oauth2_application_name"}}</label> | ||
<input id="application-name" name="application_name" value="{{.application_name}}" required> | ||
</div> | ||
<div class="field {{if .Err_RedirectURI}}error{{end}}"> | ||
<label for="redirect-uri">{{.locale.Tr "settings.oauth2_redirect_uri"}}</label> | ||
<input type="url" name="redirect_uri" id="redirect-uri"> | ||
</div> | ||
<button class="ui green button"> | ||
{{.locale.Tr "settings.create_oauth2_application_button"}} | ||
</button> | ||
</form> | ||
</div> | ||
|
||
<div class="ui small basic delete modal" id="remove-gitea-oauth2-application"> | ||
<div class="ui icon header"> | ||
{{svg "octicon-trash"}} | ||
{{.locale.Tr "settings.remove_oauth2_application"}} | ||
</div> | ||
<div class="content"> | ||
<p>{{.locale.Tr "settings.oauth2_application_remove_description"}}</p> | ||
</div> | ||
{{template "base/delete_modal_actions" .}} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{{template "base/footer" .}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.