-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcontent_filtering.go
125 lines (112 loc) · 2.42 KB
/
content_filtering.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package main
import (
"context"
"fmt"
"regexp"
"slices"
"strings"
"github.com/nbd-wtf/go-nostr"
"github.com/nbd-wtf/go-nostr/sdk"
)
func isMaliciousBridged(pm sdk.ProfileMetadata) bool {
return strings.Contains(pm.NIP05, "rape.pet") || strings.Contains(pm.NIP05, "rape-pet")
}
func hasProhibitedWordOrTag(event *nostr.Event) bool {
for _, tag := range event.Tags {
if len(tag) >= 2 && tag[0] == "t" && slices.Contains(pornTags, strings.ToLower(tag[1])) {
return true
}
}
return pornWordsRe.MatchString(event.Content)
}
// hasExplicitMedia checks if the event contains explicit media content
// by examining image/video URLs in the content and checking them against the media alert API
func hasExplicitMedia(ctx context.Context, event *nostr.Event) bool {
// extract image and video URLs from content
var mediaURLs []string
// find image URLs
imgMatches := imageExtensionMatcher.FindAllStringSubmatch(event.Content, -1)
for _, match := range imgMatches {
if len(match) > 0 {
mediaURLs = append(mediaURLs, match[0])
}
}
// find video URLs
vidMatches := videoExtensionMatcher.FindAllStringSubmatch(event.Content, -1)
for _, match := range vidMatches {
if len(match) > 0 {
mediaURLs = append(mediaURLs, match[0])
}
}
// check each URL for explicit content
for _, mediaURL := range mediaURLs {
isExplicit, err := isExplicitContent(ctx, mediaURL)
if err != nil {
log.Warn().Err(err).Str("url", mediaURL).Msg("failed to check media content")
continue
}
if isExplicit {
return true
}
}
return false
}
// list copied from https://jsr.io/@gleasonator/policy/0.2.0/data/porntags.json
var pornTags = []string{
"adult",
"ass",
"assworship",
"boobs",
"boobies",
"butt",
"cock",
"dick",
"dickpic",
"explosionloli",
"femboi",
"femboy",
"fetish",
"fuck",
"freeporn",
"girls",
"lewd",
"loli",
"milf",
"naked",
"nude",
"nudes",
"nudeart",
"nudity",
"nsfw",
"pantsu",
"pussy",
"porn",
"porngif",
"porno",
"pornstar",
"porntube",
"pornvideo",
"sex",
"sexpervertsyndicate",
"sexporn",
"sexworker",
"sexy",
"slut",
"teen",
"tits",
"teenporn",
"teens",
"transnsfw",
"xxx",
}
var pornWordsRe = func() *regexp.Regexp {
// list copied from https://jsr.io/@gleasonator/policy/0.2.0/data/pornwords.json
pornWords := []string{
"loli",
"nsfw",
"teen porn",
}
concat := strings.Join(pornWords, "|")
regex := fmt.Sprintf(`\b(%s)\b`, concat)
return regexp.MustCompile(regex)
}()