mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-06 01:33:15 -06:00
tidy up
This commit is contained in:
parent
3e72a9757b
commit
accc8971d1
53 changed files with 896 additions and 486 deletions
|
|
@ -1,3 +1,21 @@
|
|||
/*
|
||||
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 visibility
|
||||
|
||||
import (
|
||||
|
|
|
|||
229
internal/visibility/relevantaccounts.go
Normal file
229
internal/visibility/relevantaccounts.go
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
/*
|
||||
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 visibility
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
||||
)
|
||||
|
||||
// relevantAccounts denotes accounts that are replied to, boosted by, or mentioned in a status.
|
||||
type relevantAccounts struct {
|
||||
// Who wrote the status
|
||||
Account *gtsmodel.Account
|
||||
// Who is the status replying to
|
||||
InReplyToAccount *gtsmodel.Account
|
||||
// Which accounts are mentioned (tagged) in the status
|
||||
MentionedAccounts []*gtsmodel.Account
|
||||
// Who authed the boosted status
|
||||
BoostedAccount *gtsmodel.Account
|
||||
// If the boosted status replies to another account, who does it reply to?
|
||||
BoostedInReplyToAccount *gtsmodel.Account
|
||||
// Who is mentioned (tagged) in the boosted status
|
||||
BoostedMentionedAccounts []*gtsmodel.Account
|
||||
}
|
||||
|
||||
func (f *filter) relevantAccounts(status *gtsmodel.Status, getBoosted bool) (*relevantAccounts, error) {
|
||||
relAccts := &relevantAccounts{
|
||||
MentionedAccounts: []*gtsmodel.Account{},
|
||||
BoostedMentionedAccounts: []*gtsmodel.Account{},
|
||||
}
|
||||
|
||||
/*
|
||||
Here's what we need to try and extract from the status:
|
||||
|
||||
// 1. Who wrote the status
|
||||
Account *gtsmodel.Account
|
||||
|
||||
// 2. Who is the status replying to
|
||||
InReplyToAccount *gtsmodel.Account
|
||||
|
||||
// 3. Which accounts are mentioned (tagged) in the status
|
||||
MentionedAccounts []*gtsmodel.Account
|
||||
|
||||
if getBoosted:
|
||||
// 4. Who wrote the boosted status
|
||||
BoostedAccount *gtsmodel.Account
|
||||
|
||||
// 5. If the boosted status replies to another account, who does it reply to?
|
||||
BoostedInReplyToAccount *gtsmodel.Account
|
||||
|
||||
// 6. Who is mentioned (tagged) in the boosted status
|
||||
BoostedMentionedAccounts []*gtsmodel.Account
|
||||
*/
|
||||
|
||||
// 1. Account.
|
||||
// Account might be set on the status already
|
||||
if status.Account != nil {
|
||||
// it was set
|
||||
relAccts.Account = status.Account
|
||||
} else {
|
||||
// it wasn't set, so get it from the db
|
||||
account, err := f.db.GetAccountByID(status.AccountID)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("relevantAccounts: error getting account with id %s: %s", status.AccountID, err)
|
||||
}
|
||||
// set it on the status in case we need it further along
|
||||
status.Account = account
|
||||
// set it on relevant accounts
|
||||
relAccts.Account = account
|
||||
}
|
||||
|
||||
// 2. InReplyToAccount
|
||||
// only get this if InReplyToAccountID is set
|
||||
if status.InReplyToAccountID != "" {
|
||||
// InReplyToAccount might be set on the status already
|
||||
if status.InReplyToAccount != nil {
|
||||
// it was set
|
||||
relAccts.InReplyToAccount = status.InReplyToAccount
|
||||
} else {
|
||||
// it wasn't set, so get it from the db
|
||||
inReplyToAccount, err := f.db.GetAccountByID(status.InReplyToAccountID)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("relevantAccounts: error getting inReplyToAccount with id %s: %s", status.InReplyToAccountID, err)
|
||||
}
|
||||
// set it on the status in case we need it further along
|
||||
status.InReplyToAccount = inReplyToAccount
|
||||
// set it on relevant accounts
|
||||
relAccts.InReplyToAccount = inReplyToAccount
|
||||
}
|
||||
}
|
||||
|
||||
// 3. MentionedAccounts
|
||||
// First check if status.Mentions is populated with all mentions that correspond to status.MentionIDs
|
||||
for _, mID := range status.MentionIDs {
|
||||
if mID == "" {
|
||||
continue
|
||||
}
|
||||
if !idIn(mID, status.Mentions) {
|
||||
// mention with ID isn't in status.Mentions
|
||||
mention, err := f.db.GetMention(mID)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("relevantAccounts: error getting mention with id %s: %s", mID, err)
|
||||
}
|
||||
if mention == nil {
|
||||
return nil, fmt.Errorf("relevantAccounts: mention with id %s was nil", mID)
|
||||
}
|
||||
status.Mentions = append(status.Mentions, mention)
|
||||
}
|
||||
}
|
||||
// now filter mentions to make sure we only have mentions with a corresponding ID
|
||||
nm := []*gtsmodel.Mention{}
|
||||
for _, m := range status.Mentions {
|
||||
if m == nil {
|
||||
continue
|
||||
}
|
||||
if mentionIn(m, status.MentionIDs) {
|
||||
nm = append(nm, m)
|
||||
}
|
||||
}
|
||||
status.Mentions = nm
|
||||
|
||||
if len(status.Mentions) != len(status.MentionIDs) {
|
||||
return nil, errors.New("relevantAccounts: mentions length did not correspond with mentionIDs length")
|
||||
}
|
||||
|
||||
// if getBoosted is set, we should check the same properties on the boosted account as well
|
||||
if getBoosted {
|
||||
// 4, 5, 6. Boosted status items
|
||||
// get the boosted status if it's not set on the status already
|
||||
if status.BoostOfID != "" && status.BoostOf == nil {
|
||||
boostedStatus, err := f.db.GetStatusByID(status.BoostOfID)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("relevantAccounts: error getting boosted status with id %s: %s", status.BoostOfID, err)
|
||||
}
|
||||
status.BoostOf = boostedStatus
|
||||
}
|
||||
|
||||
if status.BoostOf != nil {
|
||||
// return relevant accounts for the boosted status
|
||||
boostedRelAccts, err := f.relevantAccounts(status.BoostOf, false) // false because we don't want to recurse
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("relevantAccounts: error getting relevant accounts of boosted status %s: %s", status.BoostOf.ID, err)
|
||||
}
|
||||
relAccts.BoostedAccount = boostedRelAccts.Account
|
||||
relAccts.BoostedInReplyToAccount = boostedRelAccts.InReplyToAccount
|
||||
relAccts.BoostedMentionedAccounts = boostedRelAccts.MentionedAccounts
|
||||
}
|
||||
}
|
||||
|
||||
return relAccts, nil
|
||||
}
|
||||
|
||||
// domainBlockedRelevant checks through all relevant accounts attached to a status
|
||||
// to make sure none of them are domain blocked by this instance.
|
||||
func (f *filter) domainBlockedRelevant(r *relevantAccounts) (bool, error) {
|
||||
domains := []string{}
|
||||
|
||||
if r.Account != nil {
|
||||
domains = append(domains, r.Account.Domain)
|
||||
}
|
||||
|
||||
if r.InReplyToAccount != nil {
|
||||
domains = append(domains, r.InReplyToAccount.Domain)
|
||||
}
|
||||
|
||||
for _, a := range r.MentionedAccounts {
|
||||
if a != nil {
|
||||
domains = append(domains, a.Domain)
|
||||
}
|
||||
}
|
||||
|
||||
if r.BoostedAccount != nil {
|
||||
domains = append(domains, r.BoostedAccount.Domain)
|
||||
}
|
||||
|
||||
if r.BoostedInReplyToAccount != nil {
|
||||
domains = append(domains, r.BoostedInReplyToAccount.Domain)
|
||||
}
|
||||
|
||||
for _, a := range r.BoostedMentionedAccounts {
|
||||
if a != nil {
|
||||
domains = append(domains, a.Domain)
|
||||
}
|
||||
}
|
||||
|
||||
return f.db.AreDomainsBlocked(domains)
|
||||
}
|
||||
|
||||
func idIn(id string, mentions []*gtsmodel.Mention) bool {
|
||||
for _, m := range mentions {
|
||||
if m == nil {
|
||||
continue
|
||||
}
|
||||
if m.ID == id {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func mentionIn(mention *gtsmodel.Mention, ids []string) bool {
|
||||
if mention == nil {
|
||||
return false
|
||||
}
|
||||
for _, i := range ids {
|
||||
if mention.ID == i {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
@ -1,3 +1,21 @@
|
|||
/*
|
||||
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 visibility
|
||||
|
||||
import (
|
||||
|
|
@ -28,6 +46,13 @@ func (f *filter) StatusHometimelineable(targetStatus *gtsmodel.Status, timelineO
|
|||
return false, nil
|
||||
}
|
||||
|
||||
for _, m := range targetStatus.Mentions {
|
||||
if m.TargetAccountID == timelineOwnerAccount.ID {
|
||||
// if we're mentioned we should be able to see the post
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
// Don't timeline a status whose parent hasn't been dereferenced yet or can't be dereferenced.
|
||||
// If we have the reply to URI but don't have an ID for the replied-to account or the replied-to status in our database, we haven't dereferenced it yet.
|
||||
if targetStatus.InReplyToURI != "" && (targetStatus.InReplyToID == "" || targetStatus.InReplyToAccountID == "") {
|
||||
|
|
@ -38,8 +63,8 @@ func (f *filter) StatusHometimelineable(targetStatus *gtsmodel.Status, timelineO
|
|||
if targetStatus.InReplyToID != "" {
|
||||
// pin the reply to status on to this status if it hasn't been done already
|
||||
if targetStatus.InReplyTo == nil {
|
||||
rs := >smodel.Status{}
|
||||
if err := f.db.GetByID(targetStatus.InReplyToID, rs); err != nil {
|
||||
rs, err := f.db.GetStatusByID(targetStatus.InReplyToID)
|
||||
if err != nil {
|
||||
return false, fmt.Errorf("StatusHometimelineable: error getting replied to status with id %s: %s", targetStatus.InReplyToID, err)
|
||||
}
|
||||
targetStatus.InReplyTo = rs
|
||||
|
|
@ -47,8 +72,8 @@ func (f *filter) StatusHometimelineable(targetStatus *gtsmodel.Status, timelineO
|
|||
|
||||
// pin the reply to account on to this status if it hasn't been done already
|
||||
if targetStatus.InReplyToAccount == nil {
|
||||
ra := >smodel.Account{}
|
||||
if err := f.db.GetByID(targetStatus.InReplyToAccountID, ra); err != nil {
|
||||
ra, err := f.db.GetAccountByID(targetStatus.InReplyToAccountID)
|
||||
if err != nil {
|
||||
return false, fmt.Errorf("StatusHometimelineable: error getting replied to account with id %s: %s", targetStatus.InReplyToAccountID, err)
|
||||
}
|
||||
targetStatus.InReplyToAccount = ra
|
||||
|
|
|
|||
|
|
@ -1,3 +1,21 @@
|
|||
/*
|
||||
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 visibility
|
||||
|
||||
import (
|
||||
|
|
|
|||
|
|
@ -1,3 +1,21 @@
|
|||
/*
|
||||
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 visibility
|
||||
|
||||
import (
|
||||
|
|
@ -16,10 +34,11 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
|
|||
"statusID": targetStatus.ID,
|
||||
})
|
||||
|
||||
relevantAccounts, err := f.pullRelevantAccountsFromStatus(targetStatus)
|
||||
getBoosted := true
|
||||
relevantAccounts, err := f.relevantAccounts(targetStatus, getBoosted)
|
||||
if err != nil {
|
||||
l.Debugf("error pulling relevant accounts for status %s: %s", targetStatus.ID, err)
|
||||
return false, fmt.Errorf("error pulling relevant accounts for status %s: %s", targetStatus.ID, err)
|
||||
return false, fmt.Errorf("StatusVisible: error pulling relevant accounts for status %s: %s", targetStatus.ID, err)
|
||||
}
|
||||
|
||||
domainBlocked, err := f.domainBlockedRelevant(relevantAccounts)
|
||||
|
|
@ -32,7 +51,7 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
|
|||
return false, nil
|
||||
}
|
||||
|
||||
targetAccount := relevantAccounts.StatusAuthor
|
||||
targetAccount := relevantAccounts.Account
|
||||
if targetAccount == nil {
|
||||
l.Trace("target account is not set")
|
||||
return false, nil
|
||||
|
|
@ -117,8 +136,8 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
|
|||
}
|
||||
|
||||
// status replies to account id
|
||||
if relevantAccounts.ReplyToAccount != nil && relevantAccounts.ReplyToAccount.ID != requestingAccount.ID {
|
||||
if blocked, err := f.db.Blocked(relevantAccounts.ReplyToAccount.ID, requestingAccount.ID, true); err != nil {
|
||||
if relevantAccounts.InReplyToAccount != nil && relevantAccounts.InReplyToAccount.ID != requestingAccount.ID {
|
||||
if blocked, err := f.db.Blocked(relevantAccounts.InReplyToAccount.ID, requestingAccount.ID, true); err != nil {
|
||||
return false, err
|
||||
} else if blocked {
|
||||
l.Trace("a block exists between requesting account and reply to account")
|
||||
|
|
@ -127,7 +146,7 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
|
|||
|
||||
// check reply to ID
|
||||
if targetStatus.InReplyToID != "" && (targetStatus.Visibility == gtsmodel.VisibilityFollowersOnly || targetStatus.Visibility == gtsmodel.VisibilityDirect) {
|
||||
followsRepliedAccount, err := f.db.Follows(requestingAccount, relevantAccounts.ReplyToAccount)
|
||||
followsRepliedAccount, err := f.db.Follows(requestingAccount, relevantAccounts.InReplyToAccount)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
|
@ -139,8 +158,8 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
|
|||
}
|
||||
|
||||
// status boosts accounts id
|
||||
if relevantAccounts.BoostedStatusAuthor != nil {
|
||||
if blocked, err := f.db.Blocked(relevantAccounts.BoostedStatusAuthor.ID, requestingAccount.ID, true); err != nil {
|
||||
if relevantAccounts.BoostedAccount != nil {
|
||||
if blocked, err := f.db.Blocked(relevantAccounts.BoostedAccount.ID, requestingAccount.ID, true); err != nil {
|
||||
return false, err
|
||||
} else if blocked {
|
||||
l.Trace("a block exists between requesting account and boosted account")
|
||||
|
|
@ -149,8 +168,8 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
|
|||
}
|
||||
|
||||
// status boosts a reply to account id
|
||||
if relevantAccounts.BoostedReplyToAccount != nil {
|
||||
if blocked, err := f.db.Blocked(relevantAccounts.BoostedReplyToAccount.ID, requestingAccount.ID, true); err != nil {
|
||||
if relevantAccounts.BoostedInReplyToAccount != nil {
|
||||
if blocked, err := f.db.Blocked(relevantAccounts.BoostedInReplyToAccount.ID, requestingAccount.ID, true); err != nil {
|
||||
return false, err
|
||||
} else if blocked {
|
||||
l.Trace("a block exists between requesting account and boosted reply to account")
|
||||
|
|
|
|||
|
|
@ -1,210 +0,0 @@
|
|||
package visibility
|
||||
|
||||
import (
|
||||
"github.com/superseriousbusiness/gotosocial/internal/db"
|
||||
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
||||
)
|
||||
|
||||
func (f *filter) pullRelevantAccountsFromStatus(targetStatus *gtsmodel.Status) (*relevantAccounts, error) {
|
||||
accounts := &relevantAccounts{
|
||||
MentionedAccounts: []*gtsmodel.Account{},
|
||||
BoostedMentionedAccounts: []*gtsmodel.Account{},
|
||||
}
|
||||
|
||||
// get the author account if it's not set on the status already
|
||||
if targetStatus.Account == nil {
|
||||
statusAuthor, err := f.db.GetAccountByID(targetStatus.AccountID)
|
||||
if err == nil {
|
||||
targetStatus.Account = statusAuthor
|
||||
}
|
||||
}
|
||||
accounts.StatusAuthor = targetStatus.Account
|
||||
|
||||
// now get all accounts with IDs that are mentioned in the status
|
||||
if targetStatus.MentionIDs != nil && targetStatus.Mentions == nil {
|
||||
mentions, err := f.db.GetMentions(targetStatus.MentionIDs)
|
||||
if err == nil {
|
||||
targetStatus.Mentions = mentions
|
||||
}
|
||||
}
|
||||
|
||||
for _, m := range targetStatus.Mentions {
|
||||
if m.TargetAccount == nil {
|
||||
t, err := f.db.GetAccountByID(m.TargetAccountID)
|
||||
if err == nil {
|
||||
m.TargetAccount = t
|
||||
}
|
||||
}
|
||||
accounts.MentionedAccounts = append(accounts.MentionedAccounts, m.TargetAccount)
|
||||
}
|
||||
|
||||
// get the replied to account if it's not set on the status already
|
||||
if targetStatus.InReplyToAccountID != "" && targetStatus.InReplyToAccount == nil {
|
||||
repliedToAccount, err := f.db.GetAccountByID(targetStatus.InReplyToAccountID)
|
||||
if err == nil {
|
||||
targetStatus.InReplyToAccount = repliedToAccount
|
||||
}
|
||||
}
|
||||
accounts.ReplyToAccount = targetStatus.InReplyToAccount
|
||||
|
||||
// get the boosted status if it's not set on the status already
|
||||
if targetStatus.BoostOfID != "" && targetStatus.BoostOf == nil {
|
||||
boostedStatus, err := f.db.GetStatusByID(targetStatus.BoostOfID)
|
||||
if err == nil {
|
||||
targetStatus.BoostOf = boostedStatus
|
||||
}
|
||||
}
|
||||
|
||||
// get the boosted account if it's not set on the status already
|
||||
if targetStatus.BoostOfAccountID != "" && targetStatus.BoostOfAccount == nil {
|
||||
if targetStatus.BoostOf != nil && targetStatus.BoostOf.Account != nil {
|
||||
targetStatus.BoostOfAccount = targetStatus.BoostOf.Account
|
||||
} else {
|
||||
boostedAccount, err := f.db.GetAccountByID(targetStatus.BoostOfAccountID)
|
||||
if err == nil {
|
||||
targetStatus.BoostOfAccount = boostedAccount
|
||||
}
|
||||
}
|
||||
}
|
||||
accounts.BoostedStatusAuthor = targetStatus.BoostOfAccount
|
||||
|
||||
if targetStatus.BoostOf != nil {
|
||||
// the boosted status might be a reply to another account so we should get that too
|
||||
if targetStatus.BoostOf.InReplyToAccountID != "" && targetStatus.BoostOf.InReplyToAccount == nil {
|
||||
boostOfInReplyToAccount, err := f.db.GetAccountByID(targetStatus.BoostOf.InReplyToAccountID)
|
||||
if err == nil {
|
||||
targetStatus.BoostOf.InReplyToAccount = boostOfInReplyToAccount
|
||||
}
|
||||
}
|
||||
accounts.BoostedReplyToAccount = targetStatus.BoostOf.InReplyToAccount
|
||||
|
||||
// now get all accounts with IDs that are mentioned in the boosted status
|
||||
if targetStatus.BoostOf.MentionIDs != nil && targetStatus.BoostOf.Mentions == nil {
|
||||
mentions, err := f.db.GetMentions(targetStatus.BoostOf.MentionIDs)
|
||||
if err == nil {
|
||||
targetStatus.BoostOf.Mentions = mentions
|
||||
}
|
||||
}
|
||||
|
||||
for _, m := range targetStatus.BoostOf.Mentions {
|
||||
if m.TargetAccount == nil {
|
||||
t, err := f.db.GetAccountByID(m.TargetAccountID)
|
||||
if err == nil {
|
||||
m.TargetAccount = t
|
||||
}
|
||||
}
|
||||
accounts.BoostedMentionedAccounts = append(accounts.BoostedMentionedAccounts, m.TargetAccount)
|
||||
}
|
||||
}
|
||||
|
||||
return accounts, nil
|
||||
}
|
||||
|
||||
// relevantAccounts denotes accounts that are replied to, boosted by, or mentioned in a status.
|
||||
type relevantAccounts struct {
|
||||
// Who wrote the status
|
||||
StatusAuthor *gtsmodel.Account
|
||||
// Who is the status replying to
|
||||
ReplyToAccount *gtsmodel.Account
|
||||
// Which accounts are mentioned (tagged) in the status
|
||||
MentionedAccounts []*gtsmodel.Account
|
||||
// Who authed the boosted status
|
||||
BoostedStatusAuthor *gtsmodel.Account
|
||||
// If the boosted status replies to another account, who does it reply to?
|
||||
BoostedReplyToAccount *gtsmodel.Account
|
||||
// Who is mentioned (tagged) in the boosted status
|
||||
BoostedMentionedAccounts []*gtsmodel.Account
|
||||
}
|
||||
|
||||
// blockedDomain checks whether the given domain is blocked by us or not
|
||||
func (f *filter) blockedDomain(host string) (bool, error) {
|
||||
b := >smodel.DomainBlock{}
|
||||
err := f.db.GetWhere([]db.Where{{Key: "domain", Value: host, CaseInsensitive: true}}, b)
|
||||
if err == nil {
|
||||
// block exists
|
||||
return true, nil
|
||||
}
|
||||
|
||||
if err == db.ErrNoEntries {
|
||||
// there are no entries so there's no block
|
||||
return false, nil
|
||||
}
|
||||
|
||||
// there's an actual error
|
||||
return false, err
|
||||
}
|
||||
|
||||
// domainBlockedRelevant checks through all relevant accounts attached to a status
|
||||
// to make sure none of them are domain blocked by this instance.
|
||||
//
|
||||
// Will return true+nil if there's a block, false+nil if there's no block, or
|
||||
// an error if something goes wrong.
|
||||
func (f *filter) domainBlockedRelevant(r *relevantAccounts) (bool, error) {
|
||||
if r.StatusAuthor != nil {
|
||||
b, err := f.blockedDomain(r.StatusAuthor.Domain)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
if b {
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
if r.ReplyToAccount != nil {
|
||||
b, err := f.blockedDomain(r.ReplyToAccount.Domain)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
if b {
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
for _, a := range r.MentionedAccounts {
|
||||
if a == nil {
|
||||
continue
|
||||
}
|
||||
b, err := f.blockedDomain(a.Domain)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
if b {
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
if r.BoostedStatusAuthor != nil {
|
||||
b, err := f.blockedDomain(r.BoostedStatusAuthor.Domain)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
if b {
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
if r.BoostedReplyToAccount != nil {
|
||||
b, err := f.blockedDomain(r.BoostedReplyToAccount.Domain)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
if b {
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
for _, a := range r.BoostedMentionedAccounts {
|
||||
if a == nil {
|
||||
continue
|
||||
}
|
||||
b, err := f.blockedDomain(a.Domain)
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
if b {
|
||||
return true, nil
|
||||
}
|
||||
}
|
||||
|
||||
return false, nil
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue