mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-03 19:02:26 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// GoToSocial
 | 
						|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
 | 
						|
// SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
//
 | 
						|
// 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 account
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"errors"
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	apimodel "code.superseriousbusiness.org/gotosocial/internal/api/model"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/db"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/gtscontext"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/gtserror"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/gtsmodel"
 | 
						|
	"code.superseriousbusiness.org/gotosocial/internal/log"
 | 
						|
)
 | 
						|
 | 
						|
// ListsGet returns all lists owned by requestingAccount, which contain a follow for targetAccountID.
 | 
						|
func (p *Processor) ListsGet(ctx context.Context, requestingAccount *gtsmodel.Account, targetAccountID string) ([]*apimodel.List, gtserror.WithCode) {
 | 
						|
	targetAccount, err := p.state.DB.GetAccountByID(ctx, targetAccountID)
 | 
						|
	if err != nil {
 | 
						|
		if errors.Is(err, db.ErrNoEntries) {
 | 
						|
			return nil, gtserror.NewErrorNotFound(errors.New("account not found"))
 | 
						|
		}
 | 
						|
		return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error: %w", err))
 | 
						|
	}
 | 
						|
 | 
						|
	visible, err := p.visFilter.AccountVisible(ctx, requestingAccount, targetAccount)
 | 
						|
	if err != nil {
 | 
						|
		return nil, gtserror.NewErrorInternalError(fmt.Errorf("db error: %w", err))
 | 
						|
	}
 | 
						|
 | 
						|
	if !visible {
 | 
						|
		return nil, gtserror.NewErrorNotFound(errors.New("account not found"))
 | 
						|
	}
 | 
						|
 | 
						|
	// Requester has to follow targetAccount
 | 
						|
	// for them to be in any of their lists.
 | 
						|
	follow, err := p.state.DB.GetFollow(
 | 
						|
 | 
						|
		// Don't populate follow.
 | 
						|
		gtscontext.SetBarebones(ctx),
 | 
						|
		requestingAccount.ID,
 | 
						|
		targetAccountID,
 | 
						|
	)
 | 
						|
	if err != nil && !errors.Is(err, db.ErrNoEntries) {
 | 
						|
		err := gtserror.Newf("error getting follow: %w", err)
 | 
						|
		return nil, gtserror.NewErrorInternalError(err)
 | 
						|
	}
 | 
						|
 | 
						|
	if follow == nil {
 | 
						|
		return []*apimodel.List{}, nil
 | 
						|
	}
 | 
						|
 | 
						|
	// Get all lists that this follow is an entry within.
 | 
						|
	lists, err := p.state.DB.GetListsContainingFollowID(ctx, follow.ID)
 | 
						|
	if err != nil {
 | 
						|
		err := gtserror.Newf("error getting lists for follow: %w", err)
 | 
						|
		return nil, gtserror.NewErrorInternalError(err)
 | 
						|
	}
 | 
						|
 | 
						|
	apiLists := make([]*apimodel.List, 0, len(lists))
 | 
						|
	for _, list := range lists {
 | 
						|
		apiList, err := p.converter.ListToAPIList(ctx, list)
 | 
						|
		if err != nil {
 | 
						|
			log.Errorf(ctx, "error converting list: %v", err)
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		apiLists = append(apiLists, apiList)
 | 
						|
	}
 | 
						|
 | 
						|
	return apiLists, nil
 | 
						|
}
 |