File tree 4 files changed +23
-0
lines changed
4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ insert_final_newline = false
18
18
[templates/swagger/v1_json.tmpl ]
19
19
indent_style = space
20
20
21
+ [templates/user/auth/oidc_wellknown.tmpl ]
22
+ indent_style = space
23
+
21
24
[Makefile ]
22
25
indent_style = tab
23
26
Original file line number Diff line number Diff line change @@ -336,6 +336,7 @@ func RegisterRoutes(m *web.Route) {
336
336
// Routers.
337
337
// for health check
338
338
m .Get ("/" , routers .Home )
339
+ m .Get ("/.well-known/openid-configuration" , user .OIDCWellKnown )
339
340
m .Group ("/explore" , func () {
340
341
m .Get ("" , func (ctx * context.Context ) {
341
342
ctx .Redirect (setting .AppSubURL + "/explore/repos" )
Original file line number Diff line number Diff line change @@ -389,6 +389,16 @@ func GrantApplicationOAuth(ctx *context.Context) {
389
389
ctx .Redirect (redirect .String (), 302 )
390
390
}
391
391
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
+
392
402
// AccessTokenOAuth manages all access token requests by the client
393
403
func AccessTokenOAuth (ctx * context.Context ) {
394
404
form := * web .GetForm (ctx ).(* forms.AccessTokenForm )
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments