/* 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.
*/

var dic_upload              = 'Идет загрузка. Пожалуйста, подождите...';
var dic_uploadStoped        = 'Загрузка остановлена.';
var dic_uploadCanceled      = 'Загрузка отменена.';
var dic_uploadComplete      = 'Загрузка завершена.';
var dic_uploadPending       = 'Подготовка к загрузке...';
var dic_uploadProcessing    = 'Идет обработка. Пожалуйста, подождите...';

/* **********************
   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 FileProgress(file, this.customSettings.progressTarget);
		progress.setStatus( dic_uploadPending );
		progress.toggleCancel(true, this);

	} catch (ex) {
		this.debug(ex);
	}

}

function fileQueueError(file, errorCode, message) {
	try {
		if (errorCode === SWFUpload.QUEUE_ERROR.QUEUE_LIMIT_EXCEEDED) {
			alert("You have attempted to queue too many files.\n" + (message === 0 ? "You have reached the upload limit." : "You may select " + (message > 1 ? "up to " + message + " files." : "one file.")));
			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("File is too big.");
			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("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("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("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) {
			document.getElementById(this.customSettings.cancelButtonId).disabled = false;
		}
        */

		/* I want auto start the upload and I can do that here */
		var dialogMessage = " файл(ов) выбрано для загрузки. Начать загрузку?";
        if (numFilesQueued > 0) {
            if (confirm(numFilesQueued + dialogMessage)) {

                //добавляем блокировку, чтобы не отменили загрузку
                
                function getClientHeight()
                {
                  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
                }
                function getClientWidth()
                {
                  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
                }
                
                
                var parent = document.getElementsByTagName('BODY')[0];
                var divElement = document.createElement('div');
               // var browserDims = document.viewport.getDimensions();
                
                /* не работает в IE пришлось закоментить (c)ai
                 * var styles = {
                    id : 'shadowBox',
                    width : getClientWidth(),
                    height : getClientHeight() * 2,
                    display : 'block',
                    cursor : 'wait',
                    background : '#000000',
                    opacity : '0.4',
                    left : '0',
                    top : '0',
                    position : 'absolute',
                    zIndex : '999'
                }
                 divElement.setStyle(styles);*/
                
              /*  divElement.className = 'elemClass';
                divElement.id = 'shadowBox';
                divElement.style.width = document.style.width;
                divElement.style.height = document.style.height;
                divElement.style.background = '#000000';
                divElement.style.display = 'block';
                divElement.style.cursor = 'wait';
                divElement.style.opacity = '0.4';
                divElement.style.left = '0';
                divElement.style.top = '0';
                divElement.style.position = 'absolute';
                divElement.style.zIndex = '999';*/
                                
                parent.appendChild(divElement);
                
                /*
                if (document.getElementById('shadowBox')) {
                    var divElement = document.getElementById('shadowBox');
                } else {
                    var divElement = document.createElement('div');
                    divElement.setAttribute('id', 'shadowBox');
                }               
                var body = document.getElementsByTagName('body')[0];                
                divElement.setAttribute('zIndex', 999);
                divElement.setAttribute('width', );
                divElement.setAttribute('height', body.getAttribute('height'));
                divElement.setAttribute('position', 'position');
                divElement.setAttribute('top', 0);
                divElement.setAttribute('left', 0);
                divElement.setAttribute('opacity', 0.4);
                divElement.setAttribute('backgroundColor', '#000000');
                divElement.setAttribute('display', 'block');
                divElement.setAttribute('cursor', 'wait');                
                body.appendChild(divElement);*/
                
             /*   $('<div id="shadowBox"></div>').css({
                    zIndex: 999,
                    width: $(document.body).outerWidth(true),
                    height: $(document).height(),
                    position: "absolute",
                    top: 0,
                    left: 0,
                    opacity: 0.4,
                    backgroundColor: "#000000",
                    display: "block",
                    cursor: "wait"
                }).appendTo("body");*/

                this.startUpload();
            } else {
                // отменяем файлы, выбранные для загрузки
                this.cancelQueue();
            }
        }
	} 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.
		 */
        // !!!
        document.getElementById("fsUploadProgress").style.display = "block";
		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setStatus( dic_upload );
		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);

        if (100 > percent) {
            progress.setStatus( dic_upload );
        } else {
            progress.setStatus( dic_uploadProcessing );
        }
	} catch (ex) {
		this.debug(ex);
	}
}

function uploadSuccess(file, serverData) {
	try {
		var progress = new FileProgress(file, this.customSettings.progressTarget);
		progress.setComplete();
		progress.setStatus( dic_uploadComplete );
		progress.toggleCancel(false);

	} catch (ex) {
		this.debug(ex);
	}
}

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("Upload Error: " + message);
			this.debug("Error Code: HTTP Error, File name: " + file.name + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.UPLOAD_FAILED:
			progress.setStatus("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("Server (IO) Error");
			this.debug("Error Code: IO Error, File name: " + file.name + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.SECURITY_ERROR:
			progress.setStatus("Security Error");
			this.debug("Error Code: Security Error, File name: " + file.name + ", Message: " + message);
			break;
		case SWFUpload.UPLOAD_ERROR.UPLOAD_LIMIT_EXCEEDED:
			progress.setStatus("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("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( dic_uploadCanceled );
			progress.setCancelled();
			break;
		case SWFUpload.UPLOAD_ERROR.UPLOAD_STOPPED:
			progress.setStatus( dic_uploadStoped );
			break;
		default:
			progress.setStatus("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) {
		//document.getElementById(this.customSettings.cancelButtonId).disabled = true;
	}
}

// This event comes from the Queue Plugin
function queueComplete(numFilesUploaded) {
    // !!!
    window.location.reload();
    document.getElementById("fsUploadProgress").style.display = "none";

    var status = document.getElementById("divStatus");
	status.innerHTML = numFilesUploaded + " file" + (numFilesUploaded === 1 ? "" : "s") + " uploaded.";
}

