| 
									
										
										
										
											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/>. | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | package auth | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	apiutil "code.superseriousbusiness.org/gotosocial/internal/api/util" | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | 	"github.com/gin-contrib/sessions" | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | // OOBTokenGETHandler parses the OAuth code from the query | 
					
						
							|  |  |  | // params and serves a nice little HTML page showing the code. | 
					
						
							|  |  |  | func (m *Module) OOBTokenGETHandler(c *gin.Context) { | 
					
						
							|  |  |  | 	s := sessions.Default(c) | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	oobToken := c.Query("code") | 
					
						
							|  |  |  | 	if oobToken == "" { | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 		const errText = "no 'code' query value provided in callback redirect" | 
					
						
							|  |  |  | 		m.clearSessionWithBadRequest(c, s, errors.New(errText), errText) | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 	user := m.mustUserFromSession(c, s) | 
					
						
							|  |  |  | 	if user == nil { | 
					
						
							|  |  |  | 		// Error already | 
					
						
							|  |  |  | 		// written. | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 	scope := m.mustStringFromSession(c, s, sessionScope) | 
					
						
							|  |  |  | 	if scope == "" { | 
					
						
							|  |  |  | 		// Error already | 
					
						
							|  |  |  | 		// written. | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 	// We're done with | 
					
						
							|  |  |  | 	// the session now. | 
					
						
							|  |  |  | 	m.mustClearSession(s) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	instance, errWithCode := m.processor.InstanceGetV1(c.Request.Context()) | 
					
						
							|  |  |  | 	if errWithCode != nil { | 
					
						
							|  |  |  | 		apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1) | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 	apiutil.TemplateWebPage(c, apiutil.WebPage{ | 
					
						
							| 
									
										
										
										
											2023-12-27 11:23:52 +01:00
										 |  |  | 		Template: "oob.tmpl", | 
					
						
							|  |  |  | 		Instance: instance, | 
					
						
							|  |  |  | 		Extra: map[string]any{ | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 			"user":     user.Account.Username, | 
					
						
							| 
									
										
										
										
											2023-12-27 11:23:52 +01:00
										 |  |  | 			"oobToken": oobToken, | 
					
						
							|  |  |  | 			"scope":    scope, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2025-04-07 16:14:41 +02:00
										 |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2022-10-08 13:49:56 +02:00
										 |  |  | } |