| 
									
										
										
										
											2021-05-30 13:12:00 +02: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 processing | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 	"net/url" | 
					
						
							|  |  |  | 	"sort" | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 	"sync" | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 	apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model" | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtserror" | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/oauth" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | func (p *processor) HomeTimelineGet(authed *oauth.Auth, maxID string, sinceID string, minID string, limit int, local bool) (*apimodel.StatusTimelineResponse, gtserror.WithCode) { | 
					
						
							|  |  |  | 	resp := &apimodel.StatusTimelineResponse{ | 
					
						
							|  |  |  | 		Statuses: []*apimodel.Status{}, | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 	apiStatuses := []*apimodel.Status{} | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 	maxIDMarker := maxID | 
					
						
							|  |  |  | 	sinceIDMarker := sinceID | 
					
						
							|  |  |  | 	minIDMarker := minID | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 	gtsStatuses, err := p.db.GetStatusesWhereFollowing(authed.Account.ID, maxIDMarker, sinceIDMarker, minIDMarker, limit, local) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		if _, ok := err.(db.ErrNoEntries); !ok { | 
					
						
							|  |  |  | 			return nil, gtserror.NewErrorInternalError(fmt.Errorf("HomeTimelineGet: error getting statuses from db: %s", err)) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, gtsStatus := range gtsStatuses { | 
					
						
							|  |  |  | 		// pull relevant accounts from the status -- we need this both for checking visibility and for serializing | 
					
						
							|  |  |  | 		relevantAccounts, err := p.db.PullRelevantAccountsFromStatus(gtsStatus) | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		visible, err := p.db.StatusVisible(gtsStatus, authed.Account, relevantAccounts) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 		if visible { | 
					
						
							|  |  |  | 			// check if this is a boost... | 
					
						
							|  |  |  | 			var reblogOfStatus *gtsmodel.Status | 
					
						
							|  |  |  | 			if gtsStatus.BoostOfID != "" { | 
					
						
							|  |  |  | 				s := >smodel.Status{} | 
					
						
							|  |  |  | 				if err := p.db.GetByID(s.BoostOfID, s); err != nil { | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				reblogOfStatus = s | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// serialize the status (or, at least, convert it to a form that's ready to be serialized) | 
					
						
							|  |  |  | 			apiStatus, err := p.tc.StatusToMasto(gtsStatus, relevantAccounts.StatusAuthor, authed.Account, relevantAccounts.BoostedAccount, relevantAccounts.ReplyToAccount, reblogOfStatus) | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 			apiStatuses = append(apiStatuses, apiStatus) | 
					
						
							|  |  |  | 			sort.Slice(apiStatuses, func(i int, j int) bool { | 
					
						
							|  |  |  | 				is, err := time.Parse(time.RFC3339, apiStatuses[i].CreatedAt) | 
					
						
							|  |  |  | 				if err != nil { | 
					
						
							|  |  |  | 					panic(err) | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 				js, err := time.Parse(time.RFC3339, apiStatuses[j].CreatedAt) | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 				if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 					panic(err) | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 				return is.After(js) | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if len(apiStatuses) == limit { | 
					
						
							|  |  |  | 				// we have enough | 
					
						
							|  |  |  | 				break | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-06-11 19:40:14 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if len(apiStatuses) != 0 { | 
					
						
							|  |  |  | 			if maxIDMarker != "" { | 
					
						
							|  |  |  | 				maxIDMarker = apiStatuses[len(apiStatuses)-1].ID | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if minIDMarker != "" { | 
					
						
							|  |  |  | 				minIDMarker = apiStatuses[0].ID | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	resp.Statuses = apiStatuses | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if len(resp.Statuses) != 0 { | 
					
						
							|  |  |  | 		nextLink := &url.URL{ | 
					
						
							|  |  |  | 			Scheme:   p.config.Protocol, | 
					
						
							|  |  |  | 			Host:     p.config.Host, | 
					
						
							|  |  |  | 			Path:     "/api/v1/timelines/home", | 
					
						
							|  |  |  | 			RawPath:  url.PathEscape("api/v1/timelines/home"), | 
					
						
							| 
									
										
										
										
											2021-06-12 16:40:11 +02:00
										 |  |  | 			RawQuery: fmt.Sprintf("limit=%d&max_id=%s", limit, apiStatuses[len(apiStatuses)-1].ID), | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		next := fmt.Sprintf("<%s>; rel=\"next\"", nextLink.String()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		prevLink := &url.URL{ | 
					
						
							|  |  |  | 			Scheme:   p.config.Protocol, | 
					
						
							|  |  |  | 			Host:     p.config.Host, | 
					
						
							|  |  |  | 			Path:     "/api/v1/timelines/home", | 
					
						
							|  |  |  | 			RawQuery: fmt.Sprintf("limit=%d&min_id=%s", limit, apiStatuses[0].ID), | 
					
						
							| 
									
										
										
										
											2021-06-06 18:02:03 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 		prev := fmt.Sprintf("<%s>; rel=\"prev\"", prevLink.String()) | 
					
						
							|  |  |  | 		resp.LinkHeader = fmt.Sprintf("%s, %s", next, prev) | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 	return resp, nil | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | func (p *processor) PublicTimelineGet(authed *oauth.Auth, maxID string, sinceID string, minID string, limit int, local bool) ([]*apimodel.Status, gtserror.WithCode) { | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	statuses, err := p.db.GetPublicTimelineForAccount(authed.Account.ID, maxID, sinceID, minID, limit, local) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s, err := p.filterStatuses(authed, statuses) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | 		return nil, gtserror.NewErrorInternalError(err) | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return s, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | func (p *processor) filterStatuses(authed *oauth.Auth, statuses []*gtsmodel.Status) ([]*apimodel.Status, error) { | 
					
						
							| 
									
										
										
										
											2021-05-31 17:36:35 +02:00
										 |  |  | 	l := p.log.WithField("func", "filterStatuses") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 	apiStatuses := []*apimodel.Status{} | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 	for _, s := range statuses { | 
					
						
							|  |  |  | 		targetAccount := >smodel.Account{} | 
					
						
							|  |  |  | 		if err := p.db.GetByID(s.AccountID, targetAccount); err != nil { | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 			if _, ok := err.(db.ErrNoEntries); ok { | 
					
						
							|  |  |  | 				l.Debugf("skipping status %s because account %s can't be found in the db", s.ID, s.AccountID) | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | 			return nil, gtserror.NewErrorInternalError(fmt.Errorf("HomeTimelineGet: error getting status author: %s", err)) | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		relevantAccounts, err := p.db.PullRelevantAccountsFromStatus(s) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 			l.Debugf("skipping status %s because we couldn't pull relevant accounts from the db", s.ID) | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-04 16:35:58 +02:00
										 |  |  | 		visible, err := p.db.StatusVisible(s, authed.Account, relevantAccounts) | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | 			return nil, gtserror.NewErrorInternalError(fmt.Errorf("HomeTimelineGet: error checking status visibility: %s", err)) | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if !visible { | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var boostedStatus *gtsmodel.Status | 
					
						
							|  |  |  | 		if s.BoostOfID != "" { | 
					
						
							|  |  |  | 			bs := >smodel.Status{} | 
					
						
							|  |  |  | 			if err := p.db.GetByID(s.BoostOfID, bs); err != nil { | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 				if _, ok := err.(db.ErrNoEntries); ok { | 
					
						
							|  |  |  | 					l.Debugf("skipping status %s because status %s can't be found in the db", s.ID, s.BoostOfID) | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | 				return nil, gtserror.NewErrorInternalError(fmt.Errorf("HomeTimelineGet: error getting boosted status: %s", err)) | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			boostedRelevantAccounts, err := p.db.PullRelevantAccountsFromStatus(bs) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 				l.Debugf("skipping status %s because we couldn't pull relevant accounts from the db", s.ID) | 
					
						
							|  |  |  | 				continue | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-04 16:35:58 +02:00
										 |  |  | 			boostedVisible, err := p.db.StatusVisible(bs, authed.Account, boostedRelevantAccounts) | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2021-06-04 14:16:29 +02:00
										 |  |  | 				return nil, gtserror.NewErrorInternalError(fmt.Errorf("HomeTimelineGet: error checking boosted status visibility: %s", err)) | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if boostedVisible { | 
					
						
							|  |  |  | 				boostedStatus = bs | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		apiStatus, err := p.tc.StatusToMasto(s, targetAccount, authed.Account, relevantAccounts.BoostedAccount, relevantAccounts.ReplyToAccount, boostedStatus) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 			l.Debugf("skipping status %s because it couldn't be converted to its mastodon representation: %s", s.ID, err) | 
					
						
							|  |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 		apiStatuses = append(apiStatuses, apiStatus) | 
					
						
							| 
									
										
										
										
											2021-05-21 23:04:59 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return apiStatuses, nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (p *processor) initTimelines() error { | 
					
						
							|  |  |  | 	// get all local accounts (ie., domain = nil) that aren't suspended (suspended_at = nil) | 
					
						
							|  |  |  | 	localAccounts := []*gtsmodel.Account{} | 
					
						
							|  |  |  | 	where := []db.Where{ | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Key: "domain", Value: nil, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			Key: "suspended_at", Value: nil, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err := p.db.GetWhere(where, &localAccounts); err != nil { | 
					
						
							|  |  |  | 		if _, ok := err.(db.ErrNoEntries); ok { | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return fmt.Errorf("initTimelines: db error initializing timelines: %s", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// we want to wait until all timelines are populated so created a waitgroup here | 
					
						
							|  |  |  | 	wg := &sync.WaitGroup{} | 
					
						
							|  |  |  | 	wg.Add(len(localAccounts)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, localAccount := range localAccounts { | 
					
						
							|  |  |  | 		// to save time we can populate the timelines asynchronously | 
					
						
							|  |  |  | 		// this will go heavy on the database, but since we're not actually serving yet it doesn't really matter | 
					
						
							|  |  |  | 		go p.initTimelineFor(localAccount, wg) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// wait for all timelines to be populated before we exit | 
					
						
							|  |  |  | 	wg.Wait() | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (p *processor) initTimelineFor(account *gtsmodel.Account, wg *sync.WaitGroup) { | 
					
						
							|  |  |  | 	defer wg.Done() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	l := p.log.WithFields(logrus.Fields{ | 
					
						
							|  |  |  | 		"func":      "initTimelineFor", | 
					
						
							|  |  |  | 		"accountID": account.ID, | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	desiredIndexLength := p.timelineManager.GetDesiredIndexLength() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 	statuses, err := p.db.GetStatusesWhereFollowing(account.ID, "", "", "", desiredIndexLength, false) | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		l.Error(fmt.Errorf("initTimelineFor: error getting statuses: %s", err)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	p.indexAndIngest(statuses, account, desiredIndexLength) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lengthNow := p.timelineManager.GetIndexedLength(account.ID) | 
					
						
							|  |  |  | 	if lengthNow < desiredIndexLength { | 
					
						
							|  |  |  | 		// try and get more posts from the last ID onwards | 
					
						
							|  |  |  | 		rearmostStatusID, err := p.timelineManager.GetOldestIndexedID(account.ID) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			l.Error(fmt.Errorf("initTimelineFor: error getting id of rearmost status: %s", err)) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if rearmostStatusID != "" { | 
					
						
							| 
									
										
										
										
											2021-06-07 20:20:36 +02:00
										 |  |  | 			moreStatuses, err := p.db.GetStatusesWhereFollowing(account.ID, rearmostStatusID, "", "", desiredIndexLength/2, false) | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				l.Error(fmt.Errorf("initTimelineFor: error getting more statuses: %s", err)) | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			p.indexAndIngest(moreStatuses, account, desiredIndexLength) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	l.Debugf("prepared timeline of length %d for account %s", lengthNow, account.ID) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (p *processor) indexAndIngest(statuses []*gtsmodel.Status, timelineAccount *gtsmodel.Account, desiredIndexLength int) { | 
					
						
							|  |  |  | 	l := p.log.WithFields(logrus.Fields{ | 
					
						
							|  |  |  | 		"func":      "indexAndIngest", | 
					
						
							|  |  |  | 		"accountID": timelineAccount.ID, | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, s := range statuses { | 
					
						
							|  |  |  | 		relevantAccounts, err := p.db.PullRelevantAccountsFromStatus(s) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			l.Error(fmt.Errorf("initTimelineFor: error getting relevant accounts from status %s: %s", s.ID, err)) | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-06-04 16:35:58 +02:00
										 |  |  | 		visible, err := p.db.StatusVisible(s, timelineAccount, relevantAccounts) | 
					
						
							| 
									
										
										
										
											2021-06-02 19:52:15 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			l.Error(fmt.Errorf("initTimelineFor: error checking visibility of status %s: %s", s.ID, err)) | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if visible { | 
					
						
							|  |  |  | 			if err := p.timelineManager.Ingest(s, timelineAccount.ID); err != nil { | 
					
						
							|  |  |  | 				l.Error(fmt.Errorf("initTimelineFor: error ingesting status %s: %s", s.ID, err)) | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// check if we have enough posts now and return if we do | 
					
						
							|  |  |  | 			if p.timelineManager.GetIndexedLength(timelineAccount.ID) >= desiredIndexLength { | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |