2024-08-15 15:00:43 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"grain/config"
|
|
|
|
cfg "grain/config/types"
|
2024-08-16 13:12:15 +00:00
|
|
|
"log"
|
2024-08-15 15:00:43 +00:00
|
|
|
"os"
|
|
|
|
"strings"
|
2024-08-15 20:20:22 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
2024-08-15 15:00:43 +00:00
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CheckBlacklist checks if a pubkey is in the blacklist based on event content
|
|
|
|
func CheckBlacklist(pubkey, eventContent string) (bool, string) {
|
2024-08-16 13:12:15 +00:00
|
|
|
cfg := config.GetConfig().Blacklist
|
2024-08-15 15:00:43 +00:00
|
|
|
|
2024-08-16 13:12:15 +00:00
|
|
|
if !cfg.Enabled {
|
|
|
|
return false, ""
|
|
|
|
}
|
2024-08-15 15:00:43 +00:00
|
|
|
|
2024-08-16 13:12:15 +00:00
|
|
|
log.Printf("Checking blacklist for pubkey: %s", pubkey)
|
2024-08-15 15:00:43 +00:00
|
|
|
|
2024-08-16 13:12:15 +00:00
|
|
|
// Check for permanent blacklist by pubkey or npub
|
|
|
|
if isPubKeyPermanentlyBlacklisted(pubkey) {
|
|
|
|
log.Printf("Pubkey %s is permanently blacklisted", pubkey)
|
|
|
|
return true, fmt.Sprintf("pubkey %s is permanently blacklisted", pubkey)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for temporary ban
|
|
|
|
if isPubKeyTemporarilyBlacklisted(pubkey) {
|
|
|
|
log.Printf("Pubkey %s is temporarily blacklisted", pubkey)
|
|
|
|
return true, fmt.Sprintf("pubkey %s is temporarily blacklisted", pubkey)
|
|
|
|
}
|
2024-08-15 20:20:22 +00:00
|
|
|
|
2024-08-15 15:00:43 +00:00
|
|
|
// Check for permanent ban based on wordlist
|
|
|
|
for _, word := range cfg.PermanentBanWords {
|
|
|
|
if strings.Contains(eventContent, word) {
|
|
|
|
err := AddToPermanentBlacklist(pubkey)
|
|
|
|
if err != nil {
|
|
|
|
return true, fmt.Sprintf("pubkey %s is permanently banned and failed to save: %v", pubkey, err)
|
|
|
|
}
|
2024-08-16 13:47:31 +00:00
|
|
|
return true, "blocked: pubkey is permanently banned"
|
2024-08-15 15:00:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-15 20:20:22 +00:00
|
|
|
// Check for temporary ban based on wordlist
|
|
|
|
for _, word := range cfg.TempBanWords {
|
|
|
|
if strings.Contains(eventContent, word) {
|
|
|
|
err := AddToTemporaryBlacklist(pubkey)
|
|
|
|
if err != nil {
|
|
|
|
return true, fmt.Sprintf("pubkey %s is temporarily banned and failed to save: %v", pubkey, err)
|
|
|
|
}
|
2024-08-16 13:47:31 +00:00
|
|
|
return true, "blocked: pubkey is temporarily banned"
|
2024-08-15 20:20:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-15 15:00:43 +00:00
|
|
|
return false, ""
|
|
|
|
}
|
|
|
|
|
2024-08-15 20:20:22 +00:00
|
|
|
|
|
|
|
// Checks if a pubkey is temporarily blacklisted
|
|
|
|
func isPubKeyTemporarilyBlacklisted(pubkey string) bool {
|
2024-08-16 13:12:15 +00:00
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
|
|
|
|
|
|
|
entry, exists := tempBannedPubkeys[pubkey]
|
|
|
|
if !exists {
|
|
|
|
log.Printf("Pubkey %s not found in temporary blacklist", pubkey)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
now := time.Now()
|
|
|
|
if now.After(entry.unbanTime) {
|
|
|
|
log.Printf("Temporary ban for pubkey %s has expired. Count: %d", pubkey, entry.count)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Pubkey %s is currently temporarily blacklisted. Count: %d, Unban time: %s", pubkey, entry.count, entry.unbanTime)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func ClearTemporaryBans() {
|
2024-08-15 20:20:22 +00:00
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
2024-08-16 13:12:15 +00:00
|
|
|
tempBannedPubkeys = make(map[string]*tempBanEntry)
|
|
|
|
}
|
2024-08-15 20:20:22 +00:00
|
|
|
|
2024-08-16 13:12:15 +00:00
|
|
|
var (
|
|
|
|
tempBannedPubkeys = make(map[string]*tempBanEntry)
|
|
|
|
mu sync.Mutex
|
|
|
|
)
|
2024-08-15 20:20:22 +00:00
|
|
|
|
2024-08-16 13:12:15 +00:00
|
|
|
type tempBanEntry struct {
|
|
|
|
count int
|
|
|
|
unbanTime time.Time
|
2024-08-15 20:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Adds a pubkey to the temporary blacklist
|
|
|
|
func AddToTemporaryBlacklist(pubkey string) error {
|
2024-08-16 13:12:15 +00:00
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
|
|
|
|
|
|
|
cfg := config.GetConfig().Blacklist
|
|
|
|
|
|
|
|
entry, exists := tempBannedPubkeys[pubkey]
|
|
|
|
if !exists {
|
|
|
|
log.Printf("Creating new temporary ban entry for pubkey %s", pubkey)
|
|
|
|
entry = &tempBanEntry{
|
|
|
|
count: 0,
|
|
|
|
unbanTime: time.Now(),
|
|
|
|
}
|
|
|
|
tempBannedPubkeys[pubkey] = entry
|
|
|
|
} else {
|
|
|
|
log.Printf("Updating existing temporary ban entry for pubkey %s. Current count: %d", pubkey, entry.count)
|
|
|
|
if time.Now().After(entry.unbanTime) {
|
|
|
|
log.Printf("Previous ban for pubkey %s has expired. Keeping count at %d", pubkey, entry.count)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Increment the count
|
|
|
|
entry.count++
|
|
|
|
entry.unbanTime = time.Now().Add(time.Duration(cfg.TempBanDuration) * time.Second)
|
|
|
|
|
|
|
|
log.Printf("Pubkey %s temporary ban count updated to: %d, MaxTempBans: %d, New unban time: %s", pubkey, entry.count, cfg.MaxTempBans, entry.unbanTime)
|
|
|
|
|
|
|
|
if entry.count > cfg.MaxTempBans {
|
|
|
|
log.Printf("Attempting to move pubkey %s to permanent blacklist", pubkey)
|
|
|
|
delete(tempBannedPubkeys, pubkey)
|
2024-08-16 13:14:37 +00:00
|
|
|
|
|
|
|
// Release the lock before calling AddToPermanentBlacklist
|
|
|
|
mu.Unlock()
|
2024-08-16 13:12:15 +00:00
|
|
|
err := AddToPermanentBlacklist(pubkey)
|
2024-08-16 13:14:37 +00:00
|
|
|
mu.Lock() // Re-acquire the lock
|
|
|
|
|
2024-08-16 13:12:15 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("Error adding pubkey %s to permanent blacklist: %v", pubkey, err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
log.Printf("Successfully added pubkey %s to permanent blacklist", pubkey)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2024-08-15 20:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Checks if a pubkey is permanently blacklisted (only using config.yml)
|
|
|
|
func isPubKeyPermanentlyBlacklisted(pubKey string) bool {
|
|
|
|
cfg := config.GetConfig().Blacklist // Get the latest configuration
|
|
|
|
|
2024-08-15 15:00:43 +00:00
|
|
|
if !cfg.Enabled {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check pubkeys
|
|
|
|
for _, blacklistedKey := range cfg.PermanentBlacklistPubkeys {
|
|
|
|
if pubKey == blacklistedKey {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check npubs
|
|
|
|
for _, npub := range cfg.PermanentBlacklistNpubs {
|
|
|
|
decodedPubKey, err := DecodeNpub(npub)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error decoding npub:", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if pubKey == decodedPubKey {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func AddToPermanentBlacklist(pubkey string) error {
|
2024-08-16 13:14:37 +00:00
|
|
|
// Remove the mutex lock from here
|
|
|
|
cfg := config.GetConfig().Blacklist
|
2024-08-15 15:00:43 +00:00
|
|
|
|
2024-08-16 13:14:37 +00:00
|
|
|
// Check if already blacklisted
|
|
|
|
if isPubKeyPermanentlyBlacklisted(pubkey) {
|
|
|
|
return fmt.Errorf("pubkey %s is already in the permanent blacklist", pubkey)
|
|
|
|
}
|
2024-08-15 15:00:43 +00:00
|
|
|
|
2024-08-16 13:14:37 +00:00
|
|
|
// Add pubkey to the blacklist
|
|
|
|
cfg.PermanentBlacklistPubkeys = append(cfg.PermanentBlacklistPubkeys, pubkey)
|
2024-08-15 15:00:43 +00:00
|
|
|
|
2024-08-16 13:14:37 +00:00
|
|
|
// Persist changes to config.yml
|
|
|
|
return saveBlacklistConfig(cfg)
|
2024-08-15 15:00:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func saveBlacklistConfig(blacklistConfig cfg.BlacklistConfig) error {
|
2024-08-15 20:20:22 +00:00
|
|
|
configData := config.GetConfig()
|
|
|
|
configData.Blacklist = blacklistConfig
|
2024-08-15 15:00:43 +00:00
|
|
|
|
2024-08-15 20:20:22 +00:00
|
|
|
data, err := yaml.Marshal(configData)
|
2024-08-15 15:00:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to marshal config: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = os.WriteFile("config.yml", data, 0644)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to write config to file: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2024-08-15 20:20:22 +00:00
|
|
|
|