Skip to content

Commit

Permalink
✨ Add combo hashtag rule
Browse files Browse the repository at this point in the history
  • Loading branch information
foysalit committed Sep 2, 2024
1 parent 6ac3da7 commit 97110ad
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions automod/rules/hashtags.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ import (

// looks for specific hashtags from known lists
func BadHashtagsPostRule(c *automod.RecordContext, post *appbsky.FeedPost) error {
// In cases where we have a soft signaling hashtag that are problematic in combination with other hashtags
// we'd want to check the record contains the combination before taking any action
potentiallyBadHashtags := []string{}
potentiallyBadHashtagCombo := []string{}

for _, tag := range ExtractHashtagsPost(post) {
tag = NormalizeHashtag(tag)
// skip some bad-word hashtags which frequently false-positive
Expand All @@ -19,6 +24,16 @@ func BadHashtagsPostRule(c *automod.RecordContext, post *appbsky.FeedPost) error
if c.InSet("bad-hashtags", tag) || c.InSet("bad-words", tag) {
c.AddRecordFlag("bad-hashtag")
c.ReportRecord(automod.ReportReasonRude, fmt.Sprintf("possible bad word in hashtags: %s", tag))

if c.InSet("potentially-bad-hashtags", tag) {
potentiallyBadHashtags = append(potentiallyBadHashtags, tag)
break
}
if c.InSet("potentially-bad-hashtag-combos", tag) {
potentiallyBadHashtagCombo = append(potentiallyBadHashtagCombo, tag)
break
}

break
}
word := keyword.SlugContainsExplicitSlur(keyword.Slugify(tag))
Expand All @@ -28,6 +43,13 @@ func BadHashtagsPostRule(c *automod.RecordContext, post *appbsky.FeedPost) error
break
}
}

if len(potentiallyBadHashtagCombo) > 0 && len(potentiallyBadHashtags) > 0 {
c.AddRecordFlag("bad-hashtag-combo")
c.ReportRecord(automod.ReportReasonRude, fmt.Sprintf("bad hashtag combo: %s %s. account will be taken down", potentiallyBadHashtagCombo, potentiallyBadHashtags))
c.TakedownAccount()
}

return nil
}

Expand Down

0 comments on commit 97110ad

Please sign in to comment.