| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2023-01-05 12:43:00 +01:00
										 |  |  |    Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02: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/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | package timeline | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-06-21 12:27:23 +02:00
										 |  |  | 	"container/list" | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"codeberg.org/gruf/go-kv" | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/id" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | func (t *timeline) PrepareFromTop(ctx context.Context, amount int) error { | 
					
						
							|  |  |  | 	l := log.WithFields(kv.Fields{{"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.indexedItems.data == nil { | 
					
						
							|  |  |  | 		l.Debug("postindex.data was nil, indexing behind highest possible ID") | 
					
						
							|  |  |  | 		if err := t.indexBehind(ctx, id.Highest, amount); err != nil { | 
					
						
							|  |  |  | 			return fmt.Errorf("PrepareFromTop: error indexing behind id %s: %s", id.Highest, err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	l.Trace("entering prepareloop") | 
					
						
							|  |  |  | 	t.Lock() | 
					
						
							|  |  |  | 	defer t.Unlock() | 
					
						
							|  |  |  | 	var prepared int | 
					
						
							|  |  |  | prepareloop: | 
					
						
							|  |  |  | 	for e := t.indexedItems.data.Front(); e != nil; e = e.Next() { | 
					
						
							|  |  |  | 		if e == nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		entry, ok := e.Value.(*indexedItemsEntry) | 
					
						
							|  |  |  | 		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 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | func (t *timeline) prepareNextQuery(ctx context.Context, amount int, maxID string, sinceID string, minID string) error { | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	l := log.WithFields(kv.Fields{ | 
					
						
							|  |  |  | 		{"amount", amount}, | 
					
						
							|  |  |  | 		{"maxID", maxID}, | 
					
						
							|  |  |  | 		{"sinceID", sinceID}, | 
					
						
							|  |  |  | 		{"minID", minID}, | 
					
						
							|  |  |  | 	}...) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 	switch { | 
					
						
							|  |  |  | 	case maxID != "" && sinceID == "": | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		l.Debug("preparing behind maxID") | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 		err = t.prepareBehind(ctx, maxID, amount) | 
					
						
							|  |  |  | 	case maxID == "" && sinceID != "": | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		l.Debug("preparing before sinceID") | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 		err = t.prepareBefore(ctx, sinceID, false, amount) | 
					
						
							|  |  |  | 	case maxID == "" && minID != "": | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		l.Debug("preparing before minID") | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 		err = t.prepareBefore(ctx, minID, false, amount) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | // prepareBehind instructs the timeline to prepare the next amount of entries for serialization, from position onwards. | 
					
						
							|  |  |  | // If include is true, then the given item ID will also be prepared, otherwise only entries behind it will be prepared. | 
					
						
							|  |  |  | func (t *timeline) prepareBehind(ctx context.Context, itemID string, amount int) error { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	// 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() | 
					
						
							| 
									
										
										
										
											2021-06-21 12:27:23 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 	if err := t.indexBehind(ctx, itemID, amount); err != nil { | 
					
						
							|  |  |  | 		return fmt.Errorf("prepareBehind: error indexing behind id %s: %s", itemID, err) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	// if the itemindex is nil, nothing has been indexed yet so there's nothing to prepare | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 	if t.indexedItems.data == nil { | 
					
						
							| 
									
										
										
										
											2021-06-21 12:27:23 +02:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	var prepared int | 
					
						
							|  |  |  | 	var preparing bool | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	t.Lock() | 
					
						
							|  |  |  | 	defer t.Unlock() | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | prepareloop: | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 	for e := t.indexedItems.data.Front(); e != nil; e = e.Next() { | 
					
						
							|  |  |  | 		entry, ok := e.Value.(*indexedItemsEntry) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		if !ok { | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 			return errors.New("prepareBehind: could not parse e as itemIndexEntry") | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if !preparing { | 
					
						
							|  |  |  | 			// we haven't hit the position we need to prepare from yet | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			if entry.itemID == itemID { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 				preparing = true | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if preparing { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			if err := t.prepare(ctx, entry.itemID); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 				// there's been an error | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 				if err != db.ErrNoEntries { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 					// it's a real error | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 					return fmt.Errorf("prepareBehind: error preparing item with id %s: %s", entry.itemID, err) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				// the status just doesn't exist (anymore) so continue to the next one | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if prepared == amount { | 
					
						
							|  |  |  | 				// we're done | 
					
						
							|  |  |  | 				break prepareloop | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 			prepared++ | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | func (t *timeline) prepareBefore(ctx context.Context, statusID string, include bool, amount int) error { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	t.Lock() | 
					
						
							|  |  |  | 	defer t.Unlock() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-21 12:27:23 +02:00
										 |  |  | 	// lazily initialize prepared posts if it hasn't been done already | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	if t.preparedItems.data == nil { | 
					
						
							|  |  |  | 		t.preparedItems.data = &list.List{} | 
					
						
							|  |  |  | 		t.preparedItems.data.Init() | 
					
						
							| 
									
										
										
										
											2021-06-21 12:27:23 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// if the postindex is nil, nothing has been indexed yet so there's nothing to prepare | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 	if t.indexedItems.data == nil { | 
					
						
							| 
									
										
										
										
											2021-06-21 12:27:23 +02:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	var prepared int | 
					
						
							|  |  |  | 	var preparing bool | 
					
						
							|  |  |  | prepareloop: | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 	for e := t.indexedItems.data.Back(); e != nil; e = e.Prev() { | 
					
						
							|  |  |  | 		entry, ok := e.Value.(*indexedItemsEntry) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		if !ok { | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 			return errors.New("prepareBefore: could not parse e as a postIndexEntry") | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if !preparing { | 
					
						
							|  |  |  | 			// we haven't hit the position we need to prepare from yet | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			if entry.itemID == statusID { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 				preparing = true | 
					
						
							|  |  |  | 				if !include { | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if preparing { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			if err := t.prepare(ctx, entry.itemID); err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 				// there's been an error | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 				if err != db.ErrNoEntries { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 					// it's a real error | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 					return fmt.Errorf("prepareBefore: error preparing status with id %s: %s", entry.itemID, err) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				// the status just doesn't exist (anymore) so continue to the next one | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if prepared == amount { | 
					
						
							|  |  |  | 				// we're done | 
					
						
							|  |  |  | 				break prepareloop | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-11-22 08:46:19 +01:00
										 |  |  | 			prepared++ | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | func (t *timeline) prepare(ctx context.Context, itemID string) error { | 
					
						
							|  |  |  | 	// trigger the caller-provided prepare function | 
					
						
							|  |  |  | 	prepared, err := t.prepareFunction(ctx, t.accountID, itemID) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	// 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, | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	return t.preparedItems.insertPrepared(ctx, preparedItemsEntry) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | // oldestPreparedItemID returns the id of the rearmost (ie., the oldest) prepared item, or an error if something goes wrong. | 
					
						
							|  |  |  | // If nothing goes wrong but there's no oldest item, an empty string will be returned so make sure to check for this. | 
					
						
							|  |  |  | func (t *timeline) oldestPreparedItemID(ctx context.Context) (string, error) { | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	var id string | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	if t.preparedItems == nil || t.preparedItems.data == nil { | 
					
						
							|  |  |  | 		// return an empty string if prepared items hasn't been initialized yet | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 		return id, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	e := t.preparedItems.data.Back() | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	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 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	entry, ok := e.Value.(*preparedItemsEntry) | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	if !ok { | 
					
						
							| 
									
										
										
										
											2022-11-22 19:38:10 +01:00
										 |  |  | 		return id, errors.New("oldestPreparedItemID: could not parse e as a preparedItemsEntry") | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return entry.itemID, nil | 
					
						
							| 
									
										
										
										
											2021-06-13 18:42:28 +02:00
										 |  |  | } |