ergo/irc/channel.go

180 lines
3.5 KiB
Go
Raw Normal View History

package irc
import (
"log"
)
type Channel struct {
commands chan<- ChannelCommand
key string
2014-02-05 04:28:24 +01:00
members ClientSet
name string
noOutside bool
password string
2014-02-05 04:28:24 +01:00
replies chan<- Reply
server *Server
topic string
}
type ChannelSet map[*Channel]bool
type ChannelCommand interface {
Command
HandleChannel(channel *Channel)
}
2014-02-05 04:28:24 +01:00
// NewChannel creates a new channel from a `Server` and a `name`
// string, which must be unique on the server.
func NewChannel(s *Server, name string) *Channel {
2013-06-03 01:53:06 +02:00
commands := make(chan ChannelCommand)
replies := make(chan Reply)
channel := &Channel{
name: name,
2014-02-05 04:28:24 +01:00
members: make(ClientSet),
server: s,
commands: commands,
replies: replies,
2012-12-09 21:51:50 +01:00
}
go channel.receiveCommands(commands)
2013-05-26 22:28:22 +02:00
go channel.receiveReplies(replies)
return channel
}
2013-05-26 22:28:22 +02:00
func (channel *Channel) receiveCommands(commands <-chan ChannelCommand) {
for command := range commands {
if DEBUG_CHANNEL {
log.Printf("%s → %s : %s", command.Source(), channel, command)
}
command.HandleChannel(channel)
}
}
2013-05-12 20:20:55 +02:00
func (channel *Channel) receiveReplies(replies <-chan Reply) {
for reply := range replies {
if DEBUG_CHANNEL {
2013-05-26 22:28:22 +02:00
log.Printf("%s ← %s : %s", channel, reply.Source(), reply)
}
2014-02-05 04:28:24 +01:00
for client := range channel.members {
var dest Identifier = client
if reply.Source() != dest {
client.replies <- reply
}
}
}
}
2012-12-09 21:51:50 +01:00
2013-05-12 20:20:55 +02:00
func (channel *Channel) IsEmpty() bool {
return len(channel.members) == 0
2012-12-10 06:46:22 +01:00
}
func (channel *Channel) GetTopic(replier Replier) {
if channel.topic == "" {
replier.Replies() <- RplNoTopic(channel)
return
}
replier.Replies() <- RplTopic(channel)
}
2013-06-03 07:07:50 +02:00
func (channel *Channel) GetUsers(replier Replier) {
replier.Replies() <- NewNamesReply(channel)
}
2014-02-05 04:28:24 +01:00
func (channel *Channel) Nicks() []string {
nicks := make([]string, len(channel.members))
i := 0
for client := range channel.members {
nicks[i] = client.Nick()
i += 1
}
return nicks
}
2013-05-26 22:28:22 +02:00
func (channel *Channel) Replies() chan<- Reply {
return channel.replies
}
func (channel *Channel) Id() string {
return channel.name
}
2013-06-03 07:07:50 +02:00
func (channel *Channel) Nick() string {
return channel.name
}
func (channel *Channel) String() string {
return channel.Id()
}
2014-02-05 04:28:24 +01:00
func (channel *Channel) Join(client *Client) {
channel.members[client] = true
client.channels[channel] = true
reply := RplJoin(channel, client)
channel.replies <- reply
channel.GetTopic(client)
channel.GetUsers(client)
}
func (channel *Channel) HasMember(client *Client) bool {
return channel.members[client]
2013-06-03 07:07:50 +02:00
}
2012-12-09 21:51:50 +01:00
//
// commands
2012-12-09 21:51:50 +01:00
//
func (m *JoinCommand) HandleChannel(channel *Channel) {
client := m.Client()
if channel.key != m.channels[channel.name] {
2014-02-05 04:28:24 +01:00
client.replies <- ErrBadChannelKey(channel)
return
}
2014-02-05 04:28:24 +01:00
channel.Join(client)
}
func (m *PartCommand) HandleChannel(channel *Channel) {
2014-02-05 04:28:24 +01:00
c := m.Client()
2014-02-05 04:28:24 +01:00
if !channel.HasMember(c) {
c.replies <- ErrNotOnChannel(channel)
return
}
msg := m.message
if msg == "" {
2014-02-05 04:28:24 +01:00
msg = c.Nick()
2012-12-09 19:15:01 +01:00
}
2014-02-05 04:28:24 +01:00
channel.replies <- RplPart(channel, c, msg)
2012-12-09 19:15:01 +01:00
2014-02-05 04:28:24 +01:00
delete(channel.members, c)
delete(c.channels, channel)
2012-12-13 08:27:17 +01:00
2014-02-05 04:28:24 +01:00
if channel.IsEmpty() { // TODO persistent channels
channel.server.DeleteChannel(channel)
2012-12-13 08:27:17 +01:00
}
}
func (m *TopicCommand) HandleChannel(channel *Channel) {
2014-02-05 04:28:24 +01:00
client := m.Client()
2014-02-05 04:28:24 +01:00
if !channel.HasMember(client) {
client.replies <- ErrNotOnChannel(channel)
return
}
if m.topic == "" {
2014-02-05 04:28:24 +01:00
channel.GetTopic(client)
return
}
channel.topic = m.topic
2014-02-05 04:28:24 +01:00
channel.GetTopic(channel)
}
func (m *PrivMsgCommand) HandleChannel(channel *Channel) {
channel.replies <- RplPrivMsg(m.Client(), channel, m.message)
}