mirror of
https://github.com/GAM-team/GAM.git
synced 2025-07-10 14:43:34 +00:00
point to create project / check serviceaccount rather than Wiki
This commit is contained in:
27
src/gam.py
27
src/gam.py
@ -89,7 +89,6 @@ GAM_INFO = u'GAM {0} - {1} / {2} / Python {3}.{4}.{5} {6} / {7} {8} /'.format(__
|
|||||||
platform.platform(), platform.machine())
|
platform.platform(), platform.machine())
|
||||||
GAM_RELEASES = u'https://github.com/jay0lee/GAM/releases'
|
GAM_RELEASES = u'https://github.com/jay0lee/GAM/releases'
|
||||||
GAM_WIKI = u'https://github.com/jay0lee/GAM/wiki'
|
GAM_WIKI = u'https://github.com/jay0lee/GAM/wiki'
|
||||||
GAM_WIKI_CREATE_CLIENT_SECRETS = GAM_WIKI+u'/CreatingClientSecretsFile'
|
|
||||||
GAM_ALL_RELEASES = u'https://api.github.com/repos/jay0lee/GAM/releases'
|
GAM_ALL_RELEASES = u'https://api.github.com/repos/jay0lee/GAM/releases'
|
||||||
GAM_LATEST_RELEASE = GAM_ALL_RELEASES+u'/latest'
|
GAM_LATEST_RELEASE = GAM_ALL_RELEASES+u'/latest'
|
||||||
|
|
||||||
@ -334,9 +333,9 @@ MESSAGE_NO_TRANSFER_LACK_OF_DISK_SPACE = u'Cowardly refusing to perform migratio
|
|||||||
MESSAGE_REQUEST_COMPLETED_NO_FILES = u'Request completed but no results/files were returned, try requesting again'
|
MESSAGE_REQUEST_COMPLETED_NO_FILES = u'Request completed but no results/files were returned, try requesting again'
|
||||||
MESSAGE_REQUEST_NOT_COMPLETE = u'Request needs to be completed before downloading, current status is: {0}'
|
MESSAGE_REQUEST_NOT_COMPLETE = u'Request needs to be completed before downloading, current status is: {0}'
|
||||||
MESSAGE_RESULTS_TOO_LARGE_FOR_GOOGLE_SPREADSHEET = u'Results are too large for Google Spreadsheets. Uploading as a regular CSV file.'
|
MESSAGE_RESULTS_TOO_LARGE_FOR_GOOGLE_SPREADSHEET = u'Results are too large for Google Spreadsheets. Uploading as a regular CSV file.'
|
||||||
MESSAGE_SERVICE_NOT_APPLICABLE = u'Service not applicable for this address: {0}'
|
MESSAGE_SERVICE_NOT_APPLICABLE = u'Service not applicable for this address: {0}. Please make sure service is enabled for user and run\n\ngam user <user> check serviceaccount\n\nfor further instructions'
|
||||||
MESSAGE_WIKI_INSTRUCTIONS_OAUTH2SERVICE_JSON = u'Please follow the instructions at this site to setup a Service Account.'
|
MESSAGE_INSTRUCTIONS_OAUTH2SERVICE_JSON = u'Please run\n\ngam create project\ngam user <user> check serviceaccount\n\nto create and configure a service account.'
|
||||||
MESSAGE_OAUTH2SERVICE_JSON_INVALID = u'The file {0} is missing required keys (client_email, client_id or private_key).'
|
MESSAGE_OAUTH2SERVICE_JSON_INVALID = u'The file {0} is missing required keys (client_email, client_id or private_key). Please remove it and recreate with the commands:\n\ngam create project\ngam user <user> check serviceaccount'
|
||||||
# oauth errors
|
# oauth errors
|
||||||
OAUTH2_TOKEN_ERRORS = [u'access_denied', u'unauthorized_client: Unauthorized client or scope in request.', u'access_denied: Requested client not authorized.',
|
OAUTH2_TOKEN_ERRORS = [u'access_denied', u'unauthorized_client: Unauthorized client or scope in request.', u'access_denied: Requested client not authorized.',
|
||||||
u'invalid_grant: Not a valid email.', u'invalid_grant: Invalid email or User ID', u'invalid_grant: Bad Request',
|
u'invalid_grant: Not a valid email.', u'invalid_grant: Invalid email or User ID', u'invalid_grant: Bad Request',
|
||||||
@ -864,8 +863,7 @@ def getSvcAcctCredentials(scopes, act_as):
|
|||||||
if not GM_Globals[GM_OAUTH2SERVICE_JSON_DATA]:
|
if not GM_Globals[GM_OAUTH2SERVICE_JSON_DATA]:
|
||||||
json_string = readFile(GC_Values[GC_OAUTH2SERVICE_JSON], continueOnError=True, displayError=True)
|
json_string = readFile(GC_Values[GC_OAUTH2SERVICE_JSON], continueOnError=True, displayError=True)
|
||||||
if not json_string:
|
if not json_string:
|
||||||
printLine(MESSAGE_WIKI_INSTRUCTIONS_OAUTH2SERVICE_JSON)
|
printLine(MESSAGE_INSTRUCTIONS_OAUTH2SERVICE_JSON)
|
||||||
printLine(GAM_WIKI_CREATE_CLIENT_SECRETS)
|
|
||||||
systemErrorExit(6, None)
|
systemErrorExit(6, None)
|
||||||
GM_Globals[GM_OAUTH2SERVICE_JSON_DATA] = json.loads(json_string)
|
GM_Globals[GM_OAUTH2SERVICE_JSON_DATA] = json.loads(json_string)
|
||||||
credentials = oauth2client.service_account.ServiceAccountCredentials.from_json_keyfile_dict(GM_Globals[GM_OAUTH2SERVICE_JSON_DATA], scopes)
|
credentials = oauth2client.service_account.ServiceAccountCredentials.from_json_keyfile_dict(GM_Globals[GM_OAUTH2SERVICE_JSON_DATA], scopes)
|
||||||
@ -875,8 +873,7 @@ def getSvcAcctCredentials(scopes, act_as):
|
|||||||
GM_Globals[GM_OAUTH2SERVICE_ACCOUNT_CLIENT_ID] = serialization_data[u'client_id']
|
GM_Globals[GM_OAUTH2SERVICE_ACCOUNT_CLIENT_ID] = serialization_data[u'client_id']
|
||||||
return credentials
|
return credentials
|
||||||
except (ValueError, KeyError):
|
except (ValueError, KeyError):
|
||||||
printLine(MESSAGE_WIKI_INSTRUCTIONS_OAUTH2SERVICE_JSON)
|
printLine(MESSAGE_INSTRUCTIONS_OAUTH2SERVICE_JSON)
|
||||||
printLine(GAM_WIKI_CREATE_CLIENT_SECRETS)
|
|
||||||
invalidJSONExit(GC_Values[GC_OAUTH2SERVICE_JSON])
|
invalidJSONExit(GC_Values[GC_OAUTH2SERVICE_JSON])
|
||||||
|
|
||||||
def waitOnFailure(n, retries, errMsg):
|
def waitOnFailure(n, retries, errMsg):
|
||||||
@ -10057,18 +10054,10 @@ def doRequestOAuth(login_hint=None):
|
|||||||
scopes.insert(0, u'email') # Email Display Scope, always included
|
scopes.insert(0, u'email') # Email Display Scope, always included
|
||||||
return (True, u'')
|
return (True, u'')
|
||||||
|
|
||||||
MISSING_CLIENT_SECRETS_MESSAGE = u"""Please configure OAuth 2.0
|
MISSING_CLIENT_SECRETS_MESSAGE = u'''To use GAM you need to create an API project. Please run:
|
||||||
|
|
||||||
To make GAM run you will need to populate the {0} file found at:
|
gam create project
|
||||||
|
'''
|
||||||
{1}
|
|
||||||
|
|
||||||
with information from the APIs Console <https://console.developers.google.com>.
|
|
||||||
|
|
||||||
See this site for instructions:
|
|
||||||
{2}
|
|
||||||
|
|
||||||
""".format(FN_CLIENT_SECRETS_JSON, GC_Values[GC_CLIENT_SECRETS_JSON], GAM_WIKI_CREATE_CLIENT_SECRETS)
|
|
||||||
|
|
||||||
cs_data = readFile(GC_Values[GC_CLIENT_SECRETS_JSON], mode=u'rb', continueOnError=True, displayError=True, encoding=None)
|
cs_data = readFile(GC_Values[GC_CLIENT_SECRETS_JSON], mode=u'rb', continueOnError=True, displayError=True, encoding=None)
|
||||||
if not cs_data:
|
if not cs_data:
|
||||||
|
Reference in New Issue
Block a user