| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |    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 oauth | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2021-09-01 11:45:01 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/oauth2/v4" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/oauth2/v4/models" | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | type clientStore struct { | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 	db db.Basic | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | // NewClientStore returns an implementation of the oauth2 ClientStore interface, using the given db as a storage backend. | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | func NewClientStore(db db.Basic) oauth2.ClientStore { | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	pts := &clientStore{ | 
					
						
							|  |  |  | 		db: db, | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return pts | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | func (cs *clientStore) GetByID(ctx context.Context, clientID string) (oauth2.ClientInfo, error) { | 
					
						
							| 
									
										
										
										
											2021-09-01 11:45:01 +02:00
										 |  |  | 	poc := >smodel.Client{} | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	if err := cs.db.GetByID(ctx, clientID, poc); err != nil { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return nil, err | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return models.New(poc.ID, poc.Secret, poc.Domain, poc.UserID), nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | func (cs *clientStore) Set(ctx context.Context, id string, cli oauth2.ClientInfo) error { | 
					
						
							| 
									
										
										
										
											2021-09-01 11:45:01 +02:00
										 |  |  | 	poc := >smodel.Client{ | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 		ID:     cli.GetID(), | 
					
						
							|  |  |  | 		Secret: cli.GetSecret(), | 
					
						
							|  |  |  | 		Domain: cli.GetDomain(), | 
					
						
							|  |  |  | 		UserID: cli.GetUserID(), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	return cs.db.Put(ctx, poc) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | func (cs *clientStore) Delete(ctx context.Context, id string) error { | 
					
						
							| 
									
										
										
										
											2021-09-01 11:45:01 +02:00
										 |  |  | 	poc := >smodel.Client{ | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 		ID: id, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	return cs.db.DeleteByID(ctx, id, poc) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } |