| 
									
										
										
										
											2023-08-10 15:08:41 +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/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package db | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Application interface { | 
					
						
							|  |  |  | 	// GetApplicationByID fetches the application from the database with corresponding ID value. | 
					
						
							|  |  |  | 	GetApplicationByID(ctx context.Context, id string) (*gtsmodel.Application, error) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// GetApplicationByClientID fetches the application from the database with corresponding client_id value. | 
					
						
							|  |  |  | 	GetApplicationByClientID(ctx context.Context, clientID string) (*gtsmodel.Application, error) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// PutApplication places the new application in the database, erroring on non-unique ID or client_id. | 
					
						
							|  |  |  | 	PutApplication(ctx context.Context, app *gtsmodel.Application) error | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// DeleteApplicationByClientID deletes the application with corresponding client_id value from the database. | 
					
						
							|  |  |  | 	DeleteApplicationByClientID(ctx context.Context, clientID string) error | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// GetAllTokens fetches all client oauth tokens from database. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	GetAllTokens(ctx context.Context) ([]*gtsmodel.Token, error) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// GetTokenByID fetches the client oauth token from database with ID. | 
					
						
							| 
									
										
										
										
											2025-01-23 16:47:30 -08:00
										 |  |  | 	GetTokenByID(ctx context.Context, id string) (*gtsmodel.Token, error) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// GetTokenByCode fetches the client oauth token from database with code. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	GetTokenByCode(ctx context.Context, code string) (*gtsmodel.Token, error) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// GetTokenByAccess fetches the client oauth token from database with access code. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	GetTokenByAccess(ctx context.Context, access string) (*gtsmodel.Token, error) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// GetTokenByRefresh fetches the client oauth token from database with refresh code. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	GetTokenByRefresh(ctx context.Context, refresh string) (*gtsmodel.Token, error) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// PutToken puts given client oauth token in the database. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	PutToken(ctx context.Context, token *gtsmodel.Token) error | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-03 16:03:36 +01:00
										 |  |  | 	// UpdateToken updates the given token. Update all columns if no specific columns given. | 
					
						
							|  |  |  | 	UpdateToken(ctx context.Context, token *gtsmodel.Token, columns ...string) error | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// DeleteTokenByID deletes client oauth token from database with ID. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	DeleteTokenByID(ctx context.Context, id string) error | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// DeleteTokenByCode deletes client oauth token from database with code. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	DeleteTokenByCode(ctx context.Context, code string) error | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// DeleteTokenByAccess deletes client oauth token from database with access code. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	DeleteTokenByAccess(ctx context.Context, access string) error | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-27 15:54:59 +00:00
										 |  |  | 	// DeleteTokenByRefresh deletes client oauth token from database with refresh code. | 
					
						
							| 
									
										
										
										
											2024-04-15 14:22:21 +01:00
										 |  |  | 	DeleteTokenByRefresh(ctx context.Context, refresh string) error | 
					
						
							| 
									
										
										
										
											2023-08-10 15:08:41 +01:00
										 |  |  | } |