1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 from twisted.spread import pb
18 from twisted.cred import credentials
19 from twisted.internet import reactor
20
22 - def __init__(self, master, auth=('change','changepw'), encoding='utf8'):
23 self.username, self.password = auth
24 self.host, self.port = master.split(":")
25 self.port = int(self.port)
26 self.encoding = encoding
27
28 - def send(self, branch, revision, comments, files, who=None, category=None,
29 when=None, properties={}, repository='', vc=None, project='',
30 revlink='', codebase=None):
31 change = {'project': project, 'repository': repository, 'who': who,
32 'files': files, 'comments': comments, 'branch': branch,
33 'revision': revision, 'category': category, 'when': when,
34 'properties': properties, 'revlink': revlink, 'src': vc}
35
36
37
38 if codebase:
39 change['codebase'] = codebase
40
41 for key in change:
42 if type(change[key]) == str:
43 change[key] = change[key].decode(self.encoding, 'replace')
44 change['files'] = list(change['files'])
45 for i, file in enumerate(change.get('files', [])):
46 if type(file) == str:
47 change['files'][i] = file.decode(self.encoding, 'replace')
48
49 f = pb.PBClientFactory()
50 d = f.login(credentials.UsernamePassword(self.username, self.password))
51 reactor.connectTCP(self.host, self.port, f)
52
53 def call_addChange(remote):
54 d = remote.callRemote('addChange', change)
55 d.addCallback(lambda res: remote.broker.transport.loseConnection())
56 return d
57 d.addCallback(call_addChange)
58
59 return d
60