2017-03-27 14:15:02 +02:00
|
|
|
// Copyright (c) 2016-2017 Daniel Oaks <daniel@danieloaks.net>
|
2017-03-11 13:01:40 +01:00
|
|
|
// released under the MIT license
|
|
|
|
|
|
|
|
package irc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strconv"
|
2018-04-04 03:49:40 +02:00
|
|
|
"strings"
|
2017-03-11 13:01:40 +01:00
|
|
|
"time"
|
|
|
|
|
2017-03-26 12:37:13 +02:00
|
|
|
"encoding/json"
|
|
|
|
|
2018-04-04 03:49:40 +02:00
|
|
|
"github.com/oragono/oragono/irc/modes"
|
2017-03-11 13:01:40 +01:00
|
|
|
"github.com/tidwall/buntdb"
|
|
|
|
)
|
|
|
|
|
2017-11-09 04:19:50 +01:00
|
|
|
// this is exclusively the *persistence* layer for channel registration;
|
|
|
|
// channel creation/tracking/destruction is in channelmanager.go
|
|
|
|
|
2017-03-11 13:01:40 +01:00
|
|
|
const (
|
2018-04-04 03:49:40 +02:00
|
|
|
keyChannelExists = "channel.exists %s"
|
|
|
|
keyChannelName = "channel.name %s" // stores the 'preferred name' of the channel, not casemapped
|
|
|
|
keyChannelRegTime = "channel.registered.time %s"
|
|
|
|
keyChannelFounder = "channel.founder %s"
|
|
|
|
keyChannelTopic = "channel.topic %s"
|
|
|
|
keyChannelTopicSetBy = "channel.topic.setby %s"
|
|
|
|
keyChannelTopicSetTime = "channel.topic.settime %s"
|
|
|
|
keyChannelBanlist = "channel.banlist %s"
|
|
|
|
keyChannelExceptlist = "channel.exceptlist %s"
|
|
|
|
keyChannelInvitelist = "channel.invitelist %s"
|
|
|
|
keyChannelPassword = "channel.key %s"
|
|
|
|
keyChannelModes = "channel.modes %s"
|
|
|
|
keyChannelAccountToUMode = "channel.accounttoumode %s"
|
2017-03-11 13:01:40 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2017-11-09 04:19:50 +01:00
|
|
|
channelKeyStrings = []string{
|
|
|
|
keyChannelExists,
|
|
|
|
keyChannelName,
|
|
|
|
keyChannelRegTime,
|
|
|
|
keyChannelFounder,
|
|
|
|
keyChannelTopic,
|
|
|
|
keyChannelTopicSetBy,
|
|
|
|
keyChannelTopicSetTime,
|
|
|
|
keyChannelBanlist,
|
|
|
|
keyChannelExceptlist,
|
|
|
|
keyChannelInvitelist,
|
2018-04-04 03:49:40 +02:00
|
|
|
keyChannelPassword,
|
|
|
|
keyChannelModes,
|
|
|
|
keyChannelAccountToUMode,
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
2017-03-11 13:01:40 +01:00
|
|
|
)
|
|
|
|
|
2018-04-04 03:49:40 +02:00
|
|
|
// these are bit flags indicating what part of the channel status is "dirty"
|
|
|
|
// and needs to be read from memory and written to the db
|
|
|
|
const (
|
|
|
|
IncludeInitial uint = 1 << iota
|
|
|
|
IncludeTopic
|
|
|
|
IncludeModes
|
|
|
|
IncludeLists
|
|
|
|
)
|
|
|
|
|
|
|
|
// this is an OR of all possible flags
|
|
|
|
const (
|
|
|
|
IncludeAllChannelAttrs = ^uint(0)
|
|
|
|
)
|
|
|
|
|
2017-03-11 13:01:40 +01:00
|
|
|
// RegisteredChannel holds details about a given registered channel.
|
|
|
|
type RegisteredChannel struct {
|
|
|
|
// Name of the channel.
|
|
|
|
Name string
|
2019-03-12 00:24:45 +01:00
|
|
|
// Casefolded name of the channel.
|
|
|
|
NameCasefolded string
|
2017-03-11 13:01:40 +01:00
|
|
|
// RegisteredAt represents the time that the channel was registered.
|
|
|
|
RegisteredAt time.Time
|
|
|
|
// Founder indicates the founder of the channel.
|
|
|
|
Founder string
|
|
|
|
// Topic represents the channel topic.
|
|
|
|
Topic string
|
|
|
|
// TopicSetBy represents the host that set the topic.
|
|
|
|
TopicSetBy string
|
|
|
|
// TopicSetTime represents the time the topic was set.
|
|
|
|
TopicSetTime time.Time
|
2018-04-04 03:49:40 +02:00
|
|
|
// Modes represents the channel modes
|
|
|
|
Modes []modes.Mode
|
|
|
|
// Key represents the channel key / password
|
|
|
|
Key string
|
|
|
|
// AccountToUMode maps user accounts to their persistent channel modes (e.g., +q, +h)
|
|
|
|
AccountToUMode map[string]modes.Mode
|
2019-10-10 10:17:44 +02:00
|
|
|
// Bans represents the bans set on the channel.
|
|
|
|
Bans map[string]MaskInfo
|
|
|
|
// Excepts represents the exceptions set on the channel.
|
|
|
|
Excepts map[string]MaskInfo
|
|
|
|
// Invites represents the invite exceptions set on the channel.
|
|
|
|
Invites map[string]MaskInfo
|
2017-03-11 13:01:40 +01:00
|
|
|
}
|
|
|
|
|
2018-02-03 12:15:07 +01:00
|
|
|
// ChannelRegistry manages registered channels.
|
2017-11-09 04:19:50 +01:00
|
|
|
type ChannelRegistry struct {
|
2019-03-12 00:24:45 +01:00
|
|
|
server *Server
|
2017-06-05 04:01:37 +02:00
|
|
|
}
|
|
|
|
|
2018-02-03 12:15:07 +01:00
|
|
|
// NewChannelRegistry returns a new ChannelRegistry.
|
2019-03-12 00:24:45 +01:00
|
|
|
func (reg *ChannelRegistry) Initialize(server *Server) {
|
|
|
|
reg.server = server
|
|
|
|
}
|
|
|
|
|
|
|
|
func (reg *ChannelRegistry) AllChannels() (result map[string]bool) {
|
|
|
|
result = make(map[string]bool)
|
|
|
|
|
|
|
|
prefix := fmt.Sprintf(keyChannelExists, "")
|
|
|
|
reg.server.store.View(func(tx *buntdb.Tx) error {
|
|
|
|
return tx.AscendGreaterOrEqual("", prefix, func(key, value string) bool {
|
|
|
|
if !strings.HasPrefix(key, prefix) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
channel := strings.TrimPrefix(key, prefix)
|
|
|
|
result[channel] = true
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// StoreChannel obtains a consistent view of a channel, then persists it to the store.
|
2019-03-12 00:24:45 +01:00
|
|
|
func (reg *ChannelRegistry) StoreChannel(info RegisteredChannel, includeFlags uint) (err error) {
|
2017-11-09 04:19:50 +01:00
|
|
|
if !reg.server.ChannelRegistrationEnabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.Founder == "" {
|
|
|
|
// sanity check, don't try to store an unregistered channel
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
reg.server.store.Update(func(tx *buntdb.Tx) error {
|
2019-03-12 00:24:45 +01:00
|
|
|
reg.saveChannel(tx, info, includeFlags)
|
2017-11-09 04:19:50 +01:00
|
|
|
return nil
|
|
|
|
})
|
2019-03-12 00:24:45 +01:00
|
|
|
|
|
|
|
return nil
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// LoadChannel loads a channel from the store.
|
2019-03-12 00:24:45 +01:00
|
|
|
func (reg *ChannelRegistry) LoadChannel(nameCasefolded string) (info RegisteredChannel, err error) {
|
2017-11-09 04:19:50 +01:00
|
|
|
if !reg.server.ChannelRegistrationEnabled() {
|
2019-03-12 00:24:45 +01:00
|
|
|
err = errFeatureDisabled
|
|
|
|
return
|
2017-03-11 13:01:40 +01:00
|
|
|
}
|
|
|
|
|
2017-11-09 04:19:50 +01:00
|
|
|
channelKey := nameCasefolded
|
|
|
|
// nice to have: do all JSON (de)serialization outside of the buntdb transaction
|
2019-03-12 00:24:45 +01:00
|
|
|
err = reg.server.store.View(func(tx *buntdb.Tx) error {
|
|
|
|
_, dberr := tx.Get(fmt.Sprintf(keyChannelExists, channelKey))
|
|
|
|
if dberr == buntdb.ErrNotFound {
|
2017-11-09 04:19:50 +01:00
|
|
|
// chan does not already exist, return
|
2019-03-12 00:24:45 +01:00
|
|
|
return errNoSuchChannel
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// channel exists, load it
|
|
|
|
name, _ := tx.Get(fmt.Sprintf(keyChannelName, channelKey))
|
|
|
|
regTime, _ := tx.Get(fmt.Sprintf(keyChannelRegTime, channelKey))
|
|
|
|
regTimeInt, _ := strconv.ParseInt(regTime, 10, 64)
|
|
|
|
founder, _ := tx.Get(fmt.Sprintf(keyChannelFounder, channelKey))
|
|
|
|
topic, _ := tx.Get(fmt.Sprintf(keyChannelTopic, channelKey))
|
|
|
|
topicSetBy, _ := tx.Get(fmt.Sprintf(keyChannelTopicSetBy, channelKey))
|
|
|
|
topicSetTime, _ := tx.Get(fmt.Sprintf(keyChannelTopicSetTime, channelKey))
|
|
|
|
topicSetTimeInt, _ := strconv.ParseInt(topicSetTime, 10, 64)
|
2018-04-04 03:49:40 +02:00
|
|
|
password, _ := tx.Get(fmt.Sprintf(keyChannelPassword, channelKey))
|
|
|
|
modeString, _ := tx.Get(fmt.Sprintf(keyChannelModes, channelKey))
|
2017-11-09 04:19:50 +01:00
|
|
|
banlistString, _ := tx.Get(fmt.Sprintf(keyChannelBanlist, channelKey))
|
|
|
|
exceptlistString, _ := tx.Get(fmt.Sprintf(keyChannelExceptlist, channelKey))
|
|
|
|
invitelistString, _ := tx.Get(fmt.Sprintf(keyChannelInvitelist, channelKey))
|
2018-04-04 03:49:40 +02:00
|
|
|
accountToUModeString, _ := tx.Get(fmt.Sprintf(keyChannelAccountToUMode, channelKey))
|
|
|
|
|
|
|
|
modeSlice := make([]modes.Mode, len(modeString))
|
|
|
|
for i, mode := range modeString {
|
|
|
|
modeSlice[i] = modes.Mode(mode)
|
|
|
|
}
|
2017-11-09 04:19:50 +01:00
|
|
|
|
2019-10-10 10:17:44 +02:00
|
|
|
var banlist map[string]MaskInfo
|
2017-11-09 04:19:50 +01:00
|
|
|
_ = json.Unmarshal([]byte(banlistString), &banlist)
|
2019-10-10 10:17:44 +02:00
|
|
|
var exceptlist map[string]MaskInfo
|
2017-11-09 04:19:50 +01:00
|
|
|
_ = json.Unmarshal([]byte(exceptlistString), &exceptlist)
|
2019-10-10 10:17:44 +02:00
|
|
|
var invitelist map[string]MaskInfo
|
2017-11-09 04:19:50 +01:00
|
|
|
_ = json.Unmarshal([]byte(invitelistString), &invitelist)
|
2018-04-04 03:49:40 +02:00
|
|
|
accountToUMode := make(map[string]modes.Mode)
|
|
|
|
_ = json.Unmarshal([]byte(accountToUModeString), &accountToUMode)
|
2017-11-09 04:19:50 +01:00
|
|
|
|
2019-03-12 00:24:45 +01:00
|
|
|
info = RegisteredChannel{
|
2018-04-04 03:49:40 +02:00
|
|
|
Name: name,
|
|
|
|
RegisteredAt: time.Unix(regTimeInt, 0),
|
|
|
|
Founder: founder,
|
|
|
|
Topic: topic,
|
|
|
|
TopicSetBy: topicSetBy,
|
|
|
|
TopicSetTime: time.Unix(topicSetTimeInt, 0),
|
|
|
|
Key: password,
|
|
|
|
Modes: modeSlice,
|
2019-10-10 10:17:44 +02:00
|
|
|
Bans: banlist,
|
|
|
|
Excepts: exceptlist,
|
|
|
|
Invites: invitelist,
|
2018-04-04 03:49:40 +02:00
|
|
|
AccountToUMode: accountToUMode,
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
2019-03-12 00:24:45 +01:00
|
|
|
return
|
2018-06-04 11:02:22 +02:00
|
|
|
}
|
|
|
|
|
2019-03-12 00:24:45 +01:00
|
|
|
// Delete deletes a channel corresponding to `info`. If no such channel
|
|
|
|
// is present in the database, no error is returned.
|
|
|
|
func (reg *ChannelRegistry) Delete(info RegisteredChannel) (err error) {
|
2017-11-09 04:19:50 +01:00
|
|
|
if !reg.server.ChannelRegistrationEnabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
reg.server.store.Update(func(tx *buntdb.Tx) error {
|
2019-03-12 00:24:45 +01:00
|
|
|
reg.deleteChannel(tx, info.NameCasefolded, info)
|
2017-11-09 04:19:50 +01:00
|
|
|
return nil
|
|
|
|
})
|
2019-03-12 00:24:45 +01:00
|
|
|
return nil
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// delete a channel, unless it was overwritten by another registration of the same channel
|
|
|
|
func (reg *ChannelRegistry) deleteChannel(tx *buntdb.Tx, key string, info RegisteredChannel) {
|
|
|
|
_, err := tx.Get(fmt.Sprintf(keyChannelExists, key))
|
|
|
|
if err == nil {
|
|
|
|
regTime, _ := tx.Get(fmt.Sprintf(keyChannelRegTime, key))
|
|
|
|
regTimeInt, _ := strconv.ParseInt(regTime, 10, 64)
|
|
|
|
registeredAt := time.Unix(regTimeInt, 0)
|
|
|
|
founder, _ := tx.Get(fmt.Sprintf(keyChannelFounder, key))
|
|
|
|
|
|
|
|
// to see if we're deleting the right channel, confirm the founder and the registration time
|
2018-08-06 15:47:44 +02:00
|
|
|
if founder == info.Founder && registeredAt.Unix() == info.RegisteredAt.Unix() {
|
2017-11-09 04:19:50 +01:00
|
|
|
for _, keyFmt := range channelKeyStrings {
|
|
|
|
tx.Delete(fmt.Sprintf(keyFmt, key))
|
|
|
|
}
|
2019-02-06 10:32:04 +01:00
|
|
|
|
|
|
|
// remove this channel from the client's list of registered channels
|
|
|
|
channelsKey := fmt.Sprintf(keyAccountChannels, info.Founder)
|
|
|
|
channelsStr, err := tx.Get(channelsKey)
|
|
|
|
if err == buntdb.ErrNotFound {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
registeredChannels := unmarshalRegisteredChannels(channelsStr)
|
|
|
|
var nowRegisteredChannels []string
|
|
|
|
for _, channel := range registeredChannels {
|
|
|
|
if channel != key {
|
|
|
|
nowRegisteredChannels = append(nowRegisteredChannels, channel)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tx.Set(channelsKey, strings.Join(nowRegisteredChannels, ","), nil)
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
|
|
|
}
|
2017-03-11 13:01:40 +01:00
|
|
|
}
|
|
|
|
|
2017-11-09 04:19:50 +01:00
|
|
|
// saveChannel saves a channel to the store.
|
2019-03-12 00:24:45 +01:00
|
|
|
func (reg *ChannelRegistry) saveChannel(tx *buntdb.Tx, channelInfo RegisteredChannel, includeFlags uint) {
|
|
|
|
channelKey := channelInfo.NameCasefolded
|
2019-02-06 10:32:04 +01:00
|
|
|
// maintain the mapping of account -> registered channels
|
|
|
|
chanExistsKey := fmt.Sprintf(keyChannelExists, channelKey)
|
|
|
|
_, existsErr := tx.Get(chanExistsKey)
|
|
|
|
if existsErr == buntdb.ErrNotFound {
|
|
|
|
// this is a new registration, need to update account-to-channels
|
|
|
|
accountChannelsKey := fmt.Sprintf(keyAccountChannels, channelInfo.Founder)
|
|
|
|
alreadyChannels, _ := tx.Get(accountChannelsKey)
|
|
|
|
newChannels := channelKey // this is the casefolded channel name
|
|
|
|
if alreadyChannels != "" {
|
|
|
|
newChannels = fmt.Sprintf("%s,%s", alreadyChannels, newChannels)
|
|
|
|
}
|
|
|
|
tx.Set(accountChannelsKey, newChannels, nil)
|
|
|
|
}
|
|
|
|
|
2018-04-04 03:49:40 +02:00
|
|
|
if includeFlags&IncludeInitial != 0 {
|
2019-02-06 10:32:04 +01:00
|
|
|
tx.Set(chanExistsKey, "1", nil)
|
2018-04-04 03:49:40 +02:00
|
|
|
tx.Set(fmt.Sprintf(keyChannelName, channelKey), channelInfo.Name, nil)
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelRegTime, channelKey), strconv.FormatInt(channelInfo.RegisteredAt.Unix(), 10), nil)
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelFounder, channelKey), channelInfo.Founder, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if includeFlags&IncludeTopic != 0 {
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelTopic, channelKey), channelInfo.Topic, nil)
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelTopicSetTime, channelKey), strconv.FormatInt(channelInfo.TopicSetTime.Unix(), 10), nil)
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelTopicSetBy, channelKey), channelInfo.TopicSetBy, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if includeFlags&IncludeModes != 0 {
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelPassword, channelKey), channelInfo.Key, nil)
|
|
|
|
modeStrings := make([]string, len(channelInfo.Modes))
|
|
|
|
for i, mode := range channelInfo.Modes {
|
|
|
|
modeStrings[i] = string(mode)
|
|
|
|
}
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelModes, channelKey), strings.Join(modeStrings, ""), nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
if includeFlags&IncludeLists != 0 {
|
2019-10-10 10:17:44 +02:00
|
|
|
banlistString, _ := json.Marshal(channelInfo.Bans)
|
2017-11-09 04:19:50 +01:00
|
|
|
tx.Set(fmt.Sprintf(keyChannelBanlist, channelKey), string(banlistString), nil)
|
2019-10-10 10:17:44 +02:00
|
|
|
exceptlistString, _ := json.Marshal(channelInfo.Excepts)
|
2017-11-09 04:19:50 +01:00
|
|
|
tx.Set(fmt.Sprintf(keyChannelExceptlist, channelKey), string(exceptlistString), nil)
|
2019-10-10 10:17:44 +02:00
|
|
|
invitelistString, _ := json.Marshal(channelInfo.Invites)
|
2017-11-09 04:19:50 +01:00
|
|
|
tx.Set(fmt.Sprintf(keyChannelInvitelist, channelKey), string(invitelistString), nil)
|
2018-04-04 03:49:40 +02:00
|
|
|
accountToUModeString, _ := json.Marshal(channelInfo.AccountToUMode)
|
|
|
|
tx.Set(fmt.Sprintf(keyChannelAccountToUMode, channelKey), string(accountToUModeString), nil)
|
2017-11-09 04:19:50 +01:00
|
|
|
}
|
2017-03-11 13:01:40 +01:00
|
|
|
}
|