mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-03 19:22:24 -06:00 
			
		
		
		
	* add preparable and timelineable interfaces * initialize timeline manager within the processor * generic renaming * move status-specific timeline logic into the processor * refactor timeline to make it useful for more than statuses
		
			
				
	
	
		
			266 lines
		
	
	
	
		
			7.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			266 lines
		
	
	
	
		
			7.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
   GoToSocial
 | 
						|
   Copyright (C) 2021-2022 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 timeline
 | 
						|
 | 
						|
import (
 | 
						|
	"container/list"
 | 
						|
	"context"
 | 
						|
	"errors"
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"github.com/sirupsen/logrus"
 | 
						|
	"github.com/superseriousbusiness/gotosocial/internal/db"
 | 
						|
)
 | 
						|
 | 
						|
func (t *timeline) prepareNextQuery(ctx context.Context, amount int, maxID string, sinceID string, minID string) error {
 | 
						|
	l := logrus.WithFields(logrus.Fields{
 | 
						|
		"func":    "prepareNextQuery",
 | 
						|
		"amount":  amount,
 | 
						|
		"maxID":   maxID,
 | 
						|
		"sinceID": sinceID,
 | 
						|
		"minID":   minID,
 | 
						|
	})
 | 
						|
 | 
						|
	var err error
 | 
						|
 | 
						|
	// maxID is defined but sinceID isn't so take from behind
 | 
						|
	if maxID != "" && sinceID == "" {
 | 
						|
		l.Debug("preparing behind maxID")
 | 
						|
		err = t.PrepareBehind(ctx, maxID, amount)
 | 
						|
	}
 | 
						|
 | 
						|
	// maxID isn't defined, but sinceID || minID are, so take x before
 | 
						|
	if maxID == "" && sinceID != "" {
 | 
						|
		l.Debug("preparing before sinceID")
 | 
						|
		err = t.PrepareBefore(ctx, sinceID, false, amount)
 | 
						|
	}
 | 
						|
	if maxID == "" && minID != "" {
 | 
						|
		l.Debug("preparing before minID")
 | 
						|
		err = t.PrepareBefore(ctx, minID, false, amount)
 | 
						|
	}
 | 
						|
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
func (t *timeline) PrepareBehind(ctx context.Context, itemID string, amount int) error {
 | 
						|
	// lazily initialize prepared items if it hasn't been done already
 | 
						|
	if t.preparedItems.data == nil {
 | 
						|
		t.preparedItems.data = &list.List{}
 | 
						|
		t.preparedItems.data.Init()
 | 
						|
	}
 | 
						|
 | 
						|
	if err := t.IndexBehind(ctx, itemID, amount); err != nil {
 | 
						|
		return fmt.Errorf("PrepareBehind: error indexing behind id %s: %s", itemID, err)
 | 
						|
	}
 | 
						|
 | 
						|
	// if the itemindex is nil, nothing has been indexed yet so there's nothing to prepare
 | 
						|
	if t.itemIndex.data == nil {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	var prepared int
 | 
						|
	var preparing bool
 | 
						|
	t.Lock()
 | 
						|
	defer t.Unlock()
 | 
						|
prepareloop:
 | 
						|
	for e := t.itemIndex.data.Front(); e != nil; e = e.Next() {
 | 
						|
		entry, ok := e.Value.(*itemIndexEntry)
 | 
						|
		if !ok {
 | 
						|
			return errors.New("PrepareBehind: could not parse e as itemIndexEntry")
 | 
						|
		}
 | 
						|
 | 
						|
		if !preparing {
 | 
						|
			// we haven't hit the position we need to prepare from yet
 | 
						|
			if entry.itemID == itemID {
 | 
						|
				preparing = true
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		if preparing {
 | 
						|
			if err := t.prepare(ctx, entry.itemID); err != nil {
 | 
						|
				// there's been an error
 | 
						|
				if err != db.ErrNoEntries {
 | 
						|
					// it's a real error
 | 
						|
					return fmt.Errorf("PrepareBehind: error preparing item with id %s: %s", entry.itemID, err)
 | 
						|
				}
 | 
						|
				// the status just doesn't exist (anymore) so continue to the next one
 | 
						|
				continue
 | 
						|
			}
 | 
						|
			if prepared == amount {
 | 
						|
				// we're done
 | 
						|
				break prepareloop
 | 
						|
			}
 | 
						|
			prepared++
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *timeline) PrepareBefore(ctx context.Context, statusID string, include bool, amount int) error {
 | 
						|
	t.Lock()
 | 
						|
	defer t.Unlock()
 | 
						|
 | 
						|
	// lazily initialize prepared posts if it hasn't been done already
 | 
						|
	if t.preparedItems.data == nil {
 | 
						|
		t.preparedItems.data = &list.List{}
 | 
						|
		t.preparedItems.data.Init()
 | 
						|
	}
 | 
						|
 | 
						|
	// if the postindex is nil, nothing has been indexed yet so there's nothing to prepare
 | 
						|
	if t.itemIndex.data == nil {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	var prepared int
 | 
						|
	var preparing bool
 | 
						|
prepareloop:
 | 
						|
	for e := t.itemIndex.data.Back(); e != nil; e = e.Prev() {
 | 
						|
		entry, ok := e.Value.(*itemIndexEntry)
 | 
						|
		if !ok {
 | 
						|
			return errors.New("PrepareBefore: could not parse e as a postIndexEntry")
 | 
						|
		}
 | 
						|
 | 
						|
		if !preparing {
 | 
						|
			// we haven't hit the position we need to prepare from yet
 | 
						|
			if entry.itemID == statusID {
 | 
						|
				preparing = true
 | 
						|
				if !include {
 | 
						|
					continue
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
 | 
						|
		if preparing {
 | 
						|
			if err := t.prepare(ctx, entry.itemID); err != nil {
 | 
						|
				// there's been an error
 | 
						|
				if err != db.ErrNoEntries {
 | 
						|
					// it's a real error
 | 
						|
					return fmt.Errorf("PrepareBefore: error preparing status with id %s: %s", entry.itemID, err)
 | 
						|
				}
 | 
						|
				// the status just doesn't exist (anymore) so continue to the next one
 | 
						|
				continue
 | 
						|
			}
 | 
						|
			if prepared == amount {
 | 
						|
				// we're done
 | 
						|
				break prepareloop
 | 
						|
			}
 | 
						|
			prepared++
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *timeline) PrepareFromTop(ctx context.Context, amount int) error {
 | 
						|
	l := logrus.WithFields(logrus.Fields{
 | 
						|
		"func":   "PrepareFromTop",
 | 
						|
		"amount": amount,
 | 
						|
	})
 | 
						|
 | 
						|
	// lazily initialize prepared posts if it hasn't been done already
 | 
						|
	if t.preparedItems.data == nil {
 | 
						|
		t.preparedItems.data = &list.List{}
 | 
						|
		t.preparedItems.data.Init()
 | 
						|
	}
 | 
						|
 | 
						|
	// if the postindex is nil, nothing has been indexed yet so index from the highest ID possible
 | 
						|
	if t.itemIndex.data == nil {
 | 
						|
		l.Debug("postindex.data was nil, indexing behind highest possible ID")
 | 
						|
		if err := t.IndexBehind(ctx, "ZZZZZZZZZZZZZZZZZZZZZZZZZZ", amount); err != nil {
 | 
						|
			return fmt.Errorf("PrepareFromTop: error indexing behind id %s: %s", "ZZZZZZZZZZZZZZZZZZZZZZZZZZ", err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	l.Trace("entering prepareloop")
 | 
						|
	t.Lock()
 | 
						|
	defer t.Unlock()
 | 
						|
	var prepared int
 | 
						|
prepareloop:
 | 
						|
	for e := t.itemIndex.data.Front(); e != nil; e = e.Next() {
 | 
						|
		if e == nil {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		entry, ok := e.Value.(*itemIndexEntry)
 | 
						|
		if !ok {
 | 
						|
			return errors.New("PrepareFromTop: could not parse e as a postIndexEntry")
 | 
						|
		}
 | 
						|
 | 
						|
		if err := t.prepare(ctx, entry.itemID); err != nil {
 | 
						|
			// there's been an error
 | 
						|
			if err != db.ErrNoEntries {
 | 
						|
				// it's a real error
 | 
						|
				return fmt.Errorf("PrepareFromTop: error preparing status with id %s: %s", entry.itemID, err)
 | 
						|
			}
 | 
						|
			// the status just doesn't exist (anymore) so continue to the next one
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		prepared++
 | 
						|
		if prepared == amount {
 | 
						|
			// we're done
 | 
						|
			l.Trace("leaving prepareloop")
 | 
						|
			break prepareloop
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	l.Trace("leaving function")
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (t *timeline) prepare(ctx context.Context, itemID string) error {
 | 
						|
	// trigger the caller-provided prepare function
 | 
						|
	prepared, err := t.prepareFunction(ctx, t.accountID, itemID)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	// shove it in prepared items as a prepared items entry
 | 
						|
	preparedItemsEntry := &preparedItemsEntry{
 | 
						|
		itemID:           prepared.GetID(),
 | 
						|
		boostOfID:        prepared.GetBoostOfID(),
 | 
						|
		accountID:        prepared.GetAccountID(),
 | 
						|
		boostOfAccountID: prepared.GetBoostOfAccountID(),
 | 
						|
		prepared:         prepared,
 | 
						|
	}
 | 
						|
 | 
						|
	return t.preparedItems.insertPrepared(ctx, preparedItemsEntry)
 | 
						|
}
 | 
						|
 | 
						|
func (t *timeline) OldestPreparedItemID(ctx context.Context) (string, error) {
 | 
						|
	var id string
 | 
						|
	if t.preparedItems == nil || t.preparedItems.data == nil {
 | 
						|
		// return an empty string if prepared items hasn't been initialized yet
 | 
						|
		return id, nil
 | 
						|
	}
 | 
						|
 | 
						|
	e := t.preparedItems.data.Back()
 | 
						|
	if e == nil {
 | 
						|
		// return an empty string if there's no back entry (ie., the index list hasn't been initialized yet)
 | 
						|
		return id, nil
 | 
						|
	}
 | 
						|
 | 
						|
	entry, ok := e.Value.(*preparedItemsEntry)
 | 
						|
	if !ok {
 | 
						|
		return id, errors.New("OldestPreparedItemID: could not parse e as a preparedItemsEntry")
 | 
						|
	}
 | 
						|
 | 
						|
	return entry.itemID, nil
 | 
						|
}
 |