3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00
ergo/irc/channel.go

221 lines
4.3 KiB
Go
Raw Normal View History

package irc
import (
"log"
)
type Channel struct {
banList []UserMask
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
2014-02-09 03:49:52 +01:00
func (channels ChannelSet) First() *Channel {
for channel := range channels {
return channel
}
return nil
}
type ChannelCommand interface {
Command
HandleChannel(channel *Channel)
}
2014-02-09 03:14:39 +01:00
func IsChannel(target string) bool {
if target == "" {
return false
}
switch target[0] {
case '&', '#', '+', '!':
return true
}
return false
}
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{
banList: make([]UserMask, 0),
commands: commands,
members: make(ClientSet),
name: name,
replies: replies,
server: s,
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-09 03:14:39 +01:00
// <mode> <mode params>
func (channel *Channel) ModeString() string {
return ""
}
2014-02-05 04:28:24 +01:00
func (channel *Channel) Join(client *Client) {
channel.members[client] = true
client.channels[channel] = true
2014-02-09 02:53:06 +01:00
reply := RplJoin(client, channel)
client.replies <- reply
2014-02-05 04:28:24 +01:00
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-09 02:53:06 +01:00
client := m.Client()
2014-02-09 02:53:06 +01:00
if !channel.HasMember(client) {
client.replies <- ErrNotOnChannel(channel)
return
}
2014-02-09 02:53:06 +01:00
reply := RplPart(client, channel, m.Message())
client.replies <- reply
channel.replies <- reply
2012-12-09 19:15:01 +01:00
2014-02-09 02:53:06 +01:00
delete(channel.members, client)
delete(client.channels, channel)
2012-12-13 08:27:17 +01:00
2014-02-09 02:53:06 +01:00
// TODO persistent channels
if channel.IsEmpty() {
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)
}
func (msg *ChannelModeCommand) HandleChannel(channel *Channel) {
client := msg.Client()
for _, modeOp := range msg.modeOps {
switch modeOp.mode {
case BanMask:
// TODO add/remove
for _, banMask := range channel.banList {
client.replies <- RplBanList(channel, banMask)
}
client.replies <- RplEndOfBanList(channel)
}
}
client.replies <- RplChannelModeIs(channel)
}