mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-13 05:27:29 -06:00
[feature] Option to hide followers/following (#2788)
This commit is contained in:
parent
29972e2c93
commit
f05874be30
19 changed files with 322 additions and 83 deletions
|
|
@ -31,11 +31,25 @@ import (
|
|||
// FollowersGet fetches a list of the target account's followers.
|
||||
func (p *Processor) FollowersGet(ctx context.Context, requestingAccount *gtsmodel.Account, targetAccountID string, page *paging.Page) (*apimodel.PageableResponse, gtserror.WithCode) {
|
||||
// Fetch target account to check it exists, and visibility of requester->target.
|
||||
_, errWithCode := p.c.GetVisibleTargetAccount(ctx, requestingAccount, targetAccountID)
|
||||
targetAccount, errWithCode := p.c.GetVisibleTargetAccount(ctx, requestingAccount, targetAccountID)
|
||||
if errWithCode != nil {
|
||||
return nil, errWithCode
|
||||
}
|
||||
|
||||
if targetAccount.IsInstance() {
|
||||
// Instance accounts can't follow/be followed.
|
||||
return paging.EmptyResponse(), nil
|
||||
}
|
||||
|
||||
// If account isn't requesting its own followers list,
|
||||
// but instead the list for a local account that has
|
||||
// hide_followers set, just return an empty array.
|
||||
if targetAccountID != requestingAccount.ID &&
|
||||
targetAccount.IsLocal() &&
|
||||
*targetAccount.Settings.HideCollections {
|
||||
return paging.EmptyResponse(), nil
|
||||
}
|
||||
|
||||
follows, err := p.state.DB.GetAccountFollowers(ctx, targetAccountID, page)
|
||||
if err != nil && !errors.Is(err, db.ErrNoEntries) {
|
||||
err = gtserror.Newf("db error getting followers: %w", err)
|
||||
|
|
@ -76,11 +90,25 @@ func (p *Processor) FollowersGet(ctx context.Context, requestingAccount *gtsmode
|
|||
// FollowingGet fetches a list of the accounts that target account is following.
|
||||
func (p *Processor) FollowingGet(ctx context.Context, requestingAccount *gtsmodel.Account, targetAccountID string, page *paging.Page) (*apimodel.PageableResponse, gtserror.WithCode) {
|
||||
// Fetch target account to check it exists, and visibility of requester->target.
|
||||
_, errWithCode := p.c.GetVisibleTargetAccount(ctx, requestingAccount, targetAccountID)
|
||||
targetAccount, errWithCode := p.c.GetVisibleTargetAccount(ctx, requestingAccount, targetAccountID)
|
||||
if errWithCode != nil {
|
||||
return nil, errWithCode
|
||||
}
|
||||
|
||||
if targetAccount.IsInstance() {
|
||||
// Instance accounts can't follow/be followed.
|
||||
return paging.EmptyResponse(), nil
|
||||
}
|
||||
|
||||
// If account isn't requesting its own following list,
|
||||
// but instead the list for a local account that has
|
||||
// hide_followers set, just return an empty array.
|
||||
if targetAccountID != requestingAccount.ID &&
|
||||
targetAccount.IsLocal() &&
|
||||
*targetAccount.Settings.HideCollections {
|
||||
return paging.EmptyResponse(), nil
|
||||
}
|
||||
|
||||
// Fetch known accounts that follow given target account ID.
|
||||
follows, err := p.state.DB.GetAccountFollows(ctx, targetAccountID, page)
|
||||
if err != nil && !errors.Is(err, db.ErrNoEntries) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue