mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 08:22:27 -05:00 
			
		
		
		
	* tidy up streaming * cut down code duplication * test get followers/following * test streaming processor * fix some test models * add TimeMustParse * fix uri / url typo * make trace logging less verbose * make logging more consistent * disable quote on logging * remove context.Background * remove many extraneous mastodon references * regenerate swagger * don't log query on no rows result * log latency first for easier reading
		
			
				
	
	
		
			87 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|    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 processing
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	"github.com/google/uuid"
 | |
| 	apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/id"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/oauth"
 | |
| )
 | |
| 
 | |
| func (p *processor) AppCreate(ctx context.Context, authed *oauth.Auth, form *apimodel.ApplicationCreateRequest) (*apimodel.Application, error) {
 | |
| 	// set default 'read' for scopes if it's not set
 | |
| 	var scopes string
 | |
| 	if form.Scopes == "" {
 | |
| 		scopes = "read"
 | |
| 	} else {
 | |
| 		scopes = form.Scopes
 | |
| 	}
 | |
| 
 | |
| 	// generate new IDs for this application and its associated client
 | |
| 	clientID, err := id.NewRandomULID()
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	clientSecret := uuid.NewString()
 | |
| 
 | |
| 	appID, err := id.NewRandomULID()
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	// generate the application to put in the database
 | |
| 	app := >smodel.Application{
 | |
| 		ID:           appID,
 | |
| 		Name:         form.ClientName,
 | |
| 		Website:      form.Website,
 | |
| 		RedirectURI:  form.RedirectURIs,
 | |
| 		ClientID:     clientID,
 | |
| 		ClientSecret: clientSecret,
 | |
| 		Scopes:       scopes,
 | |
| 	}
 | |
| 
 | |
| 	// chuck it in the db
 | |
| 	if err := p.db.Put(ctx, app); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	// now we need to model an oauth client from the application that the oauth library can use
 | |
| 	oc := >smodel.Client{
 | |
| 		ID:     clientID,
 | |
| 		Secret: clientSecret,
 | |
| 		Domain: form.RedirectURIs,
 | |
| 		UserID: "", // This client isn't yet associated with a specific user,  it's just an app client right now
 | |
| 	}
 | |
| 
 | |
| 	// chuck it in the db
 | |
| 	if err := p.db.Put(ctx, oc); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	apiApp, err := p.tc.AppToAPIAppSensitive(ctx, app)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return apiApp, nil
 | |
| }
 |