File: //lib/google-cloud-sdk/lib/surface/auth/print_access_token.py
# -*- coding: utf-8 -*- #
# Copyright 2013 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A command that prints access tokens."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.auth import exceptions as auth_exceptions
from googlecloudsdk.calliope import base
from googlecloudsdk.calliope import exceptions as c_exc
from googlecloudsdk.core.credentials import creds as c_creds
from googlecloudsdk.core.credentials import store as c_store
from oauth2client import client
from google.auth import exceptions as google_auth_exceptions
class DummyCredentials(object):
"""An access token container.
oauth2client and google-auth are both supported by gcloud as the auth library.
credentials in oauth2client store the access token in the "access_token"
filed. google-auth stores it in the "token" filed. We use this dummy
credentials class to unify them.
"""
def __init__(self, token):
self.token = token
class AccessToken(base.Command):
"""Print an access token for the specified account."""
detailed_help = {
'DESCRIPTION': """\
{description}
See [RFC6749](https://tools.ietf.org/html/rfc6749) for more
information about access tokens.
""",
'EXAMPLES': """\
To print access tokens:
$ {command}
""",
}
@staticmethod
def Args(parser):
parser.add_argument(
'account', nargs='?',
help=('Account to get the access token for. If not specified, '
'the current active account will be used.'))
parser.display_info.AddFormat('value(token)')
@c_exc.RaiseErrorInsteadOf(auth_exceptions.AuthenticationError, client.Error,
google_auth_exceptions.GoogleAuthError)
def Run(self, args):
"""Run the helper command."""
cred = c_store.Load(
args.account,
allow_account_impersonation=True,
use_google_auth=True)
c_store.Refresh(cred)
if c_creds.IsOauth2ClientCredentials(cred):
token = cred.access_token
else:
token = cred.token
if not token:
raise auth_exceptions.InvalidCredentialsError(
'No access token could be obtained from the current credentials.')
return DummyCredentials(token)