service_matcher-go/pop/pop.go

74 lines
1.1 KiB
Go
Raw Normal View History

2018-08-13 07:48:32 +00:00
package pop
import (
2018-08-15 07:17:18 +00:00
osm "git.loafle.net/overflow/service_matcher-go"
2018-08-13 07:48:32 +00:00
)
const (
COMPARE_STR = "+OK"
)
type POPMatcher struct {
2018-08-15 07:17:18 +00:00
osm.Matchers
2018-08-13 07:48:32 +00:00
}
func (p *POPMatcher) Key() string {
return "POP3"
}
2018-09-03 06:42:56 +00:00
func (p *POPMatcher) Name() string {
2018-08-13 07:48:32 +00:00
return "POP3"
}
2018-09-03 06:42:56 +00:00
func (p *POPMatcher) Meta() osm.Metadata {
return nil
}
2018-08-13 07:48:32 +00:00
func (p *POPMatcher) IsPrePacket() bool {
return true
}
func (p *POPMatcher) HasResponse(index int) bool {
return true
}
2018-08-15 07:17:18 +00:00
func (p *POPMatcher) IsError(info osm.MatchInfo, index int, packet *osm.Packet) bool {
2018-08-13 07:48:32 +00:00
return false
}
2018-09-03 06:42:56 +00:00
func (p *POPMatcher) Match(info osm.MatchInfo, index int, packet *osm.Packet) error {
2018-08-13 07:48:32 +00:00
switch index {
case 0:
fallthrough
case 1:
2018-09-03 06:42:56 +00:00
recvStr := string(packet.Bytes())
2018-08-13 07:48:32 +00:00
if len(recvStr) < 3 {
2018-09-03 06:42:56 +00:00
return osm.NotMatchedError()
2018-08-13 07:48:32 +00:00
}
compareStr := recvStr[0:3]
if compareStr == COMPARE_STR {
2018-09-03 06:42:56 +00:00
return nil
2018-08-13 07:48:32 +00:00
}
}
2018-09-03 06:42:56 +00:00
return osm.NotMatchedError()
2018-08-13 07:48:32 +00:00
}
2018-08-15 07:17:18 +00:00
func NewMatcher() osm.Matcher {
2018-08-13 07:48:32 +00:00
m := &POPMatcher{}
reqStr := "QUIT\r\n"
byte := make([]byte, len(reqStr))
copy(byte[:], reqStr)
2018-08-15 07:17:18 +00:00
m.AddPacket(osm.NewPacket(byte, len(reqStr)))
2018-08-13 07:48:32 +00:00
return m
}