Archived
1
0

fix feed policy logic

This commit is contained in:
Jeff Becker 2017-04-23 07:53:56 -04:00
parent 8d4778c2d7
commit 9e291b1c5a

View File

@ -4,8 +4,8 @@
package srnd
import (
"log"
"regexp"
"strings"
)
type FeedPolicy struct {
@ -15,18 +15,22 @@ type FeedPolicy struct {
// do we allow this newsgroup?
func (self *FeedPolicy) AllowsNewsgroup(newsgroup string) (result bool) {
var k, v string
var allows, disallows int
for k, v = range self.rules {
v = strings.Trim(v, " ")
match, err := regexp.MatchString(k, newsgroup)
if err != nil {
log.Fatal(err)
}
if err == nil {
if match {
if v == "0" {
return false
} else if v == "1" {
result = true
if v == "1" {
allows++
} else if v == "0" {
disallows++
}
}
}
return result
}
result = allows > 0 && disallows == 0
return
}