This repository was archived by the owner on Feb 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunityserv.py
111 lines (75 loc) · 3.01 KB
/
communityserv.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
"""
Copyright (c) 2013, Christine Dodrill
All rights reserved.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
"""
NAME="Community Service"
DESC="A place for communities to register information about themselves"
from structures import *
from utils import *
global client
def initModule(cod):
global client
client = makeService(cod.config["commserv"]["nick"], cod.config["commserv"]["user"],
cod.config["commserv"]["host"], cod.config["commserv"]["gecos"],
cod.getUID())
cod.s2scommands["PRIVMSG"].append(handleMessages)
initDBTable(cod, "Communities",
"Id INTEGER PRIMARY KEY, Name TEXT, Url TEXT, Channel TEXT, Description TEXT")
cod.clients[client.uid] = client
cod.sendLine(client.burst())
cod.log("Bursting FAQ client", "!!!")
cod.sendLine(client.join(cod.channels[cod.config["etc"]["snoopchan"]]))
cod.sendLine(client.join(cod.channels[cod.config["etc"]["helpchan"]]))
cod.sendLine(client.join(cod.channels[cod.config["etc"]["lobbychan"]]))
if cod.config["commserv"]["autojoin"]:
rows = lookupDB(cod, "Communities")
if rows == []:
return
for row in rows:
cod.join(row[3], client)
def destroyModule(cod):
global client
cod.sendLine(client.quit())
cod.clients.pop(client.uid)
cod.s2scommands["PRIVMSG"].remove(handleMessages)
def rehash():
pass
def handleMessages(cod, line):
global client
if line.args[0] != client.uid:
return
splitline = line.args[-1].split()
if splitline[0] == "LIST":
listComms(cod, cod.clients[line.source])
elif splitline[0] == "ADD":
addcommunity(cod, cod.clients[line.source], splitline[1:])
def listComms(cod, uclient, by=None):
global client
comms = lookupDB(cod, "Communities")
if comms == []:
cod.sendLine(client.notice(uclient.uid, "No communities added to the list"))
return
for comm in comms:
cod.sendLine(client.notice(uclient.uid, "%d: %s: <%s> %s - %s" % comm, client))
def addcommunity(cod, uclient, args):
global client
if len(args) < 4:
cod.sendLine(client.notice(uclient.uid, "Need more params"))
return
desc = " ".join(args[4:])
name = args[0]
pass