2009-11-29 20:23:15 +00:00
|
|
|
package irc
|
|
|
|
|
|
|
|
// this file contains the various commands you can
|
2009-12-17 17:22:31 +00:00
|
|
|
// send to the server using an Conn connection
|
2009-11-29 20:23:15 +00:00
|
|
|
|
|
|
|
import (
|
2009-12-17 21:30:18 +00:00
|
|
|
"reflect"
|
2009-11-29 20:23:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This could be a lot less ugly with the ability to manipulate
|
|
|
|
// the symbol table and add methods/functions on the fly
|
2009-12-17 21:30:18 +00:00
|
|
|
// [ CMD, FMT, FMTARGS ] etc.
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Raw() sends a raw line to the server, should really only be used for
|
|
|
|
// debugging purposes but may well come in handy.
|
|
|
|
func (conn *Conn) Raw(rawline string) { conn.out <- rawline }
|
2009-12-17 17:22:31 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Pass() sends a PASS command to the server
|
|
|
|
func (conn *Conn) Pass(password string) { conn.out <- "PASS "+password }
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Nick() sends a NICK command to the server
|
|
|
|
func (conn *Conn) Nick(nick string) { conn.out <- "NICK "+nick }
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// User() sends a USER command to the server
|
|
|
|
func (conn *Conn) User(ident, name string) {
|
|
|
|
conn.out <- "USER "+ident+" 12 * :"+name
|
|
|
|
}
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Join() sends a JOIN command to the server
|
|
|
|
func (conn *Conn) Join(channel string) { conn.out <- "JOIN "+channel }
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Part() sends a PART command to the server with an optional part message
|
|
|
|
func (conn *Conn) Part(channel string, message ...) {
|
|
|
|
msg := getStringMsg(message)
|
2009-11-29 20:23:15 +00:00
|
|
|
if msg != "" {
|
|
|
|
msg = " :" + msg
|
|
|
|
}
|
2009-12-18 22:39:22 +00:00
|
|
|
conn.out <- "PART "+channel+msg
|
2009-11-29 20:23:15 +00:00
|
|
|
}
|
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Quit() sends a QUIT command to the server with an optional quit message
|
|
|
|
func (conn *Conn) Quit(message ...) {
|
|
|
|
msg := getStringMsg(message)
|
2009-11-29 20:23:15 +00:00
|
|
|
if msg == "" {
|
|
|
|
msg = "GoBye!"
|
|
|
|
}
|
2009-12-17 21:30:18 +00:00
|
|
|
conn.out <- "QUIT :"+msg
|
2009-12-17 17:22:31 +00:00
|
|
|
}
|
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Whois() sends a WHOIS command to the server
|
|
|
|
func (conn *Conn) Whois(nick string) { conn.out <- "WHOIS "+nick }
|
2009-12-17 17:22:31 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
//Who() sends a WHO command to the server
|
|
|
|
func (conn *Conn) Who(nick string) { conn.out <- "WHO "+nick }
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Privmsg() sends a PRIVMSG to the target t
|
2009-12-17 21:30:18 +00:00
|
|
|
func (conn *Conn) Privmsg(t, msg string) { conn.out <- "PRIVMSG "+t+" :"+msg }
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Notice() sends a NOTICE to the target t
|
2009-12-17 21:30:18 +00:00
|
|
|
func (conn *Conn) Notice(t, msg string) { conn.out <- "NOTICE "+t+" :"+msg }
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Ctcp() sends a (generic) CTCP message to the target t
|
|
|
|
// with an optional argument
|
|
|
|
func (conn *Conn) Ctcp(t, ctcp string, arg ...) {
|
|
|
|
msg := getStringMsg(arg)
|
2009-11-29 20:23:15 +00:00
|
|
|
if msg != "" {
|
|
|
|
msg = " " + msg
|
|
|
|
}
|
2009-12-17 21:30:18 +00:00
|
|
|
conn.Privmsg(t, "\001"+ctcp+msg+"\001")
|
2009-11-29 20:23:15 +00:00
|
|
|
}
|
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// CtcpReply() sends a generic CTCP reply to the target t
|
|
|
|
// with an optional argument
|
|
|
|
func (conn *Conn) CtcpReply(t, ctcp string, arg ...) {
|
|
|
|
msg := getStringMsg(arg)
|
2009-11-29 20:23:15 +00:00
|
|
|
if msg != "" {
|
|
|
|
msg = " " + msg
|
|
|
|
}
|
2009-12-17 21:30:18 +00:00
|
|
|
conn.Notice(t, "\001"+ctcp+msg+"\001")
|
2009-11-29 20:23:15 +00:00
|
|
|
}
|
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Version() sends a CTCP "VERSION" to the target t
|
2009-12-17 21:30:18 +00:00
|
|
|
func (conn *Conn) Version(t string) { conn.Ctcp(t, "VERSION") }
|
2009-11-29 20:23:15 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Action() sends a CTCP "ACTION" to the target t
|
2009-12-17 21:30:18 +00:00
|
|
|
func (conn *Conn) Action(t, msg string) { conn.Ctcp(t, "ACTION", msg) }
|
2009-12-17 17:22:31 +00:00
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// Topic() sends a TOPIC command to the channel
|
|
|
|
// Topic(channel) retrieves the current channel topic (see "332" handler)
|
|
|
|
// Topic(channel, topic) sets the topic for the channel
|
|
|
|
func (conn *Conn) Topic(channel string, topic ...) {
|
|
|
|
t := getStringMsg(topic)
|
|
|
|
if t != "" {
|
|
|
|
t = " :" + t
|
2009-12-17 17:22:31 +00:00
|
|
|
}
|
2009-12-18 22:39:22 +00:00
|
|
|
conn.out <- "TOPIC "+channel+t
|
2009-12-17 17:22:31 +00:00
|
|
|
}
|
|
|
|
|
2009-12-18 22:39:22 +00:00
|
|
|
// send a MODE command to the server. This one can get complicated if we try
|
|
|
|
// to be too clever, so it's deliberately simple:
|
|
|
|
// Mode(t) retrieves the user or channel modes for target t
|
|
|
|
// Mode(t, "modestring") sets user or channel modes for target t, where...
|
|
|
|
// modestring == e.g. "+o <nick>" or "+ntk <key>" or "-is"
|
|
|
|
// This means you'll need to do your own mode work. It may be linked in with
|
|
|
|
// the state tracking and ChanMode/NickMode/ChanPrivs objects later...
|
|
|
|
func (conn *Conn) Mode(t string, modestring ...) {
|
|
|
|
mode := getStringMsg(modestring)
|
2009-12-17 17:22:31 +00:00
|
|
|
if mode != "" {
|
|
|
|
mode = " " + mode
|
|
|
|
}
|
2009-12-17 21:30:18 +00:00
|
|
|
conn.out <- "MODE "+t+mode
|
2009-11-29 20:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getStringMsg(a ...) (msg string) {
|
|
|
|
// dealing with functions with a variable parameter list is nasteeh :-(
|
2009-12-17 17:22:31 +00:00
|
|
|
// the below stolen and munged from fmt/print.go func getString()
|
|
|
|
if v := reflect.NewValue(a).(*reflect.StructValue); v.NumField() > 0 {
|
|
|
|
if s, ok := v.Field(0).(*reflect.StringValue); ok {
|
2009-12-17 21:30:18 +00:00
|
|
|
return s.Get()
|
2009-12-17 17:22:31 +00:00
|
|
|
}
|
|
|
|
if b, ok := v.Interface().([]byte); ok {
|
|
|
|
return string(b)
|
|
|
|
}
|
2009-11-29 20:23:15 +00:00
|
|
|
}
|
2009-12-17 17:22:31 +00:00
|
|
|
return ""
|
2009-11-29 20:23:15 +00:00
|
|
|
}
|