| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							|  |  |  |    Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    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" | 
					
						
							|  |  |  | 	"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 { | 
					
						
							|  |  |  | 	db db.DB | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							|  |  |  | func NewClientStore(db db.DB) 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-04-01 20:46:45 +02:00
										 |  |  | 	poc := &Client{ | 
					
						
							| 
									
										
										
										
											2021-03-15 23:05:24 +01:00
										 |  |  | 		ID: clientID, | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	if err := cs.db.GetByID(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-04-01 20:46:45 +02:00
										 |  |  | 	poc := &Client{ | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 		ID:     cli.GetID(), | 
					
						
							|  |  |  | 		Secret: cli.GetSecret(), | 
					
						
							|  |  |  | 		Domain: cli.GetDomain(), | 
					
						
							|  |  |  | 		UserID: cli.GetUserID(), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	return cs.db.UpdateByID(id, 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-04-01 20:46:45 +02:00
										 |  |  | 	poc := &Client{ | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 		ID: id, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-03-22 22:26:54 +01:00
										 |  |  | 	return cs.db.DeleteByID(id, poc) | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | // Client is a handy little wrapper for typical oauth client details | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | type Client struct { | 
					
						
							| 
									
										
										
										
											2021-03-15 18:59:38 +01:00
										 |  |  | 	ID     string | 
					
						
							|  |  |  | 	Secret string | 
					
						
							|  |  |  | 	Domain string | 
					
						
							|  |  |  | 	UserID string | 
					
						
							|  |  |  | } |