
function fileQueued(file) {
	try {
		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.pending'));
		progress.toggleCancel(true, this);
	}
	catch(e) {
		this.debug(e);
	}
}

function fileQueueError(file, errorCode, message) {
	try {
		if (errorCode === SWFUpload.QUEUE_ERROR.QUEUE_LIMIT_EXCEEDED) {
			alert(p2.Utils.getMsg('p2.field.batchUpload.queueError', [this.settings['file_upload_limit']]));
			return;
		}

		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setError();
		progress.toggleCancel(false);

		switch (errorCode) {
		case SWFUpload.QUEUE_ERROR.FILE_EXCEEDS_SIZE_LIMIT:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.exceedFileSizeLimit'));
			this.debug("Error Code: File too big, File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		case SWFUpload.QUEUE_ERROR.ZERO_BYTE_FILE:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.zeroFileSize'));
			this.debug("Error Code: Zero byte file, File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		case SWFUpload.QUEUE_ERROR.INVALID_FILETYPE:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.invalidFileType'));
			this.debug("Error Code: Invalid File Type, File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		default:
			if (file !== null) {
				progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.unknown'));
			}
			this.debug("Error Code: " + errorCode + ", File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		}
	}
	catch(e) {
		this.debug(e);
  }
}

function fileDialogComplete(numFilesSelected, numFilesQueued) {
	try {
		if (numFilesSelected > 0) {
			// $(this.customSettings.cancelButtonId).show();
			// $(this.customSettings.startUploadButtonId).show();
			// this.setButtonDisabled(true);
		}

		// I want auto start the upload and I can do that here
		// this.startUpload();
	}
	catch(e) {
		this.debug(e);
	}
}

function uploadStart(file) {
	try {
		/* I don't want to do any file validation or anything,  I'll just update the UI and
		return true to indicate that the upload should start.
		It's important to update the UI here because in Linux no uploadProgress events are called. The best
		we can do is say we are uploading.
		 */
		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.uploading'));
		progress.toggleCancel(true, this);
	}
	catch (ex) {}

	return true;
}

function uploadProgress(file, bytesLoaded, bytesTotal) {
	try {
		var percent = Math.ceil((bytesLoaded / bytesTotal) * 100);

		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setProgress(percent);
		progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.uploading'));
	}
	catch (e) {
		this.debug(e);
	}
}

function uploadSuccess(file, serverData) {
	try {
		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setComplete();
		progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.complete'));
		progress.toggleCancel(false);
	}
	catch(e){
		this.debug(e);
	}
}

function uploadError(file, errorCode, message) {
	try {
		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setError();
		progress.toggleCancel(false);

		switch (errorCode) {
		case SWFUpload.UPLOAD_ERROR.HTTP_ERROR:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.uploadError', [message]));
			this.debug("Error Code: HTTP Error, File name: " + file.name + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.UPLOAD_FAILED:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.uploadFailed'));
			this.debug("Error Code: Upload Failed, File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.IO_ERROR:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.uploadFailed'));
			this.debug("Error Code: IO Error, File name: " + file.name + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.SECURITY_ERROR:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.uploadFailed'));
			this.debug("Error Code: Security Error, File name: " + file.name + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.UPLOAD_LIMIT_EXCEEDED:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.exceedFileSizeLimit'));
			this.debug("Error Code: Upload Limit Exceeded, File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.FILE_VALIDATION_FAILED:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.uploadFailed'));
			this.debug("Error Code: File Validation Failed, File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.FILE_CANCELLED:
			// If there aren't any files left (they were all cancelled) disable the cancel button
			if (this.getStats().files_queued === 0) {
				// $(this.customSettings.cancelButtonId).hide();
				// $(this.customSettings.startUploadButtonId).hide();
				// this.setButtonDisabled(false);
			}
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.cancelled'));
			progress.setCancelled();
			break;
		case SWFUpload.UPLOAD_ERROR.UPLOAD_STOPPED:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.stopped'));
			break;
		default:
			progress.setStatus(p2.Utils.getMsg('p2.field.batchUpload.unknown2', [errorCode]));
			this.debug("Error Code: " + errorCode + ", File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		}
	}
	catch(e){
		this.debug(ex);
  }
}

function uploadComplete(file) {
	if (this.getStats().files_queued === 0) {
		// $(this.customSettings.cancelButtonId).hide();
		// $(this.customSettings.startUploadButtonId).hide();
		// this.setButtonDisabled(false);
	}
}

// This event comes from the Queue Plugin
function queueComplete(numFilesUploaded) {
	$("divStatus").update(p2.Utils.getMsg('p2.field.batchUpload.uploaded', [numFilesUploaded]));
}
