Sat, 01 Nov 2014 15:29:45 +0200
- also check for 'should fix' in commit messages
0 | 1 | #!/usr/bin/env python |
2 | ''' | |
25
9fa1df6113c4
- changed the copyright line to use my proper legal name instead of my common calling name
Santeri Piippo <crimsondusk64@gmail.com>
parents:
24
diff
changeset
|
3 | Copyright 2014 Teemu Piippo |
0 | 4 | All rights reserved. |
5 | ||
6 | Redistribution and use in source and binary forms, with or without | |
7 | modification, are permitted provided that the following conditions | |
8 | are met: | |
9 | ||
10 | 1. Redistributions of source code must retain the above copyright | |
11 | notice, this list of conditions and the following disclaimer. | |
12 | 2. Redistributions in binary form must reproduce the above copyright | |
13 | notice, this list of conditions and the following disclaimer in the | |
14 | documentation and/or other materials provided with the distribution. | |
15 | 3. The name of the author may not be used to endorse or promote products | |
16 | derived from this software without specific prior written permission. | |
17 | ||
18 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | |
19 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | |
20 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | |
21 | IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | |
22 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | |
23 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
24 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
25 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
26 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
27 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
28 | ''' | |
29 | ||
30 | import asyncore | |
31 | import socket | |
32 | import time | |
33 | import sys | |
34 | import traceback | |
35 | import re | |
36 | import json | |
2
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
37 | import urllib |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
38 | import urllib2 |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
39 | import hgapi |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
40 | import os |
15
e7999383db5a
- don't crash if utf parsing yields an UnicodeDecodeError
Santeri Piippo <crimsondusk64@gmail.com>
parents:
14
diff
changeset
|
41 | import suds |
23
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
42 | import math |
0 | 43 | |
44 | try: | |
20
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
45 | uid = os.geteuid() |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
46 | except: |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
47 | uid = -1 |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
48 | |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
49 | if uid == 0 and raw_input ('Do you seriously want to run cobalt as root? [y/N] ') != 'y': |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
50 | quit() |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
51 | |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
52 | print 'Loading configuration...' |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
53 | try: |
0 | 54 | with open ('cobalt.json', 'r') as fp: |
55 | g_config = json.loads (fp.read()) | |
56 | except IOError as e: | |
57 | print 'couldn\'t open cobalt.json: %s' % e | |
58 | quit() | |
59 | ||
60 | g_admins = g_config['admins'] | |
61 | g_mynick = g_config['nickname'] | |
62 | ||
2
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
63 | g_idgamesSearchURL = 'http://www.doomworld.com/idgames/api/api.php?action=search&query=%s&type=title&sort=date&out=json' |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
64 | g_BotActive = False |
2
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
65 | |
0 | 66 | # |
67 | # SOAP stuff | |
68 | # | |
3
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
69 | suds_active = False |
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
70 | |
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
71 | try: |
20
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
72 | print 'Initializing MantisBT connection...' |
15
e7999383db5a
- don't crash if utf parsing yields an UnicodeDecodeError
Santeri Piippo <crimsondusk64@gmail.com>
parents:
14
diff
changeset
|
73 | suds_import = suds.xsd.doctor.Import ('http://schemas.xmlsoap.org/soap/encoding/', 'http://schemas.xmlsoap.org/soap/encoding/') |
e7999383db5a
- don't crash if utf parsing yields an UnicodeDecodeError
Santeri Piippo <crimsondusk64@gmail.com>
parents:
14
diff
changeset
|
74 | suds_client = suds.client.Client ('https://zandronum.com/tracker/api/soap/mantisconnect.php?wsdl', plugins=[suds.xsd.doctor.ImportDoctor (suds_import)]) |
3
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
75 | suds_active = True |
20
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
76 | except Exception as e: |
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
77 | print 'Failed to establish MantisBT connection: ' + `e` |
3
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
78 | pass |
0 | 79 | |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
80 | btannounce_active = False |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
81 | btannounce_timeout = 0 |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
82 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
83 | def save_config(): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
84 | with open ('cobalt.json', 'w') as fp: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
85 | json.dump (g_config, fp, sort_keys = True, indent = 4) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
86 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
87 | def cfg (key, default): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
88 | if not hasattr (g_config, key): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
89 | g_config[key] = default |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
90 | save_config() |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
91 | return default |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
92 | return g_config[key] |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
93 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
94 | def bt_updatechecktimeout(): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
95 | global btannounce_timeout |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
96 | btannounce_timeout = time.time() + (cfg ('btlatest_checkinterval', 5) * 60) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
97 | |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
98 | def bool_from_string (value): |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
99 | if value != 'true' and value != 'false': |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
100 | raise logical_exception ('expected true or false for value') |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
101 | return True if value == 'true' else False |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
102 | |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
103 | if suds_active: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
104 | try: |
20
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
105 | sys.stdout.write ('Retrieving latest tracker ticket... ') |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
106 | btannounce_id = suds_client.service.mc_issue_get_biggest_id (g_config['trackeruser'], g_config['trackerpassword'], 0) |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
107 | btannounce_active = True |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
108 | bt_updatechecktimeout() |
20
2603faf5f91b
- don't run as root without asking first, added more startup messages
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
109 | print btannounce_id |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
110 | except Exception as e: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
111 | pass |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
112 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
113 | def bt_getissue(ticket): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
114 | global suds_client |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
115 | global g_config |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
116 | return suds_client.service.mc_issue_get (g_config['trackeruser'], g_config['trackerpassword'], ticket) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
117 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
118 | def bt_checklatest(): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
119 | global btannounce_timeout |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
120 | global btannounce_id |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
121 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
122 | if time.time() >= btannounce_timeout: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
123 | bt_updatechecktimeout() |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
124 | newid = btannounce_id |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
125 | try: |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
126 | newid = suds_client.service.mc_issue_get_biggest_id (g_config['trackeruser'], g_config['trackerpassword'], 0) |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
127 | except Exception as e: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
128 | pass |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
129 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
130 | while newid > btannounce_id: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
131 | try: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
132 | btannounce_id += 1 |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
133 | data = bt_getissue (btannounce_id) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
134 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
135 | for client in g_clients: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
136 | client.announce_ticket (data) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
137 | except Exception as e: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
138 | pass |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
139 | |
0 | 140 | # |
141 | # irc_client flags | |
142 | # | |
143 | CLIF_CONNECTED = (1 << 1) | |
144 | ||
145 | # | |
146 | # List of all clients | |
147 | # | |
148 | g_clients = [] | |
149 | ||
150 | class channel (object): | |
151 | name = "" | |
152 | password = "" | |
153 | ||
154 | def __init__ (self, name): | |
155 | self.name = name | |
156 | ||
157 | # | |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
158 | # Prints a line to log channel(s) |
0 | 159 | # |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
160 | def chanlog (line): |
0 | 161 | for client in g_clients: |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
162 | if not client.flags & CLIF_CONNECTED: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
163 | continue |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
164 | |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
165 | for channel in client.channels: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
166 | if channel['logchannel']: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
167 | client.write ("PRIVMSG %s :%s" % (channel['name'], line)) |
0 | 168 | |
169 | # | |
170 | # Exception handling | |
171 | # | |
172 | def handle_exception(excType, excValue, trace): | |
173 | excepterm (traceback.format_exception(excType, excValue, trace)) | |
174 | ||
175 | def excepterm(data): | |
176 | for segment in data: | |
177 | for line in segment.splitlines(): | |
178 | print line | |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
179 | chanlog (line) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
180 | |
0 | 181 | for client in g_clients: |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
182 | if len(data) > 0: |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
183 | client.exceptdie() |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
184 | else: |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
185 | client.quit_irc() |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
186 | |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
187 | if g_BotActive: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
188 | restart_self() |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
189 | else: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
190 | quit() |
0 | 191 | |
192 | sys.excepthook = handle_exception | |
193 | ||
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
194 | def check_admin (sender, ident, host, command): |
16
6672cecf3ed1
- don't crash if unicode parsing fails, don't require nickname for admin masks
Santeri Piippo <crimsondusk64@gmail.com>
parents:
15
diff
changeset
|
195 | if not "%s@%s" % (ident, host) in g_admins: |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
196 | raise logical_exception (".%s requires admin access" % command) |
0 | 197 | |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
198 | class logical_exception (Exception): |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
199 | def __init__ (self, value): |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
200 | self.value = value |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
201 | def __str__ (self): |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
202 | return self.value |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
203 | |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
204 | # from http://www.daniweb.com/software-development/python/code/260268/restart-your-python-program |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
205 | def restart_self(): |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
206 | python = sys.executable |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
207 | os.execl (python, python, * sys.argv) |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
208 | |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
209 | ' Check if a repository exists ' |
48
dbef418cc1c8
- now clones sandbox correctly
Teemu Piippo <crimsondusk64@gmail.com>
parents:
47
diff
changeset
|
210 | def check_repo_exists (repo_name, repo_owner): |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
211 | print 'Checking that %s exists...' % repo_name |
48
dbef418cc1c8
- now clones sandbox correctly
Teemu Piippo <crimsondusk64@gmail.com>
parents:
47
diff
changeset
|
212 | repo_url = 'https://bitbucket.org/%s/%s' % (repo_owner, repo_name) |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
213 | zanrepo = hgapi.Repo (repo_name) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
214 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
215 | try: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
216 | zanrepo.hg_command ('id', '.') |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
217 | except hgapi.hgapi.HgException: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
218 | # If the repo does not exist, clone it. After cloning, there obviously |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
219 | # are no more updates, so we'll be done. |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
220 | try: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
221 | print 'Cloning %s...' % repo_name |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
222 | zanrepo.hg_clone (repo_url, repo_name) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
223 | print 'Cloning done. No update checking needed.' |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
224 | except Exception as e: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
225 | print 'Unable to clone %s from %s: %s' % (repo_name, repo_url, str (`e`)) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
226 | quit(1) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
227 | #tried |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
228 | #enddef |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
229 | |
48
dbef418cc1c8
- now clones sandbox correctly
Teemu Piippo <crimsondusk64@gmail.com>
parents:
47
diff
changeset
|
230 | check_repo_exists ('zandronum', 'Torr_Samaho') |
dbef418cc1c8
- now clones sandbox correctly
Teemu Piippo <crimsondusk64@gmail.com>
parents:
47
diff
changeset
|
231 | check_repo_exists ('zandronum-stable', 'Torr_Samaho') |
dbef418cc1c8
- now clones sandbox correctly
Teemu Piippo <crimsondusk64@gmail.com>
parents:
47
diff
changeset
|
232 | check_repo_exists ('zandronum-sandbox', 'crimsondusk') |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
233 | check_repo_exists ('zandronum-sandbox-stable', 'crimsondusk') |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
234 | |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
235 | repocheck_timeout = {'zandronum':(time.time()) + 15, 'zandronum-stable':(time.time() + 15), 'zandronum-sandbox':(time.time()) + 15, 'zandronum-sandbox-stable':(time.time()) + 15} |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
236 | |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
237 | def get_commit_data (zanrepo, rev, template): |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
238 | return zanrepo.hg_command ('log', '-l', '1', '-r', rev, '--template', template) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
239 | #enddef |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
240 | |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
241 | def decipher_hgapi_error (e): |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
242 | # Blah, hgapi, why must your error messages be so mangled? |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
243 | try: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
244 | rawmsg = e.message.replace('\n', '').replace('" +','').replace('\t','') |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
245 | errmsg = re.compile (r'.*: tErr: (.*)Out:.*').match (rawmsg).group (1) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
246 | return [True, errmsg] |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
247 | except: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
248 | return [False, ''] |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
249 | #endtry |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
250 | #enddef |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
251 | |
46
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
252 | def bbcodify(commit_diffstat): |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
253 | result='' |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
254 | for line in commit_diffstat.split('\n'): |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
255 | # Add green color-tags for the ++++++++++ stream |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
256 | rex = re.compile (r'^(.*)\|(.*) (\+*)(-*)(.*)$') |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
257 | match = rex.match (line) |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
258 | if match: |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
259 | line = '%s|%s [color=#5F7]%s[/color][color=#F53]%s[/color]%s\n' \ |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
260 | % (match.group (1), match.group (2), match.group (3), match.group (4), match.group (5)) |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
261 | |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
262 | # Tracker doesn't seem to like empty color tags |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
263 | line = line.replace ('[color=#5F7][/color]', '').replace ('[color=#F53][/color]', '') |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
264 | #else: |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
265 | #rex = re.compile (r'^(.*) ([0-9]+) insertions\(\+\), ([0-9]+) deletions\(\-\)$') |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
266 | #match = rex.match (line) |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
267 | #if match: |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
268 | #line = '%s [b][color=green]%s[/color][/b] insertions, [b][color=red]%s[/color][/b] deletions\n' \ |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
269 | #% (match.group (1), match.group (2), match.group (3)) |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
270 | |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
271 | result += line |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
272 | #done |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
273 | |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
274 | return result |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
275 | #enddef |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
276 | |
50 | 277 | def find_developer_by_email (commit_email): |
49
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
278 | for developer, emails in g_config['developer_emails'].iteritems(): |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
279 | for email in emails: |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
280 | if commit_email == email: |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
281 | return developer |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
282 | #fi |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
283 | #done |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
284 | #done |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
285 | #enddef |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
286 | |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
287 | ' Retrieves and processes commits for zandronum repositories ' |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
288 | ' Ensure both repositories are OK before using this! ' |
34
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
289 | def process_zan_repo_updates (repo_name): |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
290 | global repocheck_timeout |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
291 | global suds_client |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
292 | global g_config |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
293 | global g_clients |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
294 | |
34
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
295 | usestable = repo_name == 'zandronum-stable' |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
296 | usesandbox = repo_name == 'zandronum-sandbox' or repo_name == 'zandronum-sandbox-stable' |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
297 | repo_owner = 'Torr_Samaho' if not usesandbox else 'crimsondusk' |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
298 | repo_url = 'https://bitbucket.org/%s/%s' % (repo_owner, repo_name) |
34
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
299 | num_commits = 0 |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
300 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
301 | if time.time() < repocheck_timeout[repo_name]: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
302 | return |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
303 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
304 | repocheck_timeout[repo_name] = time.time() + (cfg ('hg_checkinterval', 15) * 60) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
305 | zanrepo = hgapi.Repo (repo_name) |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
306 | commit_data = [] |
42
adbf42ede463
- use a specific delimeter string '@@@@@@@@@@@' for hg incoming data as some commit messages are multi-line
Teemu Piippo <crimsondusk64@gmail.com>
parents:
41
diff
changeset
|
307 | delimeter = '@@@@@@@@@@' |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
308 | |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
309 | try: |
42
adbf42ede463
- use a specific delimeter string '@@@@@@@@@@@' for hg incoming data as some commit messages are multi-line
Teemu Piippo <crimsondusk64@gmail.com>
parents:
41
diff
changeset
|
310 | data = zanrepo.hg_command ('incoming', '--quiet', '--template', |
adbf42ede463
- use a specific delimeter string '@@@@@@@@@@@' for hg incoming data as some commit messages are multi-line
Teemu Piippo <crimsondusk64@gmail.com>
parents:
41
diff
changeset
|
311 | '{node|short} {desc}' + delimeter) |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
312 | except hgapi.hgapi.HgException as e: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
313 | deciphered = decipher_hgapi_error (e) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
314 | |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
315 | if deciphered[0] and len(deciphered[1]) > 0: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
316 | chanlog ("error while using hg import on %s: %s" % (repo_name, deciphered[1])) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
317 | #fi |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
318 | |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
319 | return |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
320 | except Exception as e: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
321 | chanlog ("%s" % `e`) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
322 | return |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
323 | #tried |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
324 | |
42
adbf42ede463
- use a specific delimeter string '@@@@@@@@@@@' for hg incoming data as some commit messages are multi-line
Teemu Piippo <crimsondusk64@gmail.com>
parents:
41
diff
changeset
|
325 | for line in data.split (delimeter): |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
326 | if line == '': |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
327 | continue |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
328 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
329 | |
43
637cee1d89f0
- removed line delimeters from hg incoming regex parser
Teemu Piippo <crimsondusk64@gmail.com>
parents:
42
diff
changeset
|
330 | rex = re.compile (r'([^ ]+) (.+)') |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
331 | match = rex.match (line) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
332 | failed = False |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
333 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
334 | if not match: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
335 | chanlog ('malformed hg data: %s' % line) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
336 | continue |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
337 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
338 | |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
339 | commit_node = match.group (1) |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
340 | commit_message = match.group (2) |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
341 | commit_data.append ([commit_node, commit_message]) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
342 | #done |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
343 | |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
344 | if len (commit_data) > 0: |
53 | 345 | pull_args = []; |
346 | ||
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
347 | for commit in commit_data: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
348 | pull_args.append ('-r'); |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
349 | pull_args.append (commit[0]); |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
350 | #done |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
351 | |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
352 | try: |
52 | 353 | zanrepo.hg_command ('pull', *pull_args) |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
354 | |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
355 | # Also pull these commits to the zandronum main repository |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
356 | if usestable: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
357 | devrepo = hgapi.Repo ('zandronum') |
52 | 358 | devrepo.hg_command ('pull', '../zandronum-stable', *pull_args) |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
359 | #fi |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
360 | |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
361 | # Pull everything into sandboxes too |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
362 | if not usesandbox: |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
363 | devrepo = hgapi.Repo ('zandronum-sandbox') |
52 | 364 | devrepo.hg_command ('pull', '../%s' % repo_name, *pull_args) |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
365 | |
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
366 | devrepo = hgapi.Repo ('zandronum-sandbox-stable') |
52 | 367 | devrepo.hg_command ('pull', '../%s' % repo_name, *pull_args) |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
368 | #fi |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
369 | except Exception as e: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
370 | chanlog ('Warning: unable to pull: %s' % `e`) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
371 | return |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
372 | #tried |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
373 | #fi |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
374 | |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
375 | for commit in commit_data: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
376 | commit_node = commit[0] |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
377 | commit_message = commit[1] |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
378 | |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
379 | try: |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
380 | if usesandbox: |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
381 | commit_author = get_commit_data (zanrepo, commit_node, '{author}') |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
382 | commit_url = '%s/commits/%s' % (repo_url, commit_node) |
49
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
383 | commit_email = '' |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
384 | |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
385 | # Remove the email address from the author if possible |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
386 | rex = re.compile (r'^(.+) <([^>]+)>$.*') |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
387 | match = rex.match (commit_author) |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
388 | if match: |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
389 | commit_author = match.group (1) |
49
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
390 | commit_email = match.group (2) |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
391 | #fi |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
392 | |
49
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
393 | commit_trackeruser = find_developer_by_email (commit_email) |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
394 | committer = commit_trackeruser if commit_trackeruser != '' else commit_author |
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
395 | |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
396 | for irc_client in g_clients: |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
397 | for channel in irc_client.cfg['channels']: |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
398 | if 'btprivate' in channel and channel['btprivate'] == True: |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
399 | irc_client.privmsg (channel['name'], |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
400 | "%s: new commit %s by %s: %s" |
49
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
401 | % (repo_name, commit_node, committer, commit_url)) |
47
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
402 | |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
403 | for line in commit_message.split ('\n'): |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
404 | irc_client.privmsg (channel['name'], line) |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
405 | #fi |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
406 | #done |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
407 | #done |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
408 | |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
409 | num_commits += 1 |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
410 | continue |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
411 | #fi |
103f184951bb
- added sandbox support
Teemu Piippo <crimsondusk64@gmail.com>
parents:
46
diff
changeset
|
412 | |
54
180ae24d46f2
- also check for 'should fix' in commit messages
Teemu Piippo <crimsondusk64@gmail.com>
parents:
53
diff
changeset
|
413 | rex = re.compile (r'^.*(fixes|resolves|addresses|should fix) ([0-9]+).*$') |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
414 | match = rex.match (commit_message) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
415 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
416 | if not match: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
417 | continue # no "fixes" message in the commit |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
418 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
419 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
420 | ticket_id = int (match.group (2)) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
421 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
422 | # Acquire additional data |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
423 | moredata = get_commit_data (zanrepo, commit_node, |
46
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
424 | '{author|nonempty}\n{date(date, \'%A %d %B %Y %T\')}').split('\n') |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
425 | |
46
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
426 | if len (moredata) != 2: |
40
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
427 | chanlog ('error while processing %s: malformed hg data' % commit_node) |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
428 | continue |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
429 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
430 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
431 | commit_author = moredata[0] |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
432 | commit_date = moredata[1] |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
433 | commit_email = "" |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
434 | |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
435 | try: |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
436 | ticket_data = suds_client.service.mc_issue_get (g_config['trackeruser'], |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
437 | g_config['trackerpassword'], ticket_id) |
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
438 | except Exception as e: |
40
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
439 | chanlog ('error while processing %s: %s' % (commit_node, `e`)) |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
440 | continue |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
441 | #tried |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
442 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
443 | # Remove the email address from the author if possible |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
444 | rex = re.compile (r'^(.+) <([^>]+)>$.*') |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
445 | match = rex.match (commit_author) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
446 | if match: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
447 | commit_author = match.group (1) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
448 | commit_email = match.group (2) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
449 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
450 | |
46
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
451 | commit_diffstat = zanrepo.hg_command ('diff', '--change', commit_node, '--stat') |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
452 | |
46
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
453 | if len(commit_diffstat) > 0: |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
454 | # commit_diffstat = 'Changes in files:\n[code]\n' + commit_diffstat + '\n[/code]' |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
455 | commit_diffstat = 'Changes in files:\n' + bbcodify(commit_diffstat) |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
456 | else: |
c4d231fdf1c0
- now with a more detailed diffstat, in color!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
45
diff
changeset
|
457 | commit_diffstat = 'No changes in files.' |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
458 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
459 | # Compare the email addresses against known developer usernames |
49
2df3d5b2f364
- print username when possible
Teemu Piippo <crimsondusk64@gmail.com>
parents:
48
diff
changeset
|
460 | commit_trackeruser = find_developer_by_email (commit_email) |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
461 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
462 | if commit_trackeruser != '': |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
463 | commit_author += ' [%s]' % commit_trackeruser |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
464 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
465 | |
37
3399d716b3ae
- fixed: the [url] tags in BT messages had unnecessary quotes
Teemu Piippo <crimsondusk64@gmail.com>
parents:
36
diff
changeset
|
466 | message = 'Issue addressed by commit %s: [b][url=%s/commits/%s]%s[/url][/b]' \ |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
467 | % (commit_node, repo_url, commit_node, commit_message) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
468 | message += "\nCommitted by %s on %s\n\n%s" \ |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
469 | % (commit_author, commit_date, commit_diffstat) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
470 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
471 | need_update = False |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
472 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
473 | # If not already set, set handler |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
474 | if not 'handler' in ticket_data: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
475 | ticket_data['handler'] = {'name': commit_trackeruser} |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
476 | need_update = True |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
477 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
478 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
479 | # Find out the status level of the ticket |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
480 | needs_testing_level = 70 |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
481 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
482 | if ticket_data['status']['id'] < needs_testing_level: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
483 | ticket_data.status['id'] = needs_testing_level |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
484 | need_update = True |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
485 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
486 | |
35
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
487 | # Set target version if not set |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
488 | if not 'target_version' in ticket_data: |
45
fdfcdf405b16
- bump interpreted version number of zandronum-stable from 1.3 to 1.4
Teemu Piippo <crimsondusk64@gmail.com>
parents:
44
diff
changeset
|
489 | ticket_data['target_version'] = '1.4' if repo_name == 'zandronum-stable' else '2.0' |
35
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
490 | need_update = True |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
491 | elif (ticket_data['target_version'] == '2.0' or ticket_data['target_version'] == '2.0-beta') \ |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
492 | and repo_name == 'zandronum-stable': |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
493 | # Target version was 2.0 but this was just committed to zandronum-stable, adjust |
45
fdfcdf405b16
- bump interpreted version number of zandronum-stable from 1.3 to 1.4
Teemu Piippo <crimsondusk64@gmail.com>
parents:
44
diff
changeset
|
494 | ticket_data['target_version'] = '1.4' |
35
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
495 | need_update = True |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
496 | elif ticket_data['target_version'] == '2.0-beta': |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
497 | # Fix target version from 2.0-beta to 2.0 |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
498 | ticket_data['target_version'] = '2.0' |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
499 | need_update = True |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
500 | #fi |
237e82bcd02f
- update target version in tickets when acting upon commit data
Teemu Piippo <crimsondusk64@gmail.com>
parents:
34
diff
changeset
|
501 | |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
502 | # Announce on IRC |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
503 | for irc_client in g_clients: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
504 | for channel in irc_client.cfg['channels']: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
505 | if 'btannounce' in channel and channel['btannounce'] == True: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
506 | irc_client.privmsg (channel['name'], |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
507 | "%s: commit %s fixes issue %d: %s" |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
508 | % (repo_name, commit_node, ticket_id, commit_message)) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
509 | irc_client.privmsg (channel['name'], |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
510 | "Read all about it here: " + irc_client.get_ticket_url (ticket_id)) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
511 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
512 | #done |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
513 | #done |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
514 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
515 | if need_update: |
36
543d7a5e3b8b
- when updating BT tickets, the note data must be cleared in order to not update all the tickets in the ticket. WTF is MantisBT smoking?
Teemu Piippo <crimsondusk64@gmail.com>
parents:
35
diff
changeset
|
516 | # We need to remove the note data, otherwise the ticket notes |
543d7a5e3b8b
- when updating BT tickets, the note data must be cleared in order to not update all the tickets in the ticket. WTF is MantisBT smoking?
Teemu Piippo <crimsondusk64@gmail.com>
parents:
35
diff
changeset
|
517 | # will get unnecessary updates. WTF, MantisBT? |
543d7a5e3b8b
- when updating BT tickets, the note data must be cleared in order to not update all the tickets in the ticket. WTF is MantisBT smoking?
Teemu Piippo <crimsondusk64@gmail.com>
parents:
35
diff
changeset
|
518 | ticket_data.notes = [] |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
519 | suds_client.service.mc_issue_update (g_config['trackeruser'], g_config['trackerpassword'], ticket_id, ticket_data) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
520 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
521 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
522 | suds_client.service.mc_issue_note_add (g_config['trackeruser'], g_config['trackerpassword'], ticket_id, { 'text': message }) |
34
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
523 | num_commits += 1 |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
524 | except Exception as e: |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
525 | chanlog ('Error while processing %s: %s' % (commit_node, `e`)) |
39
afd590258a93
- reworked repository watching. Now uses incoming only once to get a list of commits, then pulls, then operates on pulled data. The incoming command doesn't seem to support the '-r' switch properly? Should also be a bit faster now and should use less networking.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
38
diff
changeset
|
526 | continue |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
527 | #tried |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
528 | #done |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
529 | |
34
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
530 | return num_commits > 0 |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
531 | #enddef |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
532 | |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
533 | # |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
534 | # Main IRC client class |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
535 | # |
0 | 536 | class irc_client (asyncore.dispatcher): |
537 | def __init__ (self, cfg, flags): | |
538 | self.name = cfg['name'] | |
539 | self.host = cfg['address'] | |
540 | self.port = cfg['port'] | |
541 | self.password = cfg['password'] if 'password' in cfg else '' | |
542 | self.channels = cfg['channels'] | |
543 | self.flags = flags | |
544 | self.send_buffer = list() | |
545 | self.umode = cfg['umode'] if 'umode' in cfg else '' | |
546 | self.cfg = cfg | |
547 | self.mynick = '' | |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
548 | self.verbose = g_config['verbose'] if 'verbose' in g_config else False |
11
90851b22ab88
- gddmnt, python. you and your type system
Santeri Piippo <crimsondusk64@gmail.com>
parents:
10
diff
changeset
|
549 | self.commandprefix = g_config['commandprefix'][0] if 'commandprefix' in g_config else '.' |
8
dd467db4b18e
- made conflictsuffix configurable
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
550 | |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
551 | for channel in self.channels: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
552 | if not 'logchannel' in channel: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
553 | channel['logchannel'] = False |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
554 | channel['namesdone'] = True |
27
ac59b5ae7a78
- disabled unstable/incomplete linkbot code.. I need to learn to stash changes proper
Teemu Piippo <crimsondusk64@gmail.com>
parents:
26
diff
changeset
|
555 | #channel['haslinkbot'] = False |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
556 | |
8
dd467db4b18e
- made conflictsuffix configurable
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
557 | if not 'conflictsuffix' in self.cfg: |
dd467db4b18e
- made conflictsuffix configurable
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
558 | self.cfg['conflictsuffix'] = '`' |
dd467db4b18e
- made conflictsuffix configurable
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
559 | |
7
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
560 | self.desired_name = self.cfg['nickname'] if 'nickname' in self.cfg else g_config['nickname'] |
0 | 561 | g_clients.append (self) |
562 | asyncore.dispatcher.__init__ (self) | |
563 | self.create_socket (socket.AF_INET, socket.SOCK_STREAM) | |
564 | self.connect ((self.host, self.port)) | |
565 | ||
7
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
566 | def register_to_irc (self): |
0 | 567 | ident = self.cfg['ident'] if 'ident' in self.cfg else g_config['ident'] |
568 | gecos = self.cfg['gecos'] if 'gecos' in self.cfg else g_config['gecos'] | |
569 | if 'password' in self.cfg: | |
570 | self.write ("PASS %s" % self.cfg['password']) | |
571 | self.write ("USER %s * * :%s" % (ident, gecos)) | |
7
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
572 | self.write ("NICK %s" % self.mynick) |
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
573 | |
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
574 | def handle_connect (self): |
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
575 | self.mynick = self.desired_name |
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
576 | print "Connected to [%s] %s:%d" % (self.name, self.host, self.port) |
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
577 | self.register_to_irc() |
0 | 578 | |
17
f604687dd35b
- don't try to send stuff we cannot convert to ascii.. I don't like it but it's better than a crash
Santeri Piippo <crimsondusk64@gmail.com>
parents:
16
diff
changeset
|
579 | def write (self, utfdata): |
f604687dd35b
- don't try to send stuff we cannot convert to ascii.. I don't like it but it's better than a crash
Santeri Piippo <crimsondusk64@gmail.com>
parents:
16
diff
changeset
|
580 | try: |
f604687dd35b
- don't try to send stuff we cannot convert to ascii.. I don't like it but it's better than a crash
Santeri Piippo <crimsondusk64@gmail.com>
parents:
16
diff
changeset
|
581 | self.send_buffer.append ("%s" % utfdata.decode("utf-8","ignore").encode("ascii","ignore")) |
f604687dd35b
- don't try to send stuff we cannot convert to ascii.. I don't like it but it's better than a crash
Santeri Piippo <crimsondusk64@gmail.com>
parents:
16
diff
changeset
|
582 | except UnicodeEncodeError: |
f604687dd35b
- don't try to send stuff we cannot convert to ascii.. I don't like it but it's better than a crash
Santeri Piippo <crimsondusk64@gmail.com>
parents:
16
diff
changeset
|
583 | pass |
0 | 584 | |
585 | def handle_close (self): | |
586 | print "Connection to [%s] %s:%d terminated." % (self.name, self.host, self.port) | |
587 | self.close() | |
588 | ||
589 | def handle_write (self): | |
590 | self.send_all_now() | |
591 | ||
592 | def readable (self): | |
593 | return True | |
594 | ||
595 | def writable (self): | |
596 | return len (self.send_buffer) > 0 | |
597 | ||
598 | def send_all_now (self): | |
599 | for line in self.send_buffer: | |
9
0604f6b9f781
- added verbosity setting
Santeri Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
600 | if self.verbose: |
0604f6b9f781
- added verbosity setting
Santeri Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
601 | print "[%s] <- %s" % (self.name, line) |
0 | 602 | self.send ("%s\n" % line) |
603 | self.send_buffer = [] | |
604 | ||
605 | def handle_read (self): | |
606 | lines = self.recv (4096).splitlines() | |
2
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
607 | for utfline in lines: |
16
6672cecf3ed1
- don't crash if unicode parsing fails, don't require nickname for admin masks
Santeri Piippo <crimsondusk64@gmail.com>
parents:
15
diff
changeset
|
608 | try: |
17
f604687dd35b
- don't try to send stuff we cannot convert to ascii.. I don't like it but it's better than a crash
Santeri Piippo <crimsondusk64@gmail.com>
parents:
16
diff
changeset
|
609 | line = utfline.decode("utf-8","ignore").encode("ascii","ignore") |
16
6672cecf3ed1
- don't crash if unicode parsing fails, don't require nickname for admin masks
Santeri Piippo <crimsondusk64@gmail.com>
parents:
15
diff
changeset
|
610 | except UnicodeDecodeError: |
6672cecf3ed1
- don't crash if unicode parsing fails, don't require nickname for admin masks
Santeri Piippo <crimsondusk64@gmail.com>
parents:
15
diff
changeset
|
611 | continue |
6672cecf3ed1
- don't crash if unicode parsing fails, don't require nickname for admin masks
Santeri Piippo <crimsondusk64@gmail.com>
parents:
15
diff
changeset
|
612 | |
9
0604f6b9f781
- added verbosity setting
Santeri Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
613 | if self.verbose: |
0604f6b9f781
- added verbosity setting
Santeri Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
614 | print "[%s] -> %s" % (self.name, line) |
0 | 615 | |
616 | if line.startswith ("PING :"): | |
617 | self.write ("PONG :%s" % line[6:]) | |
14
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
618 | else: |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
619 | words = line.split(" ") |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
620 | if len(words) >= 2: |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
621 | if words[1] == "001": |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
622 | self.flags |= CLIF_CONNECTED |
0 | 623 | |
14
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
624 | for channel in self.cfg['channels']: |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
625 | self.write ("JOIN %s %s" % (channel['name'], channel['password'] if 'password' in channel else '')) |
0 | 626 | |
14
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
627 | if 'umode' in self.cfg: |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
628 | self.write ('MODE %s %s' % (self.mynick, self.cfg['umode'])) |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
629 | elif words[1] == "PRIVMSG": |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
630 | self.handle_privmsg (line) |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
631 | elif words[1] == 'JOIN': |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
632 | rex = re.compile (r'^:([^!]+)!([^@]+)@([^ ]+) JOIN :#(.+)') |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
633 | match = rex.match (line) |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
634 | |
27
ac59b5ae7a78
- disabled unstable/incomplete linkbot code.. I need to learn to stash changes proper
Teemu Piippo <crimsondusk64@gmail.com>
parents:
26
diff
changeset
|
635 | #if match and match.group(1).toLower() == 'linkbot': |
ac59b5ae7a78
- disabled unstable/incomplete linkbot code.. I need to learn to stash changes proper
Teemu Piippo <crimsondusk64@gmail.com>
parents:
26
diff
changeset
|
636 | #channel_by_name (match.group(4))['haslinkbot'] = True |
14
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
637 | elif words[1] == 'QUIT': |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
638 | rex = re.compile (r'^:([^!]+)!([^@]+)@([^ ]+) QUIT') |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
639 | match = rex.match (line) |
0 | 640 | |
14
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
641 | # Try reclaim our nickname if possible |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
642 | if match and match.group(1) == self.desired_name: |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
643 | self.mynick = self.desired_name |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
644 | self.write ("NICK %s" % self.mynick) |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
645 | |
27
ac59b5ae7a78
- disabled unstable/incomplete linkbot code.. I need to learn to stash changes proper
Teemu Piippo <crimsondusk64@gmail.com>
parents:
26
diff
changeset
|
646 | #if match and match.group(1).toLower() == 'linkbot': |
ac59b5ae7a78
- disabled unstable/incomplete linkbot code.. I need to learn to stash changes proper
Teemu Piippo <crimsondusk64@gmail.com>
parents:
26
diff
changeset
|
647 | #for channel in self.channels: |
ac59b5ae7a78
- disabled unstable/incomplete linkbot code.. I need to learn to stash changes proper
Teemu Piippo <crimsondusk64@gmail.com>
parents:
26
diff
changeset
|
648 | #channels['haslinkbot'] = False |
14
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
649 | elif words[1] == "433": |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
650 | #:irc.localhost 433 * cobalt :Nickname is already in use. |
558379fd6d6a
- heartbeat the issue announcer even if we just get a ping
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
651 | self.mynick = '%s%s' % (self.mynick, self.cfg['conflictsuffix']) |
7
438dc247ceb9
- handle nickname shenanigans: handle 433 message and try reclaim nickname if someone who has taken it (possibly our own ghost) disconnected
Santeri Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
652 | self.write ("NICK %s" % self.mynick) |
0 | 653 | |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
654 | # Check for new issues on the bugtracker |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
655 | bt_checklatest() |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
656 | |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
657 | # Check for new commits in the repositories |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
658 | for n in ['zandronum-stable', 'zandronum', 'zandronum-sandbox', 'zandronum-sandbox-stable']: |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
659 | process_zan_repo_updates (n) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
660 | |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
661 | def channel_by_name (self, name): |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
662 | for channel in self.channels: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
663 | if channel['name'].upper() == args[0].upper(): |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
664 | return channel |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
665 | else: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
666 | raise logical_exception ('unknown channel ' + args[0]) |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
667 | |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
668 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
669 | # |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
670 | # Handle a PRIVMSG line from the IRC server |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
671 | # |
0 | 672 | def handle_privmsg (self, line): |
673 | rex = re.compile (r'^:([^!]+)!([^@]+)@([^ ]+) PRIVMSG ([^ ]+) :(.+)$') | |
674 | match = rex.match (line) | |
675 | if match: | |
676 | sender = match.group (1) | |
677 | user = match.group (2) | |
678 | host = match.group (3) | |
679 | channel = match.group (4) | |
680 | message = match.group (5) | |
681 | replyto = channel if channel != g_mynick else sender | |
682 | ||
683 | # Check for tracker url in the message | |
684 | http_regex = re.compile (r'.*http(s?)://%s/view\.php\?id=([0-9]+).*' % g_config['trackerurl']) | |
685 | http_match = http_regex.match (line) | |
686 | ||
687 | # Check for command. | |
10
1b726db7b0ec
- respect the commandprefix option
Santeri Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
688 | if len(message) >= 2 and message[0] == self.commandprefix and message[1] != self.commandprefix: |
0 | 689 | stuff = message[1:].split(' ') |
690 | command = stuff[0] | |
691 | args = stuff[1:] | |
692 | try: | |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
693 | self.handle_command (sender, user, host, replyto, command, args) |
21
8c389f46a056
- handle hg errors better
Santeri Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
694 | except logical_exception as e: |
8c389f46a056
- handle hg errors better
Santeri Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
695 | for line in e.value.split ('\n'): |
8c389f46a056
- handle hg errors better
Santeri Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
696 | if len(line) > 0: |
8c389f46a056
- handle hg errors better
Santeri Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
697 | self.privmsg (replyto, "error: %s" % line) |
0 | 698 | elif http_match: |
699 | self.get_ticket_data (replyto, http_match.group (2), False) | |
700 | else: | |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
701 | chanlog ("Recieved bad PRIVMSG: %s" % line) |
0 | 702 | |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
703 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
704 | # |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
705 | # Get the URL for a specified ticket |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
706 | # |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
707 | def get_ticket_url (self, ticket): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
708 | return 'https://%s/view.php?id=%s' % (g_config['trackerurl'], ticket) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
709 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
710 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
711 | # |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
712 | # Retrieve a ticket from mantisbt |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
713 | # |
0 | 714 | def get_ticket_data (self, replyto, ticket, withlink): |
3
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
715 | if suds_active == False: |
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
716 | return |
53486417a8e5
- handle the case where the mantisbt is not available
Santeri Piippo <crimsondusk64@gmail.com>
parents:
2
diff
changeset
|
717 | |
0 | 718 | data = {} |
719 | try: | |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
720 | data = bt_getissue (ticket) |
0 | 721 | except Exception, e: |
722 | self.privmsg (replyto, "Failed to get info for issue %s: %s" % (ticket, `e`)) | |
723 | ||
724 | if data: | |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
725 | if data['view_state']['name'] == 'private': |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
726 | allowprivate = False |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
727 | |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
728 | for channel in self.channels: |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
729 | if channel['name'] == replyto and 'btprivate' in channel and channel['btprivate'] == True: |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
730 | allowprivate = True |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
731 | break |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
732 | #fi |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
733 | #done |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
734 | |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
735 | if not allowprivate: |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
736 | self.privmsg (replyto, 'Error: ticket %s is private' % ticket) |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
737 | return |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
738 | #fi |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
739 | #fi |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
740 | |
0 | 741 | self.privmsg (replyto, "Issue %s: %s: Reporter: %s, assigned to: %s, status: %s (%s)" % \ |
742 | (ticket, \ | |
743 | data.summary, \ | |
4
bd9508f8a10f
- don't crash if ticket data doesn't have a reporter name (can happen if the reporter is banned)
Santeri Piippo <crimsondusk64@gmail.com>
parents:
3
diff
changeset
|
744 | data.reporter.name if hasattr (data.reporter, 'name') else "<unknown>", \ |
0 | 745 | data.handler.name if hasattr (data, 'handler') else "nobody", \ |
746 | data.status.name, \ | |
747 | data.resolution.name)) | |
748 | ||
749 | if withlink: | |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
750 | self.privmsg (replyto, "Read all about it here: " + self.get_ticket_url (ticket)) |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
751 | #fi |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
752 | #fi |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
753 | #enddef |
0 | 754 | |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
755 | # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
756 | # |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
757 | # Process an IRC command |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
758 | # |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
759 | def handle_command (self, sender, ident, host, replyto, command, args): |
0 | 760 | if command == "raw": |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
761 | check_admin (sender, ident, host, command) |
0 | 762 | self.write (" ".join (args)) |
763 | elif command == "msg": | |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
764 | check_admin (sender, ident, host, command) |
0 | 765 | if len(args) < 2: |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
766 | raise logical_exception ("usage: .%s <target> <message...>" % command) |
0 | 767 | self.privmsg (args[0], " ".join (args[1:])) |
2
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
768 | elif command == 'ticket': |
0 | 769 | if len(args) != 1: |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
770 | raise logical_exception ("usage: .%s <ticket>" % command) |
0 | 771 | self.get_ticket_data (replyto, args[0], True) |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
772 | elif command == 'testannounce': |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
773 | check_admin (sender, ident, host, command) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
774 | if len(args) != 1: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
775 | raise logical_exception ("usage: .%s <ticket>" % command) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
776 | self.announce_ticket (bt_getissue (args[0])) |
21
8c389f46a056
- handle hg errors better
Santeri Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
777 | elif command == 'multierror': |
8c389f46a056
- handle hg errors better
Santeri Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
778 | raise logical_exception ('a\nb\nc\n') |
2
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
779 | elif command == 'idgames': |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
780 | try: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
781 | if len(args) < 1: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
782 | raise logical_exception ('usage: .%s <keywords>' % command) |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
783 | |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
784 | url = g_idgamesSearchURL % urllib.quote (" ".join (args[0:])) |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
785 | response = urllib2.urlopen (url).read() |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
786 | data = json.loads (response) |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
787 | |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
788 | if 'content' in data and 'file' in data['content']: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
789 | if type (data['content']['file']) is list: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
790 | files = data['content']['file'] |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
791 | else: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
792 | files = [data['content']['file']] |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
793 | |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
794 | i = 0 |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
795 | for filedata in files: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
796 | if i >= 5: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
797 | break |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
798 | |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
799 | self.privmsg (replyto, '- %s: \'%s\' by \'%s\', rating: %s: %s' % \ |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
800 | (filedata['filename'], filedata['title'], filedata['author'], filedata['rating'], filedata['url'])) |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
801 | |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
802 | i += 1 |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
803 | self.privmsg (replyto, "(%d / %d results posted)" % (i, len(files))) |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
804 | elif 'warning' in data and 'message' in data['warning']: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
805 | raise logical_exception (data['warning']['message']) |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
806 | elif 'error' in data and 'message' in data['error']: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
807 | raise logical_exception (data['error']['message']) |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
808 | else: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
809 | raise logical_exception ("Incomplete JSON response from doomworld.com/idgames") |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
810 | except logical_exception as e: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
811 | raise e |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
812 | except Exception as e: |
1a24dd2d598e
- added a basic /idgames search
Santeri Piippo <crimsondusk64@gmail.com>
parents:
1
diff
changeset
|
813 | raise logical_exception ('Search failed: %s' % `e`) |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
814 | elif command == 'restart': |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
815 | check_admin (sender, ident, host, command) |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
816 | excepterm('') |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
817 | elif command == 'update': |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
818 | check_admin (sender, ident, host, command) |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
819 | |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
820 | try: |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
821 | repo = hgapi.Repo ('.') |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
822 | r1 = repo.hg_id() |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
823 | repo.hg_pull() |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
824 | repo.hg_update('tip', True) |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
825 | r2 = repo.hg_id() |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
826 | if r1 != r2: |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
827 | self.privmsg (replyto, 'Updated to %s, restarting...' % r2) |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
828 | excepterm('') |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
829 | else: |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
830 | self.privmsg (replyto, 'Up to date at %s.' % r2) |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
831 | except hgapi.HgException as e: |
21
8c389f46a056
- handle hg errors better
Santeri Piippo <crimsondusk64@gmail.com>
parents:
20
diff
changeset
|
832 | raise logical_exception ('Update failed: %s' % str (e)) |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
833 | elif command == 'addchan': |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
834 | check_admin (sender, ident, host, command) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
835 | if len(args) != 1: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
836 | raise logical_exception ("usage: .%s <channel>" % command) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
837 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
838 | for channel in self.channels: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
839 | if channel['name'].upper() == args[0].upper(): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
840 | raise logical_exception ('I already know of %s!' % args[0]) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
841 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
842 | chan = {} |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
843 | chan['name'] = args[0] |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
844 | chan['logchannel'] = False |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
845 | self.channels.append (chan) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
846 | self.write ('JOIN ' + chan['name']) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
847 | save_config() |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
848 | elif command == 'delchan': |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
849 | check_admin (sender, ident, host, command) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
850 | if len(args) != 1: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
851 | raise logical_exception ("usage: .%s <channel>" % command) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
852 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
853 | for channel in self.channels: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
854 | if channel['name'].upper() == args[0].upper(): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
855 | break; |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
856 | else: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
857 | raise logical_exception ('unknown channel ' + args[0]) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
858 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
859 | self.channels.remove (channel) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
860 | self.write ('PART ' + args[0]) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
861 | save_config() |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
862 | elif command == 'chanattr': |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
863 | check_admin (sender, ident, host, command) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
864 | |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
865 | if len(args) < 1: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
866 | raise logical_exception ("usage: .%s <attribute> [value...]" % command) |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
867 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
868 | for channel in self.channels: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
869 | if channel['name'] == replyto: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
870 | break |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
871 | else: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
872 | raise logical_exception ('I don\'t know of a channel named ' + replyto) |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
873 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
874 | key = args[0] |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
875 | |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
876 | if len(args) < 2: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
877 | try: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
878 | self.privmsg (replyto, '%s = %s' % (key, channel[key])) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
879 | except KeyError: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
880 | self.privmsg (replyto, 'attribute %s is not set' % key) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
881 | else: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
882 | value = " ".join (args[1:]) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
883 | if key == 'name': |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
884 | if replyto == channel['name']: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
885 | replyto = value |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
886 | |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
887 | self.write ('PART ' + channel['name']) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
888 | channel['name'] = value |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
889 | self.write ('JOIN ' + channel['name'] + ' ' + (channel['password'] if hasattr (channel, 'password') else '')) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
890 | elif key == 'password': |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
891 | channel['password'] = value |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
892 | elif key == 'btannounce': |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
893 | channel['btannounce'] = bool_from_string (value) |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
894 | elif key == 'btprivate': |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
895 | channel['btprivate'] = bool_from_string (value) |
19
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
896 | elif key == 'logchannel': |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
897 | channel['logchannel'] = bool_from_string (value) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
898 | else: |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
899 | raise logical_exception ('unknown key ' + key) |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
900 | |
ca618214fd07
- control connections turned into log channels
Santeri Piippo <crimsondusk64@gmail.com>
parents:
18
diff
changeset
|
901 | self.privmsg (replyto, '%s is now %s' % (key, channel[key])) |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
902 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
903 | save_config() |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
904 | elif command == 'devemail': |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
905 | check_admin (sender, ident, host, command) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
906 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
907 | if len(args) < 2: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
908 | raise logical_exception ("usage: .%s <user> <email>" % command) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
909 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
910 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
911 | if not 'developer_emails' in g_config: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
912 | g_config['developer_emails'] = {} |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
913 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
914 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
915 | user = ' '.join (args[0:-1]) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
916 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
917 | if args[0] in g_config['developer_emails']: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
918 | g_config['developer_emails'][user].append (args[-1]) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
919 | else: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
920 | g_config['developer_emails'][user] = [args[-1]] |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
921 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
922 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
923 | self.privmsg (replyto, 'Developer emails for %s are now %s' % |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
924 | (user, ', '.join (g_config['developer_emails'][user]))) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
925 | save_config() |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
926 | elif command == 'deldevemail': |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
927 | check_admin (sender, ident, host, command) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
928 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
929 | if len(args) < 2: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
930 | raise logical_exception ("usage: .%s <user> <email>" % command) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
931 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
932 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
933 | if not 'developer_emails' in g_config: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
934 | g_config['developer_emails'] = {} |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
935 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
936 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
937 | user = ' '.join (args[0:-1]) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
938 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
939 | if user in g_config['developer_emails']: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
940 | try: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
941 | g_config['developer_emails'][user].remove (args[-1]) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
942 | except: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
943 | pass |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
944 | #tried |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
945 | |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
946 | if len (g_config['developer_emails'][user]) == 0: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
947 | g_config['developer_emails'].pop (user) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
948 | self.privmsg (replyto, 'No more developer emails for %s' % user) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
949 | else: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
950 | self.privmsg (replyto, 'Developer emails for %s are now %s' % |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
951 | (user, ', '.join (g_config['developer_emails'][user]))) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
952 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
953 | save_config() |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
954 | else: |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
955 | self.privmsg (replyto, 'There is no developer \'%s\'' % user) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
956 | #fi |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
957 | elif command == 'listdevemails': |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
958 | check_admin (sender, ident, host, command) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
959 | |
30
114afc110afd
- fixed crash on listdevemails if there are no emails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
960 | if 'developer_emails' in g_config: |
114afc110afd
- fixed crash on listdevemails if there are no emails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
961 | for dev, emails in g_config['developer_emails'].iteritems(): |
114afc110afd
- fixed crash on listdevemails if there are no emails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
962 | self.privmsg (replyto, 'Emails for %s: %s' % (dev, ', '.join (emails))) |
114afc110afd
- fixed crash on listdevemails if there are no emails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
963 | #done |
31
4e3259daa425
- GOD. DAMNIT. PYTHON.
Teemu Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
964 | else: |
30
114afc110afd
- fixed crash on listdevemails if there are no emails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
965 | self.privmsg (replyto, 'No dev emails.') |
114afc110afd
- fixed crash on listdevemails if there are no emails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
966 | #fi |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
967 | elif command == 'checkhg': |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
968 | check_admin (sender, ident, host, command) |
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
969 | global repocheck_timeout |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
970 | repocheck_timeout = {'zandronum':0, 'zandronum-stable':0, 'zandronum-sandbox':0, 'zandronum-sandbox-stable':0} |
34
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
971 | |
51
b0209b707fa2
- now also tracks sandbox-stable
Teemu Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
972 | for n in ['zandronum-stable', 'zandronum', 'zandronum-sandbox', 'zandronum-sandbox-stable']: |
34
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
973 | numcommits = process_zan_repo_updates (n) |
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
974 | |
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
975 | if numcommits == 0: |
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
976 | self.privmsg (replyto, 'No new commits in ' + n) |
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
977 | #fi |
1a1ee9e8bda6
- be more verbose when .checkhg is used
Teemu Piippo <crimsondusk64@gmail.com>
parents:
33
diff
changeset
|
978 | #done |
6 | 979 | elif command == 'die': |
980 | check_admin (sender, ident, host, command) | |
981 | quit() | |
23
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
982 | elif command == 'convert': |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
983 | if len(args) != 3 or args[1] != 'as': |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
984 | raise logical_exception ("usage: .%s <value> as <valuetype>" % command) |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
985 | |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
986 | value = float (args[0]) |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
987 | valuetype = args[2] |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
988 | |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
989 | if valuetype in ['radians', 'degrees']: |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
990 | if valuetype == 'radians': |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
991 | radvalue = value |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
992 | degvalue = (value * 180.) / math.pi |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
993 | else: |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
994 | radvalue = (value * math.pi) / 180. |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
995 | degvalue = value |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
996 | |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
997 | self.privmsg (replyto, '%s radians, %s degrees (%s)' %(radvalue, degvalue, degvalue % 360.)) |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
998 | elif valuetype in ['celsius', 'fahrenheit']: |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
999 | if valuetype == 'celsius': |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1000 | celvalue = value |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1001 | fahrvalue = value * 1.8 + 32 |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1002 | else: |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1003 | celvalue = (value - 32) / 1.8 |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1004 | fahrvalue = value |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1005 | |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1006 | self.privmsg (replyto, '%s degrees celsius, %s degrees fahrenheit' %(celvalue, fahrvalue)) |
c25944cac3e6
- added .convert with angle and temperature conversions
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
1007 | else: |
24 | 1008 | raise logical_exception ('unknown valuetype, expected one of: degrees, radians (angle conversion), ' + |
1009 | 'celsius, fahrenheit (temperature conversion)') | |
28
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1010 | elif command == 'urban' or command == 'ud': |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1011 | try: |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1012 | if len(args) < 1: |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1013 | raise logical_exception ('usage: %s <word>' % command) |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1014 | |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1015 | url = 'http://api.urbandictionary.com/v0/define?term=%s' % ('%20'.join (args)) |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1016 | response = urllib2.urlopen (url).read() |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1017 | data = json.loads (response) |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1018 | |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1019 | if 'list' in data and len(data['list']) > 0 and 'word' in data['list'][0] and 'definition' in data['list'][0]: |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1020 | word = data['list'][0]['word'] |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1021 | definition = data['list'][0]['definition'].replace ('\r', ' ').replace ('\n', ' ').replace (' ', ' ') |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1022 | up = data['list'][0]['thumbs_up'] |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1023 | down = data['list'][0]['thumbs_down'] |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1024 | self.privmsg (replyto, "\002%s\002: %s\0033 %d\003 up,\0035 %d\003 down" % (word, definition, up, down)) |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1025 | else: |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1026 | self.privmsg (replyto, "couldn't find a definition of \002%s\002" % args[0]) |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1027 | except logical_exception as e: |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1028 | raise e |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1029 | except Exception as e: |
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1030 | raise logical_exception ('Urban dictionary lookup failed: %s' % `e`) |
40
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1031 | elif command == 'hg': |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1032 | check_admin (sender, ident, host, command) |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1033 | |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1034 | if len(args) < 2: |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1035 | raise logical_exception ('usage: %s <repo> <command...>' % command) |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1036 | |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1037 | try: |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1038 | repo = hgapi.Repo (args[0]) |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1039 | result = repo.hg_command (*args[1:]) |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1040 | self.privmsg (replyto, result) |
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1041 | except hgapi.hgapi.HgException as e: |
41 | 1042 | result = decipher_hgapi_error (e) |
1043 | ||
1044 | if result[0]: | |
1045 | self.privmsg (replyto, 'error: %s' % result[1]) | |
1046 | else: | |
44
616743868d4a
- post the raw-form error if unable to decipher
Teemu Piippo <crimsondusk64@gmail.com>
parents:
43
diff
changeset
|
1047 | self.privmsg (replyto, 'error: %s' % `e`) |
41 | 1048 | #fi |
40
f6512aacb114
- fine tuning, added .hg command
Teemu Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
1049 | #tried |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
1050 | # else: |
28
30257c78904f
- added urban dictionary lookup
Teemu Piippo <crimsondusk64@gmail.com>
parents:
27
diff
changeset
|
1051 | # raiee logical_exception ("unknown command `.%s`" % command) |
0 | 1052 | |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1053 | # |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1054 | # Print a ticket announce to appropriate channels |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1055 | # |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1056 | def announce_ticket (self, data): |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1057 | idstring = "%d" % data.id |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1058 | while len(idstring) < 7: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1059 | idstring = "0" + idstring |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1060 | |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1061 | isprivate = data['view_state']['name'] == 'private' |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1062 | reporter = data['reporter']['name'] if hasattr (data['reporter'], 'name') else '<nobody>' |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1063 | |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1064 | for channel in self.cfg['channels']: |
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1065 | if 'btannounce' in channel and channel['btannounce'] == True: |
32
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1066 | if not isprivate or ('btprivate' in channel and channel['btprivate'] == True): |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1067 | self.write ("PRIVMSG %s :[%s] New issue %s, reported by %s: %s: %s" % \ |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1068 | (channel['name'], data['project']['name'], idstring, reporter, |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1069 | data['summary'], self.get_ticket_url (idstring))) |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1070 | #fi |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1071 | #fi |
88899b43810b
- corrected repository handling on error: print errors with commit node and pull even when processing fails
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
1072 | #done |
12
e843c08ee51e
- added mantisbt new ticket announcing
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
1073 | |
0 | 1074 | def handle_error(self): |
1075 | excepterm (traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback)) | |
1076 | ||
1077 | def privmsg (self, channel, msg): | |
1078 | self.write ("PRIVMSG %s :%s" % (channel, msg)) | |
1079 | ||
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1080 | def close_connection (self, message): |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
1081 | if self.flags & CLIF_CONNECTED: |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1082 | self.write ("QUIT :" + message) |
5
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
1083 | self.send_all_now() |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
1084 | self.close() |
b6d2b7de0a6d
- added .restart and .update
Santeri Piippo <crimsondusk64@gmail.com>
parents:
4
diff
changeset
|
1085 | |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1086 | def quit_irc (self): |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1087 | self.close_connection ('Leaving') |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1088 | |
0 | 1089 | def exceptdie (self): |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1090 | self.close_connection ('Caught exception') |
0 | 1091 | |
1092 | def keyboardinterrupt (self): | |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1093 | self.close_connection ('KeyboardInterrupt') |
0 | 1094 | |
1
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
1095 | # |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
1096 | # Main procedure: |
29c7e9d13a30
- fixed up exception handling, no longer connects to every possible connection, rather uses the autoconnect config entry
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
1097 | # |
0 | 1098 | try: |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1099 | for aconn in g_config['autoconnect']: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1100 | for conndata in g_config['connections']: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1101 | if conndata['name'] == aconn: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1102 | irc_client (conndata, 0) |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1103 | break |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1104 | else: |
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1105 | raise logical_exception ("unknown autoconnect entry %s" % (aconn)) |
29
5767ee263b12
- now is able to track zandronum mercurial repositories and react to 'fixes 0001234' trigger messages in them
Teemu Piippo <crimsondusk64@gmail.com>
parents:
28
diff
changeset
|
1106 | |
26
580a2a9fd2e5
- made cobalt die if autoconnect entries cannot be found plus other stuff
Teemu Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
1107 | g_BotActive = True |
0 | 1108 | asyncore.loop() |
1109 | except KeyboardInterrupt: | |
1110 | for client in g_clients: | |
1111 | client.keyboardinterrupt() | |
1112 | quit() |