def get_arrays(): """ Gets all the arrays :return: List of arrays in the system """ store = Store(array_config_path(), current_app.logger) array_dict = store.load_arrays() return [a.get_json() for a in array_dict.values()]
def update_array(array_id, json_body=None): """ Update an array in the system. The properties specified in the body will be merged into the array :param array_id: The array id. :param json_body: The properties to be updated. :return: The full array object. """ # We don't allow changing the array id in put. if ArrayContext.ID in json_body: del json_body[ArrayContext.ID] store = Store(array_config_path(), current_app.logger) array_dict = store.load_arrays() if array_id not in array_dict: return make_rest_response( make_error(ErrorCodes.ArrayNotFound.value, "Array not found with id {}".format(array_id)), 404) array = array_dict[array_id] # The user is trying to update the array token/name by passing in username/password? if USERNAME in json_body and PASSWORD in json_body: try: apitoken, array_id, array_name, purity_version = get_array_info( json_body[HOST] if HOST in json_body else array.host, json_body[USERNAME], json_body[PASSWORD]) except Exception as e: return make_rest_response( make_error( ErrorCodes.ArrayError.value, "Error encountered when connecting to the array: {}". format(e)), 400) # The id retrieved from array doesn't match with the original anymore!! if array_id != array.id: return make_rest_response( make_error( ErrorCodes.ArrayIdMismatch.value, "Array id mismatch. Original id = {}, new id fetched from array = {}" .format(array.id, array_id)), 400) del json_body[PASSWORD] json_body.update({ ArrayContext.API_TOKEN: apitoken, ArrayContext.NAME: array_name, ArrayContext.PURITY_VERSION: purity_version }) array.update_config_json(json_body) store.save_array_config(array) return array.get_json()
def update_array(array_id, json_body=None): """ Update an array in the system. The properties specified in the body will be merged into the array :param array_id: The array id. :param json_body: The properties to be updated. :return: The full array object. """ # We don't allow changing the array id in put. if ArrayContext.ID in json_body: del json_body[ArrayContext.ID] store = Store(array_config_path(), current_app.logger) array_dict = store.load_arrays() if array_id not in array_dict: return make_rest_response( make_error(ErrorCodes.ArrayNotFound.value, "Array not found with id {}".format(array_id)), 404) array = array_dict[array_id] # The user is trying to update the array token/name by passing in username/password? if USERNAME in json_body and PASSWORD in json_body: try: apitoken, array_id, array_name, purity_version = get_array_info( json_body[HOST] if HOST in json_body else array.host, json_body[USERNAME], json_body[PASSWORD]) except Exception as e: return make_rest_response( make_error(ErrorCodes.ArrayError.value, "Error encountered when connecting to the array: {}".format(e)), 400) # The id retrieved from array doesn't match with the original anymore!! if array_id != array.id: return make_rest_response( make_error(ErrorCodes.ArrayIdMismatch.value, "Array id mismatch. Original id = {}, new id fetched from array = {}".format(array.id, array_id)), 400) del json_body[PASSWORD] json_body.update({ ArrayContext.API_TOKEN: apitoken, ArrayContext.NAME: array_name, ArrayContext.PURITY_VERSION: purity_version }) array.update_config_json(json_body) store.save_array_config(array) return array.get_json()
def add_array(json_body=None): """ Add an array to the system. The array is specified in the body. :return: The array object added, which contains the array_id which could be used later to delete this array. """ error_data = validate_array_input(json_body) if error_data: return make_rest_response(error_data, 400) try: apitoken, array_id, array_name, purity_version = get_array_info( json_body[HOST], json_body[USERNAME], json_body[PASSWORD]) except Exception as e: return make_rest_response( make_error( ErrorCodes.ArrayError.value, "Error encountered when connecting to the array: {}".format( e)), 400) del json_body[PASSWORD] json_body.update({ ArrayContext.API_TOKEN: apitoken, ArrayContext.NAME: array_name, ArrayContext.ID: array_id, ArrayContext.PURITY_VERSION: purity_version }) store = Store(array_config_path(), current_app.logger) existing_arrays = store.load_arrays() if array_id in existing_arrays: return make_rest_response( make_error( ErrorCodes.ArrayAlreadyExists.value, "Array of the same id already exists with the name '{}'.". format(existing_arrays[array_id].name)), 409) array = ArrayContext() array.update_config_json(json_body) store.save_array_config(array) # Return the array object created. return array.get_json()
def delete_array(array_id): """ Delete an array :param array_id: :return: """ store = Store(array_config_path(), current_app.logger) arrays = store.load_arrays() array_deleted = None if array_id in arrays: array_deleted = arrays[array_id] store.remove_array_config(array_id) return make_rest_response( array_deleted.get_json() if array_deleted else None, 200)
def add_array(json_body=None): """ Add an array to the system. The array is specified in the body. :return: The array object added, which contains the array_id which could be used later to delete this array. """ error_data = validate_array_input(json_body) if error_data: return make_rest_response(error_data, 400) try: apitoken, array_id, array_name, purity_version = get_array_info(json_body[HOST], json_body[USERNAME], json_body[PASSWORD]) except Exception as e: return make_rest_response( make_error(ErrorCodes.ArrayError.value, "Error encountered when connecting to the array: {}".format(e)), 400) del json_body[PASSWORD] json_body.update({ ArrayContext.API_TOKEN: apitoken, ArrayContext.NAME: array_name, ArrayContext.ID: array_id, ArrayContext.PURITY_VERSION: purity_version }) store = Store(array_config_path(), current_app.logger) existing_arrays = store.load_arrays() if array_id in existing_arrays: return make_rest_response( make_error( ErrorCodes.ArrayAlreadyExists.value, "Array of the same id already exists with the name '{}'.".format( existing_arrays[array_id].name)), 409) array = ArrayContext() array.update_config_json(json_body) store.save_array_config(array) # Return the array object created. return array.get_json()