def edit_config_with_jwt(jwt, config_file_path): user = uploader.get_user(jwt) user_permission_hash, user_signature_hash = uploader.get_user_hashes( user['key'], jwt) user_items = {} user_items["MAPSettingsUsername"] = user['username'] user_items["MAPSettingsUserKey"] = user['key'] user_items["user_upload_token"] = jwt user_items["user_permission_hash"] = user_permission_hash user_items["user_signature_hash"] = user_signature_hash config.update_config(config_file_path, user['username'], user_items)
def edit_config(config_file=None): config_file_path = config_file if config_file else GLOBAL_CONFIG_FILEPATH if not os.path.isfile(config_file_path): create_config = raw_input( "Config file " + config_file_path + " does not exist, create one?") if create_config in ["y", "Y", "yes", "Yes"]: config.create_config(config_file_path) else: print( "Config file to be edited does not exist and is not to be created, exiting...") sys.exit() # config file must exist at this step # load config_object = config.load_config(config_file_path) # prompt for section section = raw_input( "Enter the Mapillary user name you would like to (re)authenticate : ") # safety check if section exists, otherwise add it if section in config_object.sections(): print("Warning, user name exists with the following items : ") print(config.load_user(config_object, section)) sure = raw_input( "Are you sure you would like to re-authenticate[y,Y,yes,Yes]?(current parameters will be overwritten)") if sure not in ["y", "Y", "yes", "Yes"]: print("Aborting re-authentication. If you would like to re-authenticate user name {}, rerun this command and confirm re-authentication.".format(section)) sys.exit() else: config_object.add_section(section) # fill in the items and save user_items = uploader.prompt_user_for_user_items(section) if not user_items: print("Authentication failed for user name " + section + ", please try again.") sys.exit() config.update_config( config_file_path, section, user_items)
def edit_config(config_file=None, user_name=None, user_email=None, user_password=None, jwt=None, force_overwrite=False, user_key=None): config_file_path = config_file if config_file else GLOBAL_CONFIG_FILEPATH if not os.path.isfile(config_file_path): config.create_config(config_file_path) if jwt: try: edit_config_with_jwt(jwt, config_file_path) except Exception as e: print('Error: %s' % e) sys.exit(1) return user_items = {} if user_key and user_name: #Manually add user_key user_items["MAPSettingsUsername"] = "******" user_items["MAPSettingsUserKey"] = user_key user_items["user_upload_token"] = "Dummy_upload_token" user_items["user_permission_hash"] = "Dummy_user_permission_hash" user_items["user_signature_hash"] = "Dummy_user_signature_hash" section = user_name config.update_config(config_file_path, section, user_items) return # config file must exist at this step # load config_object = config.load_config(config_file_path) section = user_name if not section: section = raw_input( "Enter the Mapillary user name you would like to (re)authenticate : ") # safety check if section exists, otherwise add it if section in config_object.sections(): if not force_overwrite: print("Warning, user name exists with the following items : ") print(config.load_user(config_object, section)) sure = raw_input( "Are you sure you would like to re-authenticate[y,Y,yes,Yes]?(current parameters will be overwritten)") if sure not in ["y", "Y", "yes", "Yes"]: print("Aborting re-authentication. If you would like to re-authenticate user name {}, rerun this command and confirm re-authentication.".format(section)) sys.exit() else: config_object.add_section(section) if user_email and user_password: user_key = uploader.get_user_key(section) if not user_key: print("User name {} does not exist, please try again or contact Mapillary user support.".format( section)) sys.exit(1) upload_token = uploader.get_upload_token(user_email, user_password) if not upload_token: print("Authentication failed for user name " + section + ", please try again.") sys.exit(1) user_permission_hash, user_signature_hash = uploader.get_user_hashes( user_key, upload_token) user_items["MAPSettingsUsername"] = section user_items["MAPSettingsUserKey"] = user_key user_items["user_upload_token"] = upload_token user_items["user_permission_hash"] = user_permission_hash user_items["user_signature_hash"] = user_signature_hash else: # fill in the items and save user_items = uploader.prompt_user_for_user_items(section) if not user_items: print("Authentication failed for user name " + section + ", please try again.") sys.exit(1) config.update_config(config_file_path, section, user_items)
def edit_config(config_file=None, user_name=None, user_email=None, user_password=None, jwt=None, force_overwrite=False, user_key=None,api_version=1.0, upload_type='Video'): config_file_path = config_file if config_file else GLOBAL_CONFIG_FILEPATH if not os.path.isfile(config_file_path): config.create_config(config_file_path) if jwt: try: edit_config_with_jwt(jwt, config_file_path) except Exception as e: print('Error: %s' % e) sys.exit(1) return user_items = {} if user_key and user_name: # Manually add user_key user_items["MAPSettingsUsername"] = "******" user_items["MAPSettingsUserKey"] = user_key user_items["user_upload_token"] = "Dummy_upload_token" user_items["user_permission_hash"] = "Dummy_user_permission_hash" user_items["user_signature_hash"] = "Dummy_user_signature_hash" section = user_name config.update_config(config_file_path, section, user_items) return # config file must exist at this step # load config_object = config.load_config(config_file_path) section = user_name if not section: section = raw_input( "Enter the Mapillary user name you would like to (re)authenticate : ") # safety check if section exists, otherwise add it if section in config_object.sections(): if not force_overwrite: print("Warning, user name exists with the following items : ") print(config.load_user(config_object, section)) sure = raw_input( "Are you sure you would like to re-authenticate[y,Y,yes,Yes]?(current parameters will be overwritten)") if sure not in ["y", "Y", "yes", "Yes"]: print("Aborting re-authentication. If you would like to re-authenticate user name {}, rerun this command and confirm re-authentication.".format(section)) sys.exit() else: config_object.add_section(section) if user_email and user_password: user_key = uploader.get_user_key(section) if not user_key: print("User name {} does not exist, please try again or contact Mapillary user support.".format( section)) sys.exit(1) upload_token = uploader.get_upload_token(user_email, user_password) if not upload_token: print("Authentication failed for user name " + section + ", please try again.") sys.exit(1) user_permission_hash, user_signature_hash = uploader.get_user_hashes( user_key, upload_token) user_items["MAPSettingsUsername"] = section user_items["MAPSettingsUserKey"] = user_key user_items["user_upload_token"] = upload_token user_items["user_permission_hash"] = user_permission_hash user_items["user_signature_hash"] = user_signature_hash if api_version == 2.0: user_items["upload_url"] = uploader.get_upload_url( user_email, user_password, upload_type) else: # fill in the items and save user_items = uploader.prompt_user_for_user_items(section) if not user_items: print("Authentication failed for user name " + section + ", please try again.") sys.exit(1) config.update_config(config_file_path, section, user_items)