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

Unified Diff: depot-tools-auth.py

Issue 1074673002: Add OAuth2 support for end users (i.e. 3-legged flow with the browser). (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: windows lineendings for depot-tools-auth.bat Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « depot-tools-auth.bat ('k') | git_cl.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: depot-tools-auth.py
diff --git a/depot-tools-auth.py b/depot-tools-auth.py
new file mode 100755
index 0000000000000000000000000000000000000000..3ebc239d8753b53911d59755a0f4fcd1b7eb83e1
--- /dev/null
+++ b/depot-tools-auth.py
@@ -0,0 +1,102 @@
+#!/usr/bin/env python
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Manages cached OAuth2 tokens used by other depot_tools scripts.
+
+Usage:
+ depot-tools-auth login codereview.chromium.org
+ depot-tools-auth info codereview.chromium.org
+ depot-tools-auth logout codereview.chromium.org
+"""
+
+import logging
+import optparse
+import sys
+
+from third_party import colorama
+
+import auth
+import subcommand
+
+__version__ = '1.0'
+
+
+@subcommand.usage('<hostname>')
+def CMDlogin(parser, args):
+ """Performs interactive login and caches authentication token."""
+ # Forcefully relogin, revoking previous token.
+ hostname, authenticator = parser.parse_args(args)
+ authenticator.logout()
+ authenticator.login()
+ print_token_info(hostname, authenticator)
+ return 0
+
+
+@subcommand.usage('<hostname>')
+def CMDlogout(parser, args):
+ """Revokes cached authentication token and removes it from disk."""
+ _, authenticator = parser.parse_args(args)
+ done = authenticator.logout()
+ print 'Done.' if done else 'Already logged out.'
+ return 0
+
+
+@subcommand.usage('<hostname>')
+def CMDinfo(parser, args):
+ """Shows email associated with a cached authentication token."""
+ # If no token is cached, AuthenticationError will be caught in 'main'.
+ hostname, authenticator = parser.parse_args(args)
+ print_token_info(hostname, authenticator)
+ return 0
+
+
+def print_token_info(hostname, authenticator):
+ token_info = authenticator.get_token_info()
+ print 'Logged in to %s as %s.' % (hostname, token_info['email'])
+ print ''
+ print 'To login with a different email run:'
+ print ' depot-tools-auth login %s' % hostname
+ print 'To logout and purge the authentication token run:'
+ print ' depot-tools-auth logout %s' % hostname
+
+
+class OptionParser(optparse.OptionParser):
+ def __init__(self, *args, **kwargs):
+ optparse.OptionParser.__init__(
+ self, *args, prog='depot-tools-auth', version=__version__, **kwargs)
+ self.add_option(
+ '-v', '--verbose', action='count', default=0,
+ help='Use 2 times for more debugging info')
+ auth.add_auth_options(self, auth.make_auth_config(use_oauth2=True))
+
+ def parse_args(self, args=None, values=None):
+ """Parses options and returns (hostname, auth.Authenticator object)."""
+ options, args = optparse.OptionParser.parse_args(self, args, values)
+ levels = [logging.WARNING, logging.INFO, logging.DEBUG]
+ logging.basicConfig(level=levels[min(options.verbose, len(levels) - 1)])
+ auth_config = auth.extract_auth_config_from_options(options)
+ if len(args) != 1:
+ self.error('Expecting single argument (hostname).')
+ if not auth_config.use_oauth2:
+ self.error('This command is only usable with OAuth2 authentication')
+ return args[0], auth.get_authenticator_for_host(args[0], auth_config)
+
+
+def main(argv):
+ dispatcher = subcommand.CommandDispatcher(__name__)
+ try:
+ return dispatcher.execute(OptionParser(), argv)
+ except auth.AuthenticationError as e:
+ print >> sys.stderr, e
+ return 1
+
+
+if __name__ == '__main__':
+ colorama.init()
+ try:
+ sys.exit(main(sys.argv[1:]))
+ except KeyboardInterrupt:
+ sys.stderr.write('interrupted\n')
+ sys.exit(1)
« no previous file with comments | « depot-tools-auth.bat ('k') | git_cl.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698