update rules
This commit is contained in:
parent
c37ed1c982
commit
eaf41b55aa
46
sql.go
46
sql.go
@ -781,52 +781,6 @@ func insertMsgPillageInc(m *ChatWarsMessagePillageInc) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadMsgParsingRules() (m map[int]MessageParsingRule, err error) {
|
|
||||||
var (
|
|
||||||
id int32
|
|
||||||
priority int32
|
|
||||||
descn string
|
|
||||||
rule string
|
|
||||||
msgTypeID64 int64
|
|
||||||
)
|
|
||||||
|
|
||||||
log.Println("Loading message parsing rules...")
|
|
||||||
m = make(map[int]MessageParsingRule)
|
|
||||||
count := int(0)
|
|
||||||
|
|
||||||
defer func() {
|
|
||||||
if rec := recover(); rec != nil {
|
|
||||||
log.Println("Error parsing rules : ", rec)
|
|
||||||
err = errors.New("panic")
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
rules, err := db.Query(`SELECT r.id, r.prio, r.descn, r.rule, r.msg_type_id FROM msg_rules r ORDER BY r.prio DESC;`)
|
|
||||||
if err != nil {
|
|
||||||
return m, err
|
|
||||||
}
|
|
||||||
defer rules.Close()
|
|
||||||
|
|
||||||
for rules.Next() {
|
|
||||||
err = rules.Scan(&id, &priority, &descn, &rule, &msgTypeID64)
|
|
||||||
if err != nil {
|
|
||||||
return m, err
|
|
||||||
}
|
|
||||||
i := new(MessageParsingRule)
|
|
||||||
i.ID = id
|
|
||||||
i.Priority = priority
|
|
||||||
i.Description = descn
|
|
||||||
i.Rule = rule
|
|
||||||
i.MsgTypeID64 = msgTypeID64
|
|
||||||
i.re = regexp.MustCompile(rule)
|
|
||||||
m[count] = *i
|
|
||||||
// log.Printf("New rule : %s\n", rule)
|
|
||||||
count++
|
|
||||||
}
|
|
||||||
|
|
||||||
return m, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func getSQLListID64(q string) []int64 {
|
func getSQLListID64(q string) []int64 {
|
||||||
var (
|
var (
|
||||||
id int64
|
id int64
|
||||||
|
Loading…
Reference in New Issue
Block a user