aboutsummaryrefslogtreecommitdiff
path: root/db/blacklist.go
diff options
context:
space:
mode:
authorFChannel <>2022-04-30 11:00:55 -0700
committerFChannel <>2022-06-19 12:53:29 -0700
commit1892327cee2c3fa1d3bea729bd08eb63c2189a96 (patch)
tree7b846f7d9caf46fba6c9d15ff81b9d89dcca9476 /db/blacklist.go
parent5b52d269faa2ce2014d0feba603a2122361cf4eb (diff)
restructured code base to prevent circular dependicies
Diffstat (limited to 'db/blacklist.go')
-rw-r--r--db/blacklist.go76
1 files changed, 0 insertions, 76 deletions
diff --git a/db/blacklist.go b/db/blacklist.go
deleted file mode 100644
index 4d88e10..0000000
--- a/db/blacklist.go
+++ /dev/null
@@ -1,76 +0,0 @@
-package db
-
-import "regexp"
-
-type PostBlacklist struct {
- Id int
- Regex string
-}
-
-func WriteRegexBlacklistDB(regex string) error {
- query := `select from postblacklist where regex=$1`
-
- rows, err := db.Query(query, regex)
- if err != nil {
- return err
- }
- defer rows.Close()
-
- var re string
- rows.Next()
- rows.Scan(&re)
-
- if re != "" {
- return nil
- }
-
- query = `insert into postblacklist (regex) values ($1)`
-
- _, err = db.Exec(query, regex)
- return err
-}
-
-func GetRegexBlacklistDB() ([]PostBlacklist, error) {
- var list []PostBlacklist
-
- query := `select id, regex from postblacklist`
-
- rows, err := db.Query(query)
- if err != nil {
- return list, err
- }
-
- defer rows.Close()
- for rows.Next() {
- var temp PostBlacklist
- rows.Scan(&temp.Id, &temp.Regex)
-
- list = append(list, temp)
- }
-
- return list, nil
-}
-
-func DeleteRegexBlacklistDB(id int) error {
- query := `delete from postblacklist where id=$1`
-
- _, err := db.Exec(query, id)
- return err
-}
-
-func IsPostBlacklist(comment string) (bool, error) {
- postblacklist, err := GetRegexBlacklistDB()
- if err != nil {
- return false, err
- }
-
- for _, e := range postblacklist {
- re := regexp.MustCompile(e.Regex)
-
- if re.MatchString(comment) {
- return true, nil
- }
- }
-
- return false, nil
-}