| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Affero General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | package api | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/api/auth" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/middleware" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/oidc" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/processing" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/router" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/state" | 
					
						
							| 
									
										
										
										
											2023-01-03 10:50:59 +00:00
										 |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Auth struct { | 
					
						
							|  |  |  | 	routerSession *gtsmodel.RouterSession | 
					
						
							|  |  |  | 	sessionName   string | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	auth *auth.Module | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Route attaches 'auth' and 'oauth' groups to the given router. | 
					
						
							| 
									
										
										
										
											2023-11-13 19:48:51 +01:00
										 |  |  | func (a *Auth) Route(r *router.Router, m ...gin.HandlerFunc) { | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	// create groupings for the 'auth' and 'oauth' prefixes | 
					
						
							|  |  |  | 	authGroup := r.AttachGroup("auth") | 
					
						
							|  |  |  | 	oauthGroup := r.AttachGroup("oauth") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// instantiate + attach shared, non-global middlewares to both of these groups | 
					
						
							|  |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2023-07-13 21:27:25 +02:00
										 |  |  | 		ccMiddleware = middleware.CacheControl(middleware.CacheControlConfig{ | 
					
						
							|  |  |  | 			Directives: []string{"private", "max-age=120"}, | 
					
						
							|  |  |  | 			Vary:       []string{"Accept", "Accept-Encoding"}, | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 		sessionMiddleware = middleware.Session(a.sessionName, a.routerSession.Auth, a.routerSession.Crypt) | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	) | 
					
						
							| 
									
										
										
										
											2023-01-03 10:50:59 +00:00
										 |  |  | 	authGroup.Use(m...) | 
					
						
							|  |  |  | 	oauthGroup.Use(m...) | 
					
						
							| 
									
										
										
										
											2023-07-13 21:27:25 +02:00
										 |  |  | 	authGroup.Use(ccMiddleware, sessionMiddleware) | 
					
						
							|  |  |  | 	oauthGroup.Use(ccMiddleware, sessionMiddleware) | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	a.auth.RouteAuth(authGroup.Handle) | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 	a.auth.RouteOAuth(oauthGroup.Handle) | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | func NewAuth( | 
					
						
							|  |  |  | 	state *state.State, | 
					
						
							|  |  |  | 	p *processing.Processor, | 
					
						
							|  |  |  | 	idp oidc.IDP, | 
					
						
							|  |  |  | 	routerSession *gtsmodel.RouterSession, | 
					
						
							|  |  |  | 	sessionName string, | 
					
						
							|  |  |  | ) *Auth { | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	return &Auth{ | 
					
						
							|  |  |  | 		routerSession: routerSession, | 
					
						
							|  |  |  | 		sessionName:   sessionName, | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 		auth:          auth.New(state, p, idp), | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |