mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 03:42:25 -05:00 
			
		
		
		
	Database updates (#144)
* start moving some database stuff around * continue moving db stuff around * more fiddling * more updates * and some more * and yet more * i broke SOMETHING but what, it's a mystery * tidy up * vendor ttlcache * use ttlcache * fix up some tests * rename some stuff * little reminder * some more updates
This commit is contained in:
		
					parent
					
						
							
								ce190d867c
							
						
					
				
			
			
				commit
				
					
						4920229a3b
					
				
			
		
					 164 changed files with 4850 additions and 2617 deletions
				
			
		|  | @ -9,51 +9,40 @@ import ( | |||
| 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | ||||
| ) | ||||
| 
 | ||||
| func (p *processor) FavedBy(account *gtsmodel.Account, targetStatusID string) ([]*apimodel.Account, gtserror.WithCode) { | ||||
| 	l := p.log.WithField("func", "StatusFavedBy") | ||||
| 
 | ||||
| 	l.Tracef("going to search for target status %s", targetStatusID) | ||||
| 	targetStatus := >smodel.Status{} | ||||
| 	if err := p.db.GetByID(targetStatusID, targetStatus); err != nil { | ||||
| func (p *processor) FavedBy(requestingAccount *gtsmodel.Account, targetStatusID string) ([]*apimodel.Account, gtserror.WithCode) { | ||||
| 	targetStatus, err := p.db.GetStatusByID(targetStatusID) | ||||
| 	if err != nil { | ||||
| 		return nil, gtserror.NewErrorNotFound(fmt.Errorf("error fetching status %s: %s", targetStatusID, err)) | ||||
| 	} | ||||
| 
 | ||||
| 	l.Tracef("going to search for target account %s", targetStatus.AccountID) | ||||
| 	targetAccount := >smodel.Account{} | ||||
| 	if err := p.db.GetByID(targetStatus.AccountID, targetAccount); err != nil { | ||||
| 		return nil, gtserror.NewErrorNotFound(fmt.Errorf("error fetching target account %s: %s", targetStatus.AccountID, err)) | ||||
| 	if targetStatus.Account == nil { | ||||
| 		return nil, gtserror.NewErrorNotFound(fmt.Errorf("no status owner for status %s", targetStatusID)) | ||||
| 	} | ||||
| 
 | ||||
| 	l.Trace("going to see if status is visible") | ||||
| 	visible, err := p.filter.StatusVisible(targetStatus, account) | ||||
| 	visible, err := p.filter.StatusVisible(targetStatus, requestingAccount) | ||||
| 	if err != nil { | ||||
| 		return nil, gtserror.NewErrorNotFound(fmt.Errorf("error seeing if status %s is visible: %s", targetStatus.ID, err)) | ||||
| 	} | ||||
| 
 | ||||
| 	if !visible { | ||||
| 		return nil, gtserror.NewErrorNotFound(errors.New("status is not visible")) | ||||
| 	} | ||||
| 
 | ||||
| 	// get ALL accounts that faved a status -- doesn't take account of blocks and mutes and stuff | ||||
| 	favingAccounts, err := p.db.WhoFavedStatus(targetStatus) | ||||
| 	statusFaves, err := p.db.GetStatusFaves(targetStatus) | ||||
| 	if err != nil { | ||||
| 		return nil, gtserror.NewErrorNotFound(fmt.Errorf("error seeing who faved status: %s", err)) | ||||
| 	} | ||||
| 
 | ||||
| 	// filter the list so the user doesn't see accounts they blocked or which blocked them | ||||
| 	filteredAccounts := []*gtsmodel.Account{} | ||||
| 	for _, acc := range favingAccounts { | ||||
| 		blocked, err := p.db.Blocked(account.ID, acc.ID) | ||||
| 	for _, fave := range statusFaves { | ||||
| 		blocked, err := p.db.IsBlocked(requestingAccount.ID, fave.AccountID, true) | ||||
| 		if err != nil { | ||||
| 			return nil, gtserror.NewErrorInternalError(fmt.Errorf("error checking blocks: %s", err)) | ||||
| 		} | ||||
| 		if !blocked { | ||||
| 			filteredAccounts = append(filteredAccounts, acc) | ||||
| 			filteredAccounts = append(filteredAccounts, fave.Account) | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	// TODO: filter other things here? suspended? muted? silenced? | ||||
| 
 | ||||
| 	// now we can return the masto representation of those accounts | ||||
| 	mastoAccounts := []*apimodel.Account{} | ||||
| 	for _, acc := range filteredAccounts { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue