Search in sources :

Example 1 with STATUS_EMPTY_RESPONSE_ERROR

use of net.osmand.plus.backup.BackupHelper.STATUS_EMPTY_RESPONSE_ERROR in project Osmand by osmandapp.

the class DeleteAllFilesCommand method getDeleteAllFilesListener.

private OnRequestResultListener getDeleteAllFilesListener() {
    return (resultJson, error, resultCode) -> {
        int status;
        String message;
        List<RemoteFile> remoteFiles = new ArrayList<>();
        if (!Algorithms.isEmpty(error)) {
            status = STATUS_SERVER_ERROR;
            message = "Download file list error: " + new BackupError(error);
        } else if (!Algorithms.isEmpty(resultJson)) {
            try {
                JSONObject result = new JSONObject(resultJson);
                JSONArray files = result.getJSONArray("allFiles");
                for (int i = 0; i < files.length(); i++) {
                    remoteFiles.add(new RemoteFile(files.getJSONObject(i)));
                }
                status = STATUS_SUCCESS;
                message = "OK";
            } catch (JSONException e) {
                status = STATUS_PARSE_JSON_ERROR;
                message = "Download file list error: json parsing";
            }
        } else {
            status = STATUS_EMPTY_RESPONSE_ERROR;
            message = "Download file list error: empty response";
        }
        if (status != STATUS_SUCCESS) {
            publishProgress(status, message);
        } else {
            List<RemoteFile> filesToDelete = new ArrayList<>();
            if (types != null) {
                for (RemoteFile file : remoteFiles) {
                    ExportSettingsType exportType = ExportSettingsType.getExportSettingsTypeForRemoteFile(file);
                    if (types.contains(exportType)) {
                        filesToDelete.add(file);
                    }
                }
            } else {
                filesToDelete.addAll(remoteFiles);
            }
            if (!filesToDelete.isEmpty()) {
                publishProgress(filesToDelete);
                deleteFiles(filesToDelete);
            } else {
                publishProgress(Collections.emptyMap());
            }
        }
    };
}
Also used : BackupHelper(net.osmand.plus.backup.BackupHelper) OnRequestResultListener(net.osmand.plus.utils.AndroidNetworkUtils.OnRequestResultListener) STATUS_EMPTY_RESPONSE_ERROR(net.osmand.plus.backup.BackupHelper.STATUS_EMPTY_RESPONSE_ERROR) STATUS_SUCCESS(net.osmand.plus.backup.BackupHelper.STATUS_SUCCESS) NonNull(androidx.annotation.NonNull) LIST_FILES_URL(net.osmand.plus.backup.BackupHelper.LIST_FILES_URL) HashMap(java.util.HashMap) OnDeleteFilesListener(net.osmand.plus.backup.BackupListeners.OnDeleteFilesListener) BackupError(net.osmand.plus.backup.BackupError) AndroidNetworkUtils(net.osmand.plus.utils.AndroidNetworkUtils) ExportSettingsType(net.osmand.plus.settings.backend.ExportSettingsType) ArrayList(java.util.ArrayList) STATUS_PARSE_JSON_ERROR(net.osmand.plus.backup.BackupHelper.STATUS_PARSE_JSON_ERROR) JSONException(org.json.JSONException) List(java.util.List) Nullable(androidx.annotation.Nullable) JSONObject(org.json.JSONObject) STATUS_SERVER_ERROR(net.osmand.plus.backup.BackupHelper.STATUS_SERVER_ERROR) Map(java.util.Map) Algorithms(net.osmand.util.Algorithms) RemoteFile(net.osmand.plus.backup.RemoteFile) Collections(java.util.Collections) JSONArray(org.json.JSONArray) JSONObject(org.json.JSONObject) JSONArray(org.json.JSONArray) JSONException(org.json.JSONException) ArrayList(java.util.ArrayList) List(java.util.List) BackupError(net.osmand.plus.backup.BackupError) RemoteFile(net.osmand.plus.backup.RemoteFile) ExportSettingsType(net.osmand.plus.settings.backend.ExportSettingsType)

Example 2 with STATUS_EMPTY_RESPONSE_ERROR

use of net.osmand.plus.backup.BackupHelper.STATUS_EMPTY_RESPONSE_ERROR in project Osmand by osmandapp.

the class DeleteOldFilesCommand method getDeleteOldFilesListener.

private OnRequestResultListener getDeleteOldFilesListener() {
    return (resultJson, error, resultCode) -> {
        int status;
        String message;
        List<RemoteFile> remoteFiles = new ArrayList<>();
        if (!Algorithms.isEmpty(error)) {
            status = STATUS_SERVER_ERROR;
            message = "Download file list error: " + new BackupError(error);
        } else if (!Algorithms.isEmpty(resultJson)) {
            try {
                JSONObject result = new JSONObject(resultJson);
                JSONArray allFiles = result.getJSONArray("allFiles");
                for (int i = 0; i < allFiles.length(); i++) {
                    remoteFiles.add(new RemoteFile(allFiles.getJSONObject(i)));
                }
                JSONArray uniqueFiles = result.getJSONArray("uniqueFiles");
                for (int i = 0; i < uniqueFiles.length(); i++) {
                    remoteFiles.remove(new RemoteFile(uniqueFiles.getJSONObject(i)));
                }
                status = STATUS_SUCCESS;
                message = "OK";
            } catch (JSONException e) {
                status = STATUS_PARSE_JSON_ERROR;
                message = "Download file list error: json parsing";
            }
        } else {
            status = STATUS_EMPTY_RESPONSE_ERROR;
            message = "Download file list error: empty response";
        }
        if (status != STATUS_SUCCESS) {
            publishProgress(status, message);
        } else {
            List<RemoteFile> filesToDelete = new ArrayList<>();
            if (types != null) {
                for (RemoteFile file : remoteFiles) {
                    ExportSettingsType exportType = ExportSettingsType.getExportSettingsTypeForRemoteFile(file);
                    if (types.contains(exportType)) {
                        filesToDelete.add(file);
                    }
                }
            } else {
                filesToDelete.addAll(remoteFiles);
            }
            if (!filesToDelete.isEmpty()) {
                publishProgress(filesToDelete);
                deleteFiles(filesToDelete);
            } else {
                publishProgress(Collections.emptyMap());
            }
        }
    };
}
Also used : BackupHelper(net.osmand.plus.backup.BackupHelper) OnRequestResultListener(net.osmand.plus.utils.AndroidNetworkUtils.OnRequestResultListener) STATUS_EMPTY_RESPONSE_ERROR(net.osmand.plus.backup.BackupHelper.STATUS_EMPTY_RESPONSE_ERROR) STATUS_SUCCESS(net.osmand.plus.backup.BackupHelper.STATUS_SUCCESS) NonNull(androidx.annotation.NonNull) LIST_FILES_URL(net.osmand.plus.backup.BackupHelper.LIST_FILES_URL) HashMap(java.util.HashMap) OnDeleteFilesListener(net.osmand.plus.backup.BackupListeners.OnDeleteFilesListener) BackupError(net.osmand.plus.backup.BackupError) AndroidNetworkUtils(net.osmand.plus.utils.AndroidNetworkUtils) ExportSettingsType(net.osmand.plus.settings.backend.ExportSettingsType) ArrayList(java.util.ArrayList) STATUS_PARSE_JSON_ERROR(net.osmand.plus.backup.BackupHelper.STATUS_PARSE_JSON_ERROR) JSONException(org.json.JSONException) List(java.util.List) Nullable(androidx.annotation.Nullable) JSONObject(org.json.JSONObject) STATUS_SERVER_ERROR(net.osmand.plus.backup.BackupHelper.STATUS_SERVER_ERROR) Map(java.util.Map) Algorithms(net.osmand.util.Algorithms) RemoteFile(net.osmand.plus.backup.RemoteFile) Collections(java.util.Collections) JSONArray(org.json.JSONArray) JSONObject(org.json.JSONObject) JSONArray(org.json.JSONArray) JSONException(org.json.JSONException) ArrayList(java.util.ArrayList) List(java.util.List) BackupError(net.osmand.plus.backup.BackupError) RemoteFile(net.osmand.plus.backup.RemoteFile) ExportSettingsType(net.osmand.plus.settings.backend.ExportSettingsType)

Aggregations

NonNull (androidx.annotation.NonNull)2 Nullable (androidx.annotation.Nullable)2 ArrayList (java.util.ArrayList)2 Collections (java.util.Collections)2 HashMap (java.util.HashMap)2 List (java.util.List)2 Map (java.util.Map)2 BackupError (net.osmand.plus.backup.BackupError)2 BackupHelper (net.osmand.plus.backup.BackupHelper)2 LIST_FILES_URL (net.osmand.plus.backup.BackupHelper.LIST_FILES_URL)2 STATUS_EMPTY_RESPONSE_ERROR (net.osmand.plus.backup.BackupHelper.STATUS_EMPTY_RESPONSE_ERROR)2 STATUS_PARSE_JSON_ERROR (net.osmand.plus.backup.BackupHelper.STATUS_PARSE_JSON_ERROR)2 STATUS_SERVER_ERROR (net.osmand.plus.backup.BackupHelper.STATUS_SERVER_ERROR)2 STATUS_SUCCESS (net.osmand.plus.backup.BackupHelper.STATUS_SUCCESS)2 OnDeleteFilesListener (net.osmand.plus.backup.BackupListeners.OnDeleteFilesListener)2 RemoteFile (net.osmand.plus.backup.RemoteFile)2 ExportSettingsType (net.osmand.plus.settings.backend.ExportSettingsType)2 AndroidNetworkUtils (net.osmand.plus.utils.AndroidNetworkUtils)2 OnRequestResultListener (net.osmand.plus.utils.AndroidNetworkUtils.OnRequestResultListener)2 Algorithms (net.osmand.util.Algorithms)2