Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: gerrit_util.py

Issue 1882583003: Gerrit git cl upload: add check for missing credentials. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@R250
Patch Set: and fix pylint + proper mocks Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | git_cl.py » ('j') | git_cl.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """ 5 """
6 Utilities for requesting information for a gerrit server via https. 6 Utilities for requesting information for a gerrit server via https.
7 7
8 https://gerrit-review.googlesource.com/Documentation/rest-api.html 8 https://gerrit-review.googlesource.com/Documentation/rest-api.html
9 """ 9 """
10 10
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 76
77 @staticmethod 77 @staticmethod
78 def get(): 78 def get():
79 """Returns: (Authenticator) The identified Authenticator to use. 79 """Returns: (Authenticator) The identified Authenticator to use.
80 80
81 Probes the local system and its environment and identifies the 81 Probes the local system and its environment and identifies the
82 Authenticator instance to use. 82 Authenticator instance to use.
83 """ 83 """
84 if GceAuthenticator.is_gce(): 84 if GceAuthenticator.is_gce():
85 return GceAuthenticator() 85 return GceAuthenticator()
86 return NetrcAuthenticator() 86 return CookiesAuthenticator()
87 87
88 88
89 class NetrcAuthenticator(Authenticator): 89 class CookiesAuthenticator(Authenticator):
90 """Authenticator implementation that uses ".netrc" for token. 90 """Authenticator implementation that uses ".netrc" or ".gitcookies" for token.
91
92 Expected case for developer workstations.
91 """ 93 """
92 94
93 def __init__(self): 95 def __init__(self):
94 self.netrc = self._get_netrc() 96 self.netrc = self._get_netrc()
95 self.gitcookies = self._get_gitcookies() 97 self.gitcookies = self._get_gitcookies()
96 98
97 @staticmethod 99 @classmethod
98 def _get_netrc(): 100 def get_new_password_message(cls, host):
101 # Assume *.googlesource.com pattern.
102 parts = host.split('.')
103 if not parts[0].endswith('-review'):
104 parts[0] = parts[0] + '-review'
Michael Achenbach 2016/04/13 10:29:13 I'm a fan of parts[0] += '-review' up to you
Paweł Hajdan Jr. 2016/04/13 11:41:52 +1
tandrii(chromium) 2016/04/13 11:55:58 Done.
105 url = 'https://%s/new-password' % ('.'.join(parts))
Michael Achenbach 2016/04/13 10:29:13 Maybe assert not host.startswith('http') I know i
106 return 'You can (re)generate your credentails by visiting %s' % url
107
108 @classmethod
109 def get_netrc_path(cls):
99 path = '_netrc' if sys.platform.startswith('win') else '.netrc' 110 path = '_netrc' if sys.platform.startswith('win') else '.netrc'
100 path = os.path.expanduser(os.path.join('~', path)) 111 return os.path.expanduser(os.path.join('~', path))
112
113 @classmethod
114 def _get_netrc(cls):
115 path = cls.get_netrc_path()
116 if not os.path.exists(path):
117 return netrc.netrc(os.devnull)
118
101 try: 119 try:
102 return netrc.netrc(path) 120 return netrc.netrc(path)
103 except IOError: 121 except IOError:
104 print >> sys.stderr, 'WARNING: Could not read netrc file %s' % path 122 print >> sys.stderr, 'WARNING: Could not read netrc file %s' % path
105 return netrc.netrc(os.devnull) 123 return netrc.netrc(os.devnull)
106 except netrc.NetrcParseError as e: 124 except netrc.NetrcParseError:
107 st = os.stat(e.path) 125 st = os.stat(path)
108 if st.st_mode & (stat.S_IRWXG | stat.S_IRWXO): 126 if st.st_mode & (stat.S_IRWXG | stat.S_IRWXO):
109 print >> sys.stderr, ( 127 print >> sys.stderr, (
110 'WARNING: netrc file %s cannot be used because its file ' 128 'WARNING: netrc file %s cannot be used because its file '
111 'permissions are insecure. netrc file permissions should be ' 129 'permissions are insecure. netrc file permissions should be '
112 '600.' % path) 130 '600.' % path)
113 else: 131 else:
114 print >> sys.stderr, ('ERROR: Cannot use netrc file %s due to a ' 132 print >> sys.stderr, ('ERROR: Cannot use netrc file %s due to a '
115 'parsing error.' % path) 133 'parsing error.' % path)
116 raise 134 raise
117 return netrc.netrc(os.devnull) 135 return netrc.netrc(os.devnull)
118 136
119 @staticmethod 137 @classmethod
120 def _get_gitcookies(): 138 def get_gitcookies_path(cls):
139 return os.path.join(os.environ['HOME'], '.gitcookies')
140
141 @classmethod
142 def _get_gitcookies(cls):
121 gitcookies = {} 143 gitcookies = {}
122 path = os.path.join(os.environ['HOME'], '.gitcookies') 144 path = cls.get_gitcookies_path()
145 if not os.path.exists(path):
146 return gitcookies
147
123 try: 148 try:
124 f = open(path, 'rb') 149 f = open(path, 'rb')
125 except IOError: 150 except IOError:
126 return gitcookies 151 return gitcookies
127 152
128 with f: 153 with f:
129 for line in f: 154 for line in f:
130 try: 155 try:
131 fields = line.strip().split('\t') 156 fields = line.strip().split('\t')
132 if line.strip().startswith('#') or len(fields) != 7: 157 if line.strip().startswith('#') or len(fields) != 7:
(...skipping 13 matching lines...) Expand all
146 if cookielib.domain_match(host, domain): 171 if cookielib.domain_match(host, domain):
147 auth = (creds[0], None, creds[1]) 172 auth = (creds[0], None, creds[1])
148 break 173 break
149 174
150 if not auth: 175 if not auth:
151 auth = self.netrc.authenticators(host) 176 auth = self.netrc.authenticators(host)
152 if auth: 177 if auth:
153 return 'Basic %s' % (base64.b64encode('%s:%s' % (auth[0], auth[2]))) 178 return 'Basic %s' % (base64.b64encode('%s:%s' % (auth[0], auth[2])))
154 return None 179 return None
155 180
181 # Backwards compatibility just in case somebody imports this outside of
182 # depot_tools.
183 NetrcAuthenticator = CookiesAuthenticator
Michael Achenbach 2016/04/13 10:29:13 Optional: Maybe let the NetrcAuthenticator print a
tandrii(chromium) 2016/04/13 11:55:58 skipping because depot_tool will always be now a c
184
156 185
157 class GceAuthenticator(Authenticator): 186 class GceAuthenticator(Authenticator):
158 """Authenticator implementation that uses GCE metadata service for token. 187 """Authenticator implementation that uses GCE metadata service for token.
159 """ 188 """
160 189
161 _INFO_URL = 'http://metadata.google.internal' 190 _INFO_URL = 'http://metadata.google.internal'
162 _ACQUIRE_URL = ('http://metadata/computeMetadata/v1/instance/' 191 _ACQUIRE_URL = ('http://metadata/computeMetadata/v1/instance/'
163 'service-accounts/default/token') 192 'service-accounts/default/token')
164 _ACQUIRE_HEADERS = {"Metadata-Flavor": "Google"} 193 _ACQUIRE_HEADERS = {"Metadata-Flavor": "Google"}
165 194
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 username = review.get('email', jmsg.get('name', '')) 634 username = review.get('email', jmsg.get('name', ''))
606 raise GerritError(200, 'Unable to set %s label for user "%s"' 635 raise GerritError(200, 'Unable to set %s label for user "%s"'
607 ' on change %s.' % (label, username, change)) 636 ' on change %s.' % (label, username, change))
608 jmsg = GetChangeCurrentRevision(host, change) 637 jmsg = GetChangeCurrentRevision(host, change)
609 if not jmsg: 638 if not jmsg:
610 raise GerritError( 639 raise GerritError(
611 200, 'Could not get review information for change "%s"' % change) 640 200, 'Could not get review information for change "%s"' % change)
612 elif jmsg[0]['current_revision'] != revision: 641 elif jmsg[0]['current_revision'] != revision:
613 raise GerritError(200, 'While resetting labels on change "%s", ' 642 raise GerritError(200, 'While resetting labels on change "%s", '
614 'a new patchset was uploaded.' % change) 643 'a new patchset was uploaded.' % change)
OLDNEW
« no previous file with comments | « no previous file | git_cl.py » ('j') | git_cl.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698