|
| 1 | +# Copyright 2018 Google Inc. All rights reserved. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +"""Client for interacting with the Reauth HTTP API. |
| 16 | +
|
| 17 | +This module provides the ability to do the following with the API: |
| 18 | +
|
| 19 | +1. Get a list of challenges needed to obtain additional authorization. |
| 20 | +2. Send the result of the challenge to obtain a rapt token. |
| 21 | +3. A modified version of the standard OAuth2.0 refresh grant that takes a rapt |
| 22 | + token. |
| 23 | +""" |
| 24 | + |
| 25 | +import json |
| 26 | + |
| 27 | +from six.moves import urllib |
| 28 | + |
| 29 | +from google_reauth import errors |
| 30 | + |
| 31 | +_REAUTH_API = 'https://reauth.googleapis.com/v2/sessions' |
| 32 | + |
| 33 | + |
| 34 | +def _handle_errors(msg): |
| 35 | + """Raise an exception if msg has errors. |
| 36 | +
|
| 37 | + Args: |
| 38 | + msg: parsed json from http response. |
| 39 | +
|
| 40 | + Returns: input response. |
| 41 | + Raises: ReauthAPIError |
| 42 | + """ |
| 43 | + if 'error' in msg: |
| 44 | + raise errors.ReauthAPIError(msg['error']['message']) |
| 45 | + return msg |
| 46 | + |
| 47 | + |
| 48 | +def _endpoint_request(http_request, path, body, access_token): |
| 49 | + _, content = http_request( |
| 50 | + uri='{0}{1}'.format(_REAUTH_API, path), |
| 51 | + method='POST', |
| 52 | + body=json.dumps(body), |
| 53 | + headers={'Authorization': 'Bearer {0}'.format(access_token)} |
| 54 | + ) |
| 55 | + response = json.loads(content) |
| 56 | + _handle_errors(response) |
| 57 | + return response |
| 58 | + |
| 59 | + |
| 60 | +def get_challenges( |
| 61 | + http_request, supported_challenge_types, access_token, |
| 62 | + requested_scopes=None): |
| 63 | + """Does initial request to reauth API to get the challenges. |
| 64 | +
|
| 65 | + Args: |
| 66 | + http_request (Callable): callable to run http requests. Accepts uri, |
| 67 | + method, body and headers. Returns a tuple: (response, content) |
| 68 | + supported_challenge_types (Sequence[str]): list of challenge names |
| 69 | + supported by the manager. |
| 70 | + access_token (str): Access token with reauth scopes. |
| 71 | + requested_scopes (list[str]): Authorized scopes for the credentials. |
| 72 | +
|
| 73 | + Returns: |
| 74 | + dict: The response from the reauth API. |
| 75 | + """ |
| 76 | + body = {'supportedChallengeTypes': supported_challenge_types} |
| 77 | + if requested_scopes: |
| 78 | + body['oauthScopesForDomainPolicyLookup'] = requested_scopes |
| 79 | + |
| 80 | + return _endpoint_request( |
| 81 | + http_request, ':start', body, access_token) |
| 82 | + |
| 83 | + |
| 84 | +def send_challenge_result( |
| 85 | + http_request, session_id, challenge_id, client_input, access_token): |
| 86 | + """Attempt to refresh access token by sending next challenge result. |
| 87 | +
|
| 88 | + Args: |
| 89 | + http_request (Callable): callable to run http requests. Accepts uri, |
| 90 | + method, body and headers. Returns a tuple: (response, content) |
| 91 | + session_id (str): session id returned by the initial reauth call. |
| 92 | + challenge_id (str): challenge id returned by the initial reauth call. |
| 93 | + client_input: dict with a challenge-specific client input. For example: |
| 94 | + ``{'credential': password}`` for password challenge. |
| 95 | + access_token (str): Access token with reauth scopes. |
| 96 | +
|
| 97 | + Returns: |
| 98 | + dict: The response from the reauth API. |
| 99 | + """ |
| 100 | + body = { |
| 101 | + 'sessionId': session_id, |
| 102 | + 'challengeId': challenge_id, |
| 103 | + 'action': 'RESPOND', |
| 104 | + 'proposalResponse': client_input, |
| 105 | + } |
| 106 | + |
| 107 | + return _endpoint_request( |
| 108 | + http_request, '/{0}:continue'.format(session_id), body, access_token) |
| 109 | + |
| 110 | + |
| 111 | +def refresh_grant( |
| 112 | + http_request, client_id, client_secret, refresh_token, |
| 113 | + token_uri, scopes=None, rapt=None, headers={}): |
| 114 | + """Implements the OAuth 2.0 Refresh Grant with the addition of the reauth |
| 115 | + token. |
| 116 | +
|
| 117 | + Args: |
| 118 | + http_request (Callable): callable to run http requests. Accepts uri, |
| 119 | + method, body and headers. Returns a tuple: (response, content) |
| 120 | + client_id (str): client id to get access token for reauth scope. |
| 121 | + client_secret (str): client secret for the client_id |
| 122 | + refresh_token (str): refresh token to refresh access token |
| 123 | + token_uri (str): uri to refresh access token |
| 124 | + scopes (str): scopes required by the client application as a |
| 125 | + comma-joined list. |
| 126 | + rapt (str): RAPT token |
| 127 | + headers (dict): headers for http request |
| 128 | +
|
| 129 | + Returns: |
| 130 | + Tuple[str, dict]: http response and parsed response content. |
| 131 | + """ |
| 132 | + parameters = { |
| 133 | + 'grant_type': 'refresh_token', |
| 134 | + 'client_id': client_id, |
| 135 | + 'client_secret': client_secret, |
| 136 | + 'refresh_token': refresh_token, |
| 137 | + 'scope': scopes, |
| 138 | + 'rapt': rapt, |
| 139 | + } |
| 140 | + |
| 141 | + body = urllib.parse.urlencode(parameters) |
| 142 | + |
| 143 | + response, content = http_request( |
| 144 | + uri=token_uri, |
| 145 | + method='POST', |
| 146 | + body=body, |
| 147 | + headers=headers) |
| 148 | + return response, content |
0 commit comments