Skip to content

Commit 024ef39

Browse files
techknowlogickzeripathlunny
authored
add well-known config for OIDC (#15355)
* add well-known config for OIDC * spacing per feedback * Update oidc_wellknown.tmpl * add id_token * Update oidc_wellknown.tmpl Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
1 parent 6a7090b commit 024ef39

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ insert_final_newline = false
1818
[templates/swagger/v1_json.tmpl]
1919
indent_style = space
2020

21+
[templates/user/auth/oidc_wellknown.tmpl]
22+
indent_style = space
23+
2124
[Makefile]
2225
indent_style = tab
2326

routers/routes/web.go

+1
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ func RegisterRoutes(m *web.Route) {
336336
// Routers.
337337
// for health check
338338
m.Get("/", routers.Home)
339+
m.Get("/.well-known/openid-configuration", user.OIDCWellKnown)
339340
m.Group("/explore", func() {
340341
m.Get("", func(ctx *context.Context) {
341342
ctx.Redirect(setting.AppSubURL + "/explore/repos")

routers/user/oauth.go

+10
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,16 @@ func GrantApplicationOAuth(ctx *context.Context) {
389389
ctx.Redirect(redirect.String(), 302)
390390
}
391391

392+
// OIDCWellKnown generates JSON so OIDC clients know Gitea's capabilities
393+
func OIDCWellKnown(ctx *context.Context) {
394+
t := ctx.Render.TemplateLookup("user/auth/oidc_wellknown")
395+
ctx.Resp.Header().Set("Content-Type", "application/json")
396+
if err := t.Execute(ctx.Resp, ctx.Data); err != nil {
397+
log.Error("%v", err)
398+
ctx.Error(http.StatusInternalServerError)
399+
}
400+
}
401+
392402
// AccessTokenOAuth manages all access token requests by the client
393403
func AccessTokenOAuth(ctx *context.Context) {
394404
form := *web.GetForm(ctx).(*forms.AccessTokenForm)
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"issuer": "{{AppUrl | JSEscape | Safe}}",
3+
"authorization_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/authorize",
4+
"token_endpoint": "{{AppUrl | JSEscape | Safe}}login/oauth/access_token",
5+
"response_types_supported": [
6+
"code",
7+
"id_token"
8+
]
9+
}

0 commit comments

Comments
 (0)