Kiln » Kiln Extensions
Clone URL:  
kilnauth.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# Copyright (C) 2009-2010 Fog Creek Software. All rights reserved. # # To enable the "kilnauth" extension put these lines in your ~/.hgrc: # [extensions] # kilnauth = /path/to/kilnauth.py # # For help on the usage of kilnauth use: # hg help kilnauth # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. '''stores authentication cookies for HTTP repositories This extension knows how to capture Kiln authentication tokens when pushing over HTTP. This means you only need to enter your login and password once; after that, the FogBugz token will be stored in your home directory, allowing pushing without a password. If you ever need to logout of Kiln, simply run ``hg logout'' ''' import os import stat import re from urllib2 import Request from cookielib import MozillaCookieJar, Cookie import sys try: from hashlib import md5 except: # Python 2.4 import md5 from mercurial.i18n import _ import mercurial.url current_user = None def get_cookiejar(ui): global current_user if os.name == 'nt': cookie_path = os.path.expanduser('~\\_hgcookies') else: cookie_path = os.path.expanduser('~/.hgcookies') if not os.path.isdir(cookie_path): if os.path.exists(cookie_path): os.remove(cookie_path) os.mkdir(cookie_path) if os.name == 'posix': os.chmod(cookie_path, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC) cookie_path = os.path.join(cookie_path, md5(current_user).hexdigest()) # Cygwin's Python does not always expanduser() properly... if re.match(r'^[A-Za-z]:', cookie_path) is not None and re.match(r'[A-Za-z]:\\', cookie_path) is None: cookie_path = re.sub(r'([A-Za-z]):', r'\1:\\', cookie_path) try: cj = MozillaCookieJar(cookie_path) if not os.path.exists(cookie_path): cj.save() if os.name == 'posix': os.chmod(cookie_path, stat.S_IREAD | stat.S_IWRITE) cj.load(ignore_discard=True, ignore_expires=True) return cj except IOError, e: ui.warn(_('Cookie file %s exists, but could not be opened.\nContinuing without cookie authentication.\n') % cookie_path) return MozillaCookieJar() def make_cookie(request, name, value): domain = request.get_host() port = None if ':' in domain: domain, port = domain.split(':', 1) if '.' not in domain: domain += ".local" return Cookie(version=0, name=name, value=value, port=port, port_specified=False, domain=domain, domain_specified=False, domain_initial_dot=False, path='/', path_specified=False, secure=False, expires=None, discard=False, comment=None, comment_url=None, rest={}) def get_username(url): url = re.sub(r'https?://', '', url) url = re.sub(r'/.*', '', url) if '@' in url: # There should be some login info # rfind in case it's an email address username = url[:url.rfind('@')] if ':' in username: username = url[:url.find(':')] return username # Didn't find anything... return '' def get_dest(ui): from mercurial.dispatch import _parse try: cmd_info = _parse(ui, sys.argv[1:]) cmd = cmd_info[0] dest = cmd_info[2] if dest: dest = dest[0] elif cmd in ['outgoing', 'push']: dest = 'default-push' else: dest = 'default' except: dest = 'default' return ui.expandpath(dest) def reposetup(ui, repo): global current_user if repo.local(): try: current_user = get_username(get_dest(ui)) except: current_user = '' def extsetup(): global current_user ui = mercurial.ui.ui() current_user = get_username(get_dest(ui)) def open_wrapper(func): def open(*args, **kwargs): if isinstance(args[0], Request): request = args[0] cj = get_cookiejar(ui) cj.set_cookie(make_cookie(args[0], 'fSetNewFogBugzAuthCookie', '1')) cj.add_cookie_header(request) response = func(*args, **kwargs) cj.extract_cookies(response, args[0]) cj.save(ignore_discard=True, ignore_expires=True) else: response = func(*args, **kwargs) return response return open old_opener = mercurial.url.opener def opener(*args, **kwargs): urlopener = old_opener(*args, **kwargs) urlopener.open = open_wrapper(urlopener.open) return urlopener mercurial.url.opener = opener def logout(ui, repo, domain=None): """log out of http repositories Clears the cookies stored for HTTP repositories. If [domain] is specified, only that domain will be logged out. Otherwise, all domains will be logged out. """ cj = get_cookiejar(ui) try: cj.clear(domain=domain) cj.save() except KeyError: ui.write("Not logged in to '%s'\n" % (domain,)) cmdtable = { 'logout': (logout, [], '[domain]') }