mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 07:32:26 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			238 lines
		
	
	
	
		
			6.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			238 lines
		
	
	
	
		
			6.6 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 db
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"net/url"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/go-fed/activity/streams/vocab"
 | |
| 	"github.com/go-pg/pg"
 | |
| 	"github.com/sirupsen/logrus"
 | |
| )
 | |
| 
 | |
| type postgresService struct {
 | |
| 	config *Config
 | |
| 	conn   *pg.DB
 | |
| 	log    *logrus.Entry
 | |
| 	cancel context.CancelFunc
 | |
| }
 | |
| 
 | |
| // newPostgresService returns a postgresService derived from the provided config, which implements the go-fed DB interface.
 | |
| // Under the hood, it uses https://github.com/go-pg/pg to create and maintain a database connection.
 | |
| func newPostgresService(ctx context.Context, config *Config, log *logrus.Entry) (*postgresService, error) {
 | |
| 	opts, err := derivePGOptions(config)
 | |
| 	if err != nil {
 | |
| 		return nil, fmt.Errorf("could not create postgres service: %s", err)
 | |
| 	}
 | |
| 
 | |
| 	readyChan := make(chan interface{})
 | |
| 	opts.OnConnect = func(c *pg.Conn) error {
 | |
| 		close(readyChan)
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	// create a connection
 | |
| 	pgCtx, cancel := context.WithCancel(ctx)
 | |
| 	conn := pg.Connect(opts).WithContext(pgCtx)
 | |
| 
 | |
| 	// actually *begin* the connection so that we can tell if the db is there
 | |
| 	// and listening, and also trigger the opts.OnConnect function passed in above
 | |
| 	tx, err := conn.Begin()
 | |
| 	if err != nil {
 | |
| 		cancel()
 | |
| 		return nil, fmt.Errorf("db connection error: %s", err)
 | |
| 	}
 | |
| 
 | |
| 	// close the transaction we just started so it doesn't hang around
 | |
| 	if err := tx.Rollback(); err != nil {
 | |
| 		cancel()
 | |
| 		return nil, fmt.Errorf("db connection error: %s", err)
 | |
| 	}
 | |
| 
 | |
| 	// make sure the opts.OnConnect function has been triggered
 | |
| 	// and closed the ready channel
 | |
| 	select {
 | |
| 	case <-readyChan:
 | |
| 		log.Infof("postgres connection ready")
 | |
| 	case <-time.After(5 * time.Second):
 | |
| 		cancel()
 | |
| 		return nil, errors.New("db connection timeout")
 | |
| 	}
 | |
| 
 | |
| 	// we can confidently return this useable postgres service now
 | |
| 	return &postgresService{
 | |
| 		config: config,
 | |
| 		conn:   conn,
 | |
| 		log:    log,
 | |
| 		cancel: cancel,
 | |
| 	}, nil
 | |
| }
 | |
| 
 | |
| /*
 | |
| 	HANDY STUFF
 | |
| */
 | |
| 
 | |
| // derivePGOptions takes an application config and returns either a ready-to-use *pg.Options
 | |
| // with sensible defaults, or an error if it's not satisfied by the provided config.
 | |
| func derivePGOptions(config *Config) (*pg.Options, error) {
 | |
| 	if config.Type != dbTypePostgres {
 | |
| 		return nil, fmt.Errorf("expected db type of %s but got %s", dbTypePostgres, config.Type)
 | |
| 	}
 | |
| 
 | |
| 	// use sensible default port
 | |
| 	var port int = config.Port
 | |
| 	if port == 0 {
 | |
| 		port = postgresDefaultPort
 | |
| 	}
 | |
| 
 | |
| 	// validate address
 | |
| 	if config.Address == "" {
 | |
| 		config.Address = defaultAddress
 | |
| 	}
 | |
| 	if !hostnameRegex.MatchString(config.Address) && !ipv4Regex.MatchString(config.Address) && config.Address != "localhost" {
 | |
| 		return nil, fmt.Errorf("address %s was neither an ipv4 address nor a valid hostname", config.Address)
 | |
| 	}
 | |
| 
 | |
| 	// validate username
 | |
| 	if config.User == "" {
 | |
| 		config.User = postgresDefaultUser
 | |
| 	}
 | |
| 
 | |
| 	// validate that there's a password
 | |
| 	if config.Password == "" {
 | |
| 		return nil, errors.New("no password set")
 | |
| 	}
 | |
| 
 | |
| 	// validate database
 | |
| 	if config.Database == "" {
 | |
| 		config.Database = defaultDatabase
 | |
| 	}
 | |
| 
 | |
| 	// We can rely on the pg library we're using to set
 | |
| 	// sensible defaults for everything we don't set here.
 | |
| 	options := &pg.Options{
 | |
| 		Addr:     fmt.Sprintf("%s:%d", config.Address, config.Port),
 | |
| 		User:     config.User,
 | |
| 		Password: config.Password,
 | |
| 		Database: config.Database,
 | |
| 	}
 | |
| 
 | |
| 	return options, nil
 | |
| }
 | |
| 
 | |
| /*
 | |
|    GO-FED DB INTERFACE-IMPLEMENTING FUNCTIONS
 | |
| */
 | |
| func (ps *postgresService) Lock(c context.Context, id *url.URL) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Unlock(c context.Context, id *url.URL) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) InboxContains(c context.Context, inbox *url.URL, id *url.URL) (bool, error) {
 | |
| 	return false, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) GetInbox(c context.Context, inboxIRI *url.URL) (inbox vocab.ActivityStreamsOrderedCollectionPage, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) SetInbox(c context.Context, inbox vocab.ActivityStreamsOrderedCollectionPage) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Owns(c context.Context, id *url.URL) (owns bool, err error) {
 | |
| 	return false, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) ActorForOutbox(c context.Context, outboxIRI *url.URL) (actorIRI *url.URL, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) ActorForInbox(c context.Context, inboxIRI *url.URL) (actorIRI *url.URL, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) OutboxForInbox(c context.Context, inboxIRI *url.URL) (outboxIRI *url.URL, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Exists(c context.Context, id *url.URL) (exists bool, err error) {
 | |
| 	return false, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Get(c context.Context, id *url.URL) (value vocab.Type, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Create(c context.Context, asType vocab.Type) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Update(c context.Context, asType vocab.Type) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Delete(c context.Context, id *url.URL) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) GetOutbox(c context.Context, outboxIRI *url.URL) (inbox vocab.ActivityStreamsOrderedCollectionPage, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) SetOutbox(c context.Context, outbox vocab.ActivityStreamsOrderedCollectionPage) error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) NewID(c context.Context, t vocab.Type) (id *url.URL, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Followers(c context.Context, actorIRI *url.URL) (followers vocab.ActivityStreamsCollection, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Following(c context.Context, actorIRI *url.URL) (followers vocab.ActivityStreamsCollection, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (ps *postgresService) Liked(c context.Context, actorIRI *url.URL) (followers vocab.ActivityStreamsCollection, err error) {
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| /*
 | |
| 	EXTRA FUNCTIONS
 | |
| */
 | |
| 
 | |
| func (ps *postgresService) Stop(ctx context.Context) error {
 | |
| 	ps.log.Info("closing db connection")
 | |
| 	if err := ps.conn.Close(); err != nil {
 | |
| 		// only cancel if there's a problem closing the db
 | |
| 		ps.cancel()
 | |
| 		return err
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |