forked from jlu5/SupyPlugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccountsdb.py
130 lines (111 loc) · 5.18 KB
/
accountsdb.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
###
# Copyright (c) 2019, James Lu <james@overdrivenetworks.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
###
"""
accountsdb: Provides storage for user-specific data via Supybot accounts, ident@host, or nicks.
"""
import pickle
import os
from supybot import ircdb, log, conf, registry
MODES = ["accounts", "identhost", "nicks"]
DEFAULT_MODE = MODES[0]
class _AccountsDBAddressConfig(registry.OnlySomeStrings):
validStrings = MODES
CONFIG_OPTION_NAME = "DBAddressingMode"
CONFIG_OPTION = _AccountsDBAddressConfig(DEFAULT_MODE, """Sets the DB addressing mode.
This requires reloading the plugin to take effect. Valid settings include accounts
(save users by Supybot accounts and ident@host if not registered), identhost
(save users by ident@host), and nicks (save users by nicks).
When changing addressing modes, existing keys will be left intact, but migration between
addressing modes is NOT supported.""")
class AccountsDB():
"""
Abstraction to map users to third-party account names.
This stores users by their bot account first, falling back to their
ident@host if they are not logged in.
"""
def __init__(self, plugin_name, filename, addressing_mode=DEFAULT_MODE, case_sensitive=False):
"""
Loads the existing database, creating a new one in memory if none
exists.
"""
self.db = {}
self._plugin_name = plugin_name
self.filename = conf.supybot.directories.data.dirize(filename)
self.case_sensitive = case_sensitive
self.addressing_mode = addressing_mode
try:
with open(self.filename, 'rb') as f:
self.db = pickle.load(f)
except Exception as e:
log.debug('%s: Unable to load database, creating '
'a new one: %s', self._plugin_name, e)
else:
if not case_sensitive:
for key, val in self.db.copy().items():
if not key.islower():
log.debug('%s: case-shifting key %s to %s', self._plugin_name, key, key.lower())
self.db[key.lower()] = val
del self.db[key]
def flush(self):
"""Exports the database to a file."""
tmp_filename = self.filename + '.tmp'
try:
with open(tmp_filename, 'wb') as f:
pickle.dump(self.db, f, 2)
os.rename(tmp_filename, self.filename)
except Exception as e:
log.exception('%s: Unable to write database: %s', self._plugin_name, e)
def _get_key(self, prefix):
nick, identhost = prefix.split('!', 1)
if self.addressing_mode == "accounts":
try: # Try to first look up the caller as a bot account.
userobj = ircdb.users.getUser(prefix)
return userobj.name
except KeyError: # If that fails, store them by nick@host.
return identhost
elif self.addressing_mode == "identhost":
return identhost
elif self.addressing_mode == "nicks":
return nick
else:
raise ValueError("Unknown addressing mode %r" % self.addressing_mode)
def set(self, prefix, newId):
"""Sets a user ID given the user's prefix."""
user = self._get_key(prefix)
if not self.case_sensitive:
user = user.lower()
self.db[user] = newId
def get(self, prefix):
"""Sets a user ID given the user's prefix."""
user = self._get_key(prefix)
log.debug('%s: looking up prefix %s; got user %s', self._plugin_name, prefix, user)
if not self.case_sensitive:
user = user.lower()
# Automatically returns None if entry does not exist
return self.db.get(user)