예제 #1
0
def request_ft_token(auth_code):
    refresh_token = gdal.GOA2GetRefreshToken(auth_code, ft_scope)
    ft_credentials_name = "ft_credentials.json"
    path_credentials = get_credentials_path()
    ft_credentials_path = path_credentials.replace('credentials',
                                                   ft_credentials_name)
    ft_credentials = {'refresh_token': refresh_token}
    with open(ft_credentials_path, 'w') as outfile:
        json.dump(ft_credentials, outfile)  #
예제 #2
0
    def _request_refresh_token(self):
        # create configuration file dir
        config_dir = os.path.dirname(self._config_path)
        if not os.path.isdir(config_dir):
            os.makedirs(config_dir)

        # open browser and ask for authorization
        auth_request_url = gdal.GOA2GetAuthorizationURL(self._scope)
        print(
            'Authorize access to your Fusion Tables, and paste the resulting code below: '
            + auth_request_url)
        # webbrowser.open_new(auth_request_url)

        auth_code = raw_input('Please enter authorization code: ').strip()

        refresh_token = gdal.GOA2GetRefreshToken(auth_code, self._scope)

        # save it
        json.dump({'refresh_token': refresh_token},
                  open(self._config_path, 'w'))

        return refresh_token
예제 #3
0
    elif token_in is None:
        token_in = arg

    else:
        Usage()

    i = i + 1

if command is None:
    command = 'interactive'

if command == 'login':
    print(gdal.GOA2GetAuthorizationURL(scope))
elif command == 'auth2refresh':
    print(gdal.GOA2GetRefreshToken(token_in, scope))
elif command == 'refresh2access':
    print(gdal.GOA2GetAccessToken(token_in, scope))
elif command != 'interactive':
    Usage()
else:
    # Interactive case
    print('Authorization requested for scope:')
    print(scope)
    print('')
    print('Please login and authorize access in web browser...')

    webbrowser.open(gdal.GOA2GetAuthorizationURL(scope))

    time.sleep(2.0)
예제 #4
0
def main(argv):
    scope = SCOPES['ft']
    token_in = None
    command = None

    argv = gdal.GeneralCmdLineProcessor(sys.argv)
    if argv is None:
        return 0

    # Parse command line arguments.
    i = 1
    while i < len(argv):
        arg = argv[i]

        if arg == '-s' and i < len(argv) - 1:
            if argv[i + 1] in SCOPES:
                scope = SCOPES[argv[i + 1]]
            elif argv[i + 1].startswith('http'):
                scope = argv[i + 1]
            else:
                print('Scope %s not recognised.' % argv[i + 1])
                return Usage()
            i = i + 1

        elif arg[0] == '-':
            return Usage()

        elif command is None:
            command = arg

        elif token_in is None:
            token_in = arg

        else:
            return Usage()

        i = i + 1

    if command is None:
        command = 'interactive'

    if command == 'login':
        print(gdal.GOA2GetAuthorizationURL(scope))
    elif command == 'auth2refresh':
        print(gdal.GOA2GetRefreshToken(token_in, scope))
    elif command == 'refresh2access':
        print(gdal.GOA2GetAccessToken(token_in, scope))
    elif command != 'interactive':
        return Usage()
    else:
        # Interactive case
        print('Authorization requested for scope:')
        print(scope)
        print('')
        print('Please login and authorize access in web browser...')

        webbrowser.open(gdal.GOA2GetAuthorizationURL(scope))

        time.sleep(2.0)

        print('')
        print('Enter authorization token:')
        auth_token = sys.stdin.readline()

        refresh_token = gdal.GOA2GetRefreshToken(auth_token, scope)

        print('Refresh Token:' + refresh_token)
        print('')
        if scope == SCOPES['ft']:
            print('Consider setting a configuration option like:')
            print('GFT_REFRESH_TOKEN=' + refresh_token)
        elif scope in (SCOPES['storage'], SCOPES['storage-rw']):
            print('Consider setting a configuration option like:')
            print('GS_OAUTH2_REFRESH_TOKEN=' + refresh_token)