ergo/src/irc/channel.go

224 lines
4.2 KiB
Go
Raw Normal View History

package irc
import (
"log"
)
const (
DEBUG_CHANNEL = true
)
type Channel struct {
id *RowId
server *Server
commands chan<- ChannelCommand
replies chan<- Reply
name string
key string
topic string
members UserSet
noOutside bool
password string
}
type ChannelSet map[*Channel]bool
func (set ChannelSet) Add(channel *Channel) {
set[channel] = true
}
func (set ChannelSet) Remove(channel *Channel) {
delete(set, channel)
}
func (set ChannelSet) Ids() (ids []RowId) {
2013-06-03 07:07:50 +02:00
ids = make([]RowId, len(set))
var i = 0
for channel := range set {
2013-06-03 07:07:50 +02:00
ids[i] = *(channel.id)
i++
}
return ids
}
type ChannelCommand interface {
Command
HandleChannel(channel *Channel)
}
2012-12-09 21:51:50 +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,
members: make(UserSet),
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)
Save(s.db, channel)
return channel
}
func (channel *Channel) Save(q Queryable) bool {
if channel.id == nil {
if err := InsertChannel(q, channel); err != nil {
2013-06-03 07:07:50 +02:00
log.Println(err)
return false
}
channelId, err := FindChannelIdByName(q, channel.name)
if err != nil {
2013-06-03 07:07:50 +02:00
log.Println(err)
return false
}
channel.id = &channelId
} else {
if err := UpdateChannel(q, channel); err != nil {
2013-06-03 07:07:50 +02:00
log.Println(err)
return false
}
}
return true
}
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)
}
2013-05-12 20:20:55 +02:00
for user := range channel.members {
if user != reply.Source() {
2013-05-26 22:28:22 +02:00
user.Replies() <- reply
}
}
}
}
2013-05-12 20:20:55 +02:00
func (channel *Channel) Nicks() []string {
return channel.members.Nicks()
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)
}
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) PublicId() string {
return channel.name
}
func (channel *Channel) Commands() chan<- ChannelCommand {
2013-05-09 20:05:10 +02:00
return channel.commands
}
func (channel *Channel) String() string {
return channel.Id()
}
2013-06-03 07:07:50 +02:00
func (channel *Channel) Join(user *User) {
channel.members.Add(user)
user.channels.Add(channel)
channel.Replies() <- RplJoin(channel, user)
channel.GetTopic(user)
channel.GetUsers(user)
}
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] {
2013-06-03 07:07:50 +02:00
client.Replies() <- ErrBadChannelKey(channel)
return
}
2013-06-03 07:07:50 +02:00
channel.Join(client.user)
}
func (m *PartCommand) HandleChannel(channel *Channel) {
user := m.Client().user
if !channel.members[user] {
2013-06-03 07:07:50 +02:00
user.Replies() <- ErrNotOnChannel(channel)
return
}
msg := m.message
if msg == "" {
msg = user.Nick()
2012-12-09 19:15:01 +01:00
}
2013-05-26 22:28:22 +02:00
channel.Replies() <- RplPart(channel, user, msg)
2012-12-09 19:15:01 +01:00
channel.members.Remove(user)
user.channels.Remove(channel)
2012-12-13 08:27:17 +01:00
2013-05-12 20:20:55 +02:00
if channel.IsEmpty() {
channel.server.DeleteChannel(channel)
2012-12-13 08:27:17 +01:00
}
}
func (m *TopicCommand) HandleChannel(channel *Channel) {
user := m.User()
if !channel.members[user] {
2013-05-26 22:28:22 +02:00
user.Replies() <- ErrNotOnChannel(channel)
return
}
if m.topic == "" {
channel.GetTopic(user)
return
}
channel.topic = m.topic
if channel.topic == "" {
2013-05-26 22:28:22 +02:00
channel.Replies() <- RplNoTopic(channel)
return
}
2013-05-26 22:28:22 +02:00
channel.Replies() <- RplTopic(channel)
}
func (m *PrivMsgCommand) HandleChannel(channel *Channel) {
channel.Replies() <- RplPrivMsgChannel(channel, m.User(), m.message)
}