girc-atomic/event.go

316 lines
7.4 KiB
Go
Raw Normal View History

2016-11-13 08:30:43 +00:00
package girc
import (
"bytes"
"strings"
)
const (
prefix byte = 0x3A // prefix or last argument
prefixUser byte = 0x21 // username
prefixHost byte = 0x40 // hostname
space byte = 0x20 // separator
maxLength = 510 // maximum length is 510 (2 for line endings)
)
func cutsetFunc(r rune) bool {
// Characters to trim from prefixes/messages.
return r == '\r' || r == '\n'
}
// Prefix represents the sender of an IRC event, see RFC1459 section 2.3.1
// <servername> | <nick> [ '!' <user> ] [ '@' <host> ]
type Prefix struct {
Name string // Nick or servername
User string // Username
Host string // Hostname
}
// ParsePrefix takes a string and attempts to create a Prefix struct.
func ParsePrefix(raw string) (p *Prefix) {
p = new(Prefix)
2016-11-13 14:23:05 +00:00
user := strings.IndexByte(raw, prefixUser)
host := strings.IndexByte(raw, prefixHost)
2016-11-13 08:30:43 +00:00
switch {
case user > 0 && host > user:
p.Name = raw[:user]
p.User = raw[user+1 : host]
p.Host = raw[host+1:]
case user > 0:
p.Name = raw[:user]
p.User = raw[user+1:]
case host > 0:
p.Name = raw[:host]
p.Host = raw[host+1:]
default:
p.Name = raw
}
return p
}
// Len calculates the length of the string representation of prefix
func (p *Prefix) Len() (length int) {
length = len(p.Name)
if len(p.User) > 0 {
length = 1 + length + len(p.User)
}
if len(p.Host) > 0 {
length = 1 + length + len(p.Host)
}
return
}
// Bytes returns a []byte representation of prefix
func (p *Prefix) Bytes() []byte {
buffer := new(bytes.Buffer)
p.writeTo(buffer)
return buffer.Bytes()
}
// String returns a string representation of prefix
func (p *Prefix) String() (s string) {
s = p.Name
if len(p.User) > 0 {
s = s + string(prefixUser) + p.User
}
if len(p.Host) > 0 {
s = s + string(prefixHost) + p.Host
}
return
}
// IsHostmask returns true if prefix looks like a user hostmask
func (p *Prefix) IsHostmask() bool {
return len(p.User) > 0 && len(p.Host) > 0
}
// IsServer returns true if this prefix looks like a server name.
func (p *Prefix) IsServer() bool {
2016-11-13 14:23:05 +00:00
return len(p.User) <= 0 && len(p.Host) <= 0 // && strings.IndexByte(p.Name, '.') > 0
2016-11-13 08:30:43 +00:00
}
// writeTo is an utility function to write the prefix to the bytes.Buffer in Event.String()
func (p *Prefix) writeTo(buffer *bytes.Buffer) {
buffer.WriteString(p.Name)
if len(p.User) > 0 {
buffer.WriteByte(prefixUser)
buffer.WriteString(p.User)
}
if len(p.Host) > 0 {
buffer.WriteByte(prefixHost)
buffer.WriteString(p.Host)
}
return
}
// Event represents an IRC protocol message, see RFC1459 section 2.3.1
//
// <message> :: [':' <prefix> <SPACE>] <command> <params> <crlf>
// <prefix> :: <servername> | <nick> ['!' <user>] ['@' <host>]
// <command> :: <letter>{<letter>} | <number> <number> <number>
// <SPACE> :: ' '{' '}
// <params> :: <SPACE> [':' <trailing> | <middle> <params>]
// <middle> :: <Any *non-empty* sequence of octets not including SPACE or NUL
// or CR or LF, the first of which may not be ':'>
// <trailing> :: <Any, possibly empty, sequence of octets not including NUL or
// CR or LF>
// <crlf> :: CR LF
type Event struct {
2016-11-13 14:21:54 +00:00
*Prefix // The source of the event
Command string // the IRC command, e.g. JOIN, PRIVMSG, KILL
Params []string // parameters to the command. Commonly nickname, channel, etc
Trailing string // any trailing data. e.g. with a PRIVMSG, this is the message text
EmptyTrailing bool // if true, trailing prefix (:) will be added even if Event.Trailing is empty
Sensitive bool // if the message is sensitive (e.g. and should not be logged)
2016-11-13 08:30:43 +00:00
}
// ParseEvent takes a string and attempts to create a Event struct.
// Returns nil if the Event is invalid.
func ParseEvent(raw string) (e *Event) {
// ignore empty events
if raw = strings.TrimFunc(raw, cutsetFunc); len(raw) < 2 {
return nil
}
i, j := 0, 0
e = new(Event)
if raw[0] == prefix {
// prefix ends with a space
2016-11-13 14:23:05 +00:00
i = strings.IndexByte(raw, space)
2016-11-13 08:30:43 +00:00
// prefix string must not be empty if the indicator is present
if i < 2 {
return nil
}
e.Prefix = ParsePrefix(raw[1:i])
2016-11-13 14:21:54 +00:00
i++ // skip space at the end of the prefix
2016-11-13 08:30:43 +00:00
}
// find end of command
2016-11-13 14:23:05 +00:00
j = i + strings.IndexByte(raw[i:], space)
2016-11-13 08:30:43 +00:00
// extract command
2016-11-13 14:21:54 +00:00
if j < i {
2016-11-13 08:30:43 +00:00
e.Command = strings.ToUpper(raw[i:])
return e
}
2016-11-13 14:21:54 +00:00
e.Command = strings.ToUpper(raw[i:j])
j++ // skip space after command
2016-11-13 08:30:43 +00:00
// find prefix for trailer
2016-11-13 14:23:05 +00:00
i = strings.IndexByte(raw[j:], prefix)
2016-11-13 08:30:43 +00:00
if i < 0 || raw[j+i-1] != space {
// no trailing argument
e.Params = strings.Split(raw[j:], string(space))
return e
}
// compensate for index on substring
i = i + j
// check if we need to parse arguments
if i > j {
e.Params = strings.Split(raw[j:i-1], string(space))
}
e.Trailing = raw[i+1:]
// we need to re-encode the trailing argument even if it was empty
if len(e.Trailing) <= 0 {
e.EmptyTrailing = true
}
return e
}
2016-11-13 14:21:54 +00:00
// Len calculates the length of the string representation of event
2016-11-13 08:30:43 +00:00
func (e *Event) Len() (length int) {
if e.Prefix != nil {
length = e.Prefix.Len() + 2 // include prefix and trailing space
}
length = length + len(e.Command)
if len(e.Params) > 0 {
length = length + len(e.Params)
2016-11-13 14:21:54 +00:00
for i := 0; i < len(e.Params); i++ {
length = length + len(e.Params[i])
2016-11-13 08:30:43 +00:00
}
}
if len(e.Trailing) > 0 || e.EmptyTrailing {
length = length + len(e.Trailing) + 2 // include prefix and space
}
return
}
2016-11-13 14:21:54 +00:00
// Bytes returns a []byte representation of event
2016-11-13 08:30:43 +00:00
//
2016-11-13 14:21:54 +00:00
// per RFC2812 section 2.3, messages should not exceed 512 characters
2016-11-13 08:30:43 +00:00
// in length. this method forces that limit by discarding any characters
// exceeding the length limit.
func (e *Event) Bytes() []byte {
buffer := new(bytes.Buffer)
// event prefix
if e.Prefix != nil {
buffer.WriteByte(prefix)
e.Prefix.writeTo(buffer)
buffer.WriteByte(space)
}
// command is required
buffer.WriteString(e.Command)
// space separated list of arguments
if len(e.Params) > 0 {
buffer.WriteByte(space)
buffer.WriteString(strings.Join(e.Params, string(space)))
}
if len(e.Trailing) > 0 || e.EmptyTrailing {
buffer.WriteByte(space)
buffer.WriteByte(prefix)
buffer.WriteString(e.Trailing)
}
// we need the limit the buffer length
if buffer.Len() > (maxLength) {
buffer.Truncate(maxLength)
}
return buffer.Bytes()
}
// IsAction checks to see if the event is a PRIVMSG, and is an ACTION (/me)
func (e *Event) IsAction() bool {
if len(e.Trailing) == 0 || e.Command != PRIVMSG {
return false
}
if !strings.HasPrefix(e.Trailing, "\001ACTION") || !strings.HasSuffix(e.Trailing, "\001") {
return false
}
return true
}
// StripAction strips the action encoding from a PRIVMSG ACTION (/me)
func (e *Event) StripAction() string {
if !e.IsAction() || len(e.Trailing) < 9 {
return e.Trailing
}
return e.Trailing[8 : len(e.Trailing)-1]
}
2016-11-13 08:30:43 +00:00
// String returns a string representation of this event
func (e *Event) String() string {
return string(e.Bytes())
}
// contains '*', even though this isn't RFC compliant, it's commonly used
var validChannelPrefixes = [...]string{"&", "#", "+", "!", "*"}
// IsValidChannel checks if channel is an RFC complaint channel or not
func IsValidChannel(channel string) bool {
if len(channel) < 1 || len(channel) > 50 {
return false
}
var validprefix bool
for i := 0; i < len(validChannelPrefixes); i++ {
if string(channel[0]) == validChannelPrefixes[i] {
validprefix = true
break
}
}
if !validprefix {
return false
}
if strings.Contains(channel, " ") || strings.Contains(channel, ",") {
return false
}
return true
}