/* Demo Note:  This demo uses a FileProgress class that handles the UI for displaying the file name and percent complete.
The FileProgress class is not part of SWFUpload.
*/


/* **********************
   Event Handlers
   These are my custom event handlers to make my
   web application behave the way I went when SWFUpload
   completes different tasks.  These aren't part of the SWFUpload
   package.  They are part of my application.  Without these none
   of the actions SWFUpload makes will show up in my application.
   ********************** */
function fileQueued(file) {
	try {
		var progress = new this.progressHandler(file, this.customSettings.progressTarget);
		progress.setStatus(SWFUpload.msg["Pending..."]);
		progress.toggleCancel(true, this);

	} catch (ex) {
		this.debug(ex);
	}

}

function fileQueueError(file, errorCode, message) {
	try {
		if (errorCode === SWFUpload.QUEUE_ERROR.QUEUE_LIMIT_EXCEEDED) {
			alert(SWFUpload.msg["You have attempted to queue too many files.\n"] + (message === 0 ? SWFUpload.msg["You have reached the upload limit."] : SWFUpload.msg["You may select "] + (message > 1 ? SWFUpload.msg["up to "] + message + SWFUpload.msg[" files."] : SWFUpload.msg["one file."])));
			return;
		}

		var progress = new this.progressHandler(file, this.customSettings.progressTarget);
		progress.setError();
		progress.toggleCancel(false);
		if (document.getElementById(this.customSettings.cancelButtonId)) {
			$('#'+this.customSettings.cancelButtonId).hide();
		}

		switch (errorCode) {
		case SWFUpload.QUEUE_ERROR.FILE_EXCEEDS_SIZE_LIMIT:
			progress.setStatus(SWFUpload.msg['File is too big.'] + '<br />(max: ' + parseFloat(Math.round(this.settings.file_size_limit/1024, 1)).toFixed(1) + 'MB)');
			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(SWFUpload.msg["Cannot upload Zero Byte files."]);
			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(SWFUpload.msg["Invalid File Type."]);
			this.debug("Error Code: Invalid File Type, File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		default:
			if (file !== null) {
				progress.setStatus(SWFUpload.msg["Unhandled Error"]);
			}
			this.debug("Error Code: " + errorCode + ", File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
			break;
		}
	} catch (ex) {
        this.debug(ex);
    }
}

function fileDialogComplete(numFilesSelected, numFilesQueued) {
	try {
		if (numFilesSelected > 0) {
		}
		
		/* I want auto start the upload and I can do that here */
		this.startUpload();
	} catch (ex)  {
        this.debug(ex);
	}
}

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 this.progressHandler(file, this.customSettings.progressTarget);
		progress.setStatus(SWFUpload.msg["Uploading..."], true);
		progress.toggleCancel(true, this);
		
		if (document.getElementById(this.customSettings.cancelButtonId)) {
			$('#'+this.customSettings.cancelButtonId).show();
		}
		
	}
	catch (ex) { this.debug( ex ) }
	
	return true;
}

function uploadProgress(file, bytesLoaded, bytesTotal) {
	try {
		var percent = Math.ceil((bytesLoaded / bytesTotal) * 100);
		var progress = new this.progressHandler(file, this.customSettings.progressTarget);
		progress.setProgress(percent);
		if (percent == 100) {
			progress.setStatus(SWFUpload.msg["Processing..."]);
		} else {
			progress.setStatus(SWFUpload.msg["Uploading..."]);
		}
	} catch (ex) {
		this.debug(ex);
	}
}

function uploadSuccess(file, serverData) {
	try {
		var progress = new this.progressHandler(file, this.customSettings.progressTarget, serverData);
		progress.setStatus(SWFUpload.msg["Complete"]);
		progress.setComplete();
		progress.toggleCancel(false);
	} catch (ex) {
		this.debug(ex);
	}
}

function uploadError(file, errorCode, message) {
	try {
		var progress = new this.progressHandler(file, this.customSettings.progressTarget);
		progress.setError();
		progress.toggleCancel(false);
		if (document.getElementById(this.customSettings.cancelButtonId)) {
			$('#'+this.customSettings.cancelButtonId).hide();
		}

		switch (errorCode) {
			case SWFUpload.UPLOAD_ERROR.HTTP_ERROR:
				progress.setStatus(SWFUpload.msg["Upload Error: "] + message);
				this.debug("Error Code: HTTP Error, File name: " + file.name + ", Message: " + message);
				break;
			case SWFUpload.UPLOAD_ERROR.UPLOAD_FAILED:
				progress.setStatus(SWFUpload.msg["Upload Failed."]);
				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(SWFUpload.msg["Server (IO) Error"]);
				this.debug("Error Code: IO Error, File name: " + file.name + ", Message: " + message);
				break;
			case SWFUpload.UPLOAD_ERROR.SECURITY_ERROR:
				progress.setStatus(SWFUpload.msg["Security Error"]);
				this.debug("Error Code: Security Error, File name: " + file.name + ", Message: " + message);
				break;
			case SWFUpload.UPLOAD_ERROR.UPLOAD_LIMIT_EXCEEDED:
				progress.setStatus(SWFUpload.msg["Upload limit exceeded."]);
				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(SWFUpload.msg["Failed Validation.  Upload skipped."]);
				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) {
					document.getElementById(this.customSettings.cancelButtonId).disabled = true;
				}
				progress.setStatus(SWFUpload.msg["Cancelled"]);
				progress.setCancelled();
				break;
			case SWFUpload.UPLOAD_ERROR.UPLOAD_STOPPED:
				progress.setStatus(SWFUpload.msg["Stopped"]);
				break;
			default:
				progress.setStatus(SWFUpload.msg["Unhandled Error: "] + errorCode);
				this.debug("Error Code: " + errorCode + ", File name: " + file.name + ", File size: " + file.size + ", Message: " + message);
				break;
		}
		
	} catch (ex) {
        this.debug(ex);
    }
}

function uploadComplete(file) {
	
	if (this.getStats().files_queued === 0) {
		if (document.getElementById(this.customSettings.cancelButtonId)) {
			$('#'+this.customSettings.cancelButtonId).hide();
		}
	} else {
		this.startUpload();
	}
}

var swfu = new Array();

function flashUpload( vars ) {

	var index = swfu.length;
	swfu[index] = new SWFUpload({
		flash_url : SWFUpload.flash_url,
		upload_url: vars.upload_url ? vars.upload_url : '',
		post_params : vars.post_params ? vars.post_params : {},
		file_post_name: vars.file_post_name ? vars.file_post_name : 'FILES[avatar]' ,
		file_size_limit : vars.file_size_limit ? vars.file_size_limit : ( document.swf_file_size_limit ? document.swf_file_size_limit : '2048' ),
		file_types : vars.file_types ? vars.file_types : "*.jpg;*.gif;*.png",
		file_types_description : vars.file_types_description ? vars.file_types_description : "Image Files",
		file_upload_limit : typeof vars.file_upload_limit != 'undefined' ? vars.file_upload_limit : 10,
		file_queue_limit : typeof vars.file_queue_limit != 'undefined' ? vars.file_queue_limit : 1,
		custom_settings : {
			progressTarget : vars.progressTarget ? vars.progressTarget : "user-avatar",
			cancelButtonId : vars.cancelButtonId ? vars.cancelButtonId : ""
		},
		debug: typeof vars.debug != 'undefined' ? vars.debug : false,

		// Button Settings
		button_placeholder_id : vars.button_placeholder_id ? vars.button_placeholder_id : "",
		button_width: 61,
		button_height: 22,
		button_window_mode: SWFUpload.WINDOW_MODE.TRANSPARENT,
		button_cursor: SWFUpload.CURSOR.HAND,
		button_action: (vars.button_action) ? SWFUpload.BUTTON_ACTION.SELECT_FILE : SWFUpload.BUTTON_ACTION.SELECT_FILES,

		// The event handler functions are defined in handlers.js
		file_queued_handler : fileQueued,
		file_queue_error_handler : fileQueueError,
		file_dialog_complete_handler : fileDialogComplete,
		upload_start_handler : uploadStart,
		upload_progress_handler : uploadProgress,
		upload_error_handler : uploadError,
		upload_success_handler : uploadSuccess,
		upload_complete_handler : uploadComplete
		//queue_complete_handler : queueComplete	// Queue plugin event
	});	
	swfu[index].progressHandler = vars.progressHandler ? vars.progressHandler : avatarProgress;
	return swfu[index];

}
