/*------------------------------------------------------------------------------------------------------------------------------ 
 											Funcións específicas para manexo de fechas
------------------------------------------------------------------------------------------------------------------------------- */

/*

	Función que recibe unha fecha en formato dd/mm/aaaa ou dd-mm-aaaa ou un par dia/mes en formato dd/mm ou dd-mm
	E devolvea a fecha separada con guions e sin espacios e con leading zeros
*/
function formateaFecha(fecha){
	fecha = trim(fecha);
	fecha = fecha.split("/").join("-");	
	
	var a = fecha.split("-");
	
	var fechaOK = "";
	
	if(a.length == 2 || a.length == 3){
	
		// Fecha válida			
		for(y = 0; y < a.length; y++){
			if(fechaOK.length>0)fechaOK += "-";
			a[y] = String(parseInt(a[y],10)); // Paso todo a integer en BASE 10 importante isto e despois de novo a String									
			if(a[y].length < 2) a[y] = "0".concat(a[y]); // Engadelle o 0	ao principio
			
			fechaOK = fechaOK.concat(a[y]);
		}		
		
		return fechaOK;
		
	}else return 0
		
}




/* Comproba q a fecha teña formato válido (dd-mm-aaaa) ou dd/mm/aa
-------------------------------------------------------------------*/
function validaFecha(fecha){
	var patron1 = new RegExp("^[0-9]{1,2}-{1}[0-9]{1,2}-{1}[0-9]{4}$","gi"); // dd-mm-aaaa	
	if(patron1.test(fecha) || patron2.test(fecha))return true; else return false
}






/*	Convirte unha fecha en formato humano (dd-mm-aaaa) e cos
	meses de 1 a 12 en formato Javascript cos meses de 0 a 11
----------------------------------------------------------------*/
function fecha2js(fechaRecibida){
	var f = new Array(); f = fechaRecibida.split("-"); 
	f[1] = parseInt(f[1], 10) - 1;
	
	fecha = f.join("-"); // f fecha en formato JS
	return fecha;
}




/*	Función que comproba que un par día-mes sexa válido.
	Pode recibir dd-mm-aaaa, dd--mm	
-------------------------------------------------------------------*/
function validaDiaMes(fecha){
	var a = fecha.split("-");	
	if(a.length != 2 && a.length != 3 )return false;
	a[1] -= 1; // os meses van de 0 a 11 en JS ollo
	mSeconds = (new Date(1980, a[1], a[0])).getTime();  // 1980 foi bisiesto
	objDate = new Date();  
	objDate.setTime(mSeconds);
	
	// Esta compración faise en numerico polo que non detectará si o mes é 0007
	if (objDate.getMonth()    != a[1]) return false;  
	else if (objDate.getDate()     != a[0])   return false;  
	else return true;
}



/* Funcións que devolven o nº de segundos desde EPOCH Unix
	pero a partir dunha fecha en formato dd-mm-aaaa ou
	en formato dd-mm-aaa 
	MESES en javascript van de 0 a 11 OLLO,
	
----------------------------------------------------------*/
function strtotime (fecha){
	
	var a = fecha.split("-");	
	if(a.length !=3)return 0;	
	else{
		// Hai que ter en conta o tema do gmt.
		var fecha = new Date();
		fecha.setFullYear(a[2], (a[1]-1), a[0]); // ano 4 díxitos, mes e dia. ASÍ QUE HAI QUE RESTAR 1 ao mes
		fecha.setHours(0,0,0);
		fecha.setMilliseconds(0);
		segundosLocal =  Math.ceil(fecha.getTime()/1000); // nº de milisegundos / 1000		
		var d = new Date()
		var gmtSeconds = -d.getTimezoneOffset() * 60; // Axustamos para empregar sempre horas GMT
		return (segundosLocal + gmtSeconds);		
	}	
}

function strtotimeJS (fecha){
	
	var a = fecha.split("-");	
	if(a.length !=3)return 0;	
	else{
		// Hai que ter en conta o tema do gmt.
		var fecha = new Date();
		fecha.setFullYear(a[2], (a[1]), a[0]); // ano 4 díxitos, mes e dia. Sin RESTAR ao mes, pois a fecha xa ven en formato JS
		fecha.setHours(0,0,0);
		fecha.setMilliseconds(0);
		segundosLocal =  Math.ceil(fecha.getTime()/1000); // nº de milisegundos / 1000		
		var d = new Date()
		var gmtSeconds = -d.getTimezoneOffset() * 60; // Axustamos para empregar sempre horas GMT
		return (segundosLocal + gmtSeconds);		
	}	
}

	
	


/*	Recibe fecha en formato dd-mm-aaa  e realiza unha comparación
	Si se recibe o par dd-mm entón temos que sumar o un ano arbitrario para poder calcular a marca de tempo Unix do carallo!!
	Devolve 1 si f1>f2
	Devolve 2 si f2>f1
	0 si son iguales
-----------------------------------------------------------------*/	
function comparaFecha(fecha1,fecha2){
	
	a = fecha1.split("-");
	
	/*if(a.length == 2 ){
		// Par dia-mes
		fecha1 = fecha1.concat("-1970");
		fecha2 = fecha2.concat("-1970");		
	}
	*/
	f1 = strtotime(fecha1);
	f2 = strtotime(fecha2);	
	
	if(f1>f2)return 1; // maior 1
	else if(f2>f1)return 2; // maior a 2
	else return 0; // iguales

		
}





/* Función que devolve o dia actual. En formato JS (meses de 0 1a 11)
---------------------------------------------------------------------------*/
function diaActual(){
	 // Meses en JS van de 0-11 ollo!!!
	var aghora = new Date();
	var ano = aghora.getFullYear();
	var mes = aghora.getMonth(); // mes de 0 a 11
	var dia = aghora.getDate(); // Día do mes (1-31)
	
	// var diaSemana = aghora.getDay() // dia da semana 0-6 empezando polo domingo creo...
	
	var strFecha = dia + '-' + mes + '-' + ano;
	return(strFecha);
}



/* Función que devolve o 1º dia da semana dun mes dado
-------------------------------------------------------*/

function primerDiaMes (mes, year){
	 // Meses en JS van de 0-11 ollo!!!
	var fecha = new Date();
	fecha.setFullYear(year, mes, 1); // ano 4 díxitos, mes e dia
	//document.write(fecha.getDay());
	return fecha.getDay(); // Numérico (0 dom, 6 sabado)
}


/* Devolve o nº de dias de un mes en f do ano (non vaia ser bisiesto :-P)
------------------------------------------------------------------------------------*/

function getNumeroDiasMes (mes, year) {
	 // Meses en JS van de 0-11 ollo!!!
	 rem = year % 4;
	 if(rem ==0) leap = 1; else leap = 0; 
	 noDays=0;
	 if ( (mes == 0) || (mes == 2) || (mes == 4) || (mes == 6) || (mes == 7) || (mes == 9) || (mes == 11)) noDays=31;
	 else if (mes == 1) noDays=28 + leap;  // Bisiestos
	 else noDays=30; 
	 return noDays;      
}//getNoOfDaysInmes()





/*
	Función que recibe unha fecha ou un par dia-mes
	e devolveo con leading zeros (05-12, 08-05-2008,  23-08, etc.)
------------------------------------------------------------------------------*/

function formateaDiaMes(fecha){
	var sep = new Array("-", "/");
	var fechaOK = "";
	for(x = 0; x < 2; x++){		
		var a = fecha.split(sep[x]);																	
		if(a.length == 2 || a.length == 3){
			// Fecha válida			
			for(y = 0; y < a.length; y++){
				if(fechaOK.length>0)fechaOK += sep[x];
				
				a[y] = String(parseInt(a[y], 10)); // Para evitar que se metan numeros con ceros ao principio (p.e. 12-0000000000007-2009, paso todo a integer e despois de novo a String									
																								   
				if(a[y].length < 2) a[y] = "0" + parseInt(a[y], 10); // Engadelle o 0	ao principio
				
				fechaOK += a[y];
			}
			
			return fechaOK;
		}
		
	}
	return false; // fecha non válida
	
}








/*	Función para pasar de marca de tempo Unix a fecha con formato humano
----------------------------------------------------------------------------*/
function date ( format, timestamp ) {
    // http://kevin.vanzonneveld.net
    // +   original by: Carlos R. L. Rodrigues (http://www.jsfromhell.com)
    // +      parts by: Peter-Paul Koch (http://www.quirksmode.org/js/beat.html)
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: MeEtc (http://yass.meetcweb.com)
    // +   improved by: Brad Touesnard
    // +   improved by: Tim Wiel
    // +   improved by: Bryan Elliott
    // +   improved by: Brett Zamir
    // +   improved by: David Randall
    // *     example 1: date('H:m:s \\m \\i\\s \\m\\o\\n\\t\\h', 1062402400);
    // *     returns 1: '09:09:40 m is month'
    // *     example 2: date('F j, Y, g:i a', 1062462400);
    // *     returns 2: 'September 2, 2003, 2:26 am'
    // *     example 3: date('Y W o', 1062462400);
    // *     returns 3: '2003 36 2003'
    // *     example 4: x = date('Y m d', (new Date()).getTime()/1000); // 2009 01 09
    // *     example 4: (x+'').length == 10
    // *     returns 4: true
 
    var a, jsdate=(
        (typeof(timestamp) == 'undefined') ? new Date() : // Not provided
        (typeof(timestamp) == 'number') ? new Date(timestamp*1000) : // UNIX timestamp
        new Date(timestamp) // Javascript Date()
    );
    var pad = function(n, c){
        if( (n = n + "").length < c ) {
            return new Array(++c - n.length).join("0") + n;
        } else {
            return n;
        }
    };
    var txt_weekdays = ["Sunday","Monday","Tuesday","Wednesday",
        "Thursday","Friday","Saturday"];
    var txt_ordin = {1:"st",2:"nd",3:"rd",21:"st",22:"nd",23:"rd",31:"st"};
    var txt_months =  ["", "January", "February", "March", "April",
        "May", "June", "July", "August", "September", "October", "November",
        "December"];
 
    var f = {
        // Day
            d: function(){
                return pad(f.j(), 2);
            },
            D: function(){
                var t = f.l();
                return t.substr(0,3);
            },
            j: function(){
                return jsdate.getDate();
            },
            l: function(){
                return txt_weekdays[f.w()];
            },
            N: function(){
                return f.w() + 1;
            },
            S: function(){
                return txt_ordin[f.j()] ? txt_ordin[f.j()] : 'th';
            },
            w: function(){
                return jsdate.getDay();
            },
            z: function(){
                return (jsdate - new Date(jsdate.getFullYear() + "/1/1")) / 864e5 >> 0;
            },
 
        // Week
            W: function(){
                var a = f.z(), b = 364 + f.L() - a;
                var nd2, nd = (new Date(jsdate.getFullYear() + "/1/1").getDay() || 7) - 1;
 
                if(b <= 2 && ((jsdate.getDay() || 7) - 1) <= 2 - b){
                    return 1;
                } else{
 
                    if(a <= 2 && nd >= 4 && a >= (6 - nd)){
                        nd2 = new Date(jsdate.getFullYear() - 1 + "/12/31");
                        return date("W", Math.round(nd2.getTime()/1000));
                    } else{
                        return (1 + (nd <= 3 ? ((a + nd) / 7) : (a - (7 - nd)) / 7) >> 0);
                    }
                }
            },
 
        // Month
            F: function(){
                return txt_months[f.n()];
            },
            m: function(){
                return pad(f.n(), 2);
            },
            M: function(){
                t = f.F(); return t.substr(0,3);
            },
            n: function(){
                return jsdate.getMonth() + 1;
            },
            t: function(){
                var n;
                if( (n = jsdate.getMonth() + 1) == 2 ){
                    return 28 + f.L();
                } else{
                    if( n & 1 && n < 8 || !(n & 1) && n > 7 ){
                        return 31;
                    } else{
                        return 30;
                    }
                }
            },
 
        // Year
            L: function(){
                var y = f.Y();
                return (!(y & 3) && (y % 1e2 || !(y % 4e2))) ? 1 : 0;
            },
            o: function(){
                if (f.n() === 12 && f.W() === 1) {
                    return jsdate.getFullYear()+1;
                }
                if (f.n() === 1 && f.W() >= 52) {
                    return jsdate.getFullYear()-1;
                }
                return jsdate.getFullYear();
            },
            Y: function(){
                return jsdate.getFullYear();
            },
            y: function(){
                return (jsdate.getFullYear() + "").slice(2);
            },
 
        // Time
            a: function(){
                return jsdate.getHours() > 11 ? "pm" : "am";
            },
            A: function(){
                return f.a().toUpperCase();
            },
            B: function(){
                // peter paul koch:
                var off = (jsdate.getTimezoneOffset() + 60)*60;
                var theSeconds = (jsdate.getHours() * 3600) +
                                 (jsdate.getMinutes() * 60) +
                                  jsdate.getSeconds() + off;
                var beat = Math.floor(theSeconds/86.4);
                if (beat > 1000) beat -= 1000;
                if (beat < 0) beat += 1000;
                if ((String(beat)).length == 1) beat = "00"+beat;
                if ((String(beat)).length == 2) beat = "0"+beat;
                return beat;
            },
            g: function(){
                return jsdate.getHours() % 12 || 12;
            },
            G: function(){
                return jsdate.getHours();
            },
            h: function(){
                return pad(f.g(), 2);
            },
            H: function(){
                return pad(jsdate.getHours(), 2);
            },
            i: function(){
                return pad(jsdate.getMinutes(), 2);
            },
            s: function(){
                return pad(jsdate.getSeconds(), 2);
            },
            u: function(){
                return pad(jsdate.getMilliseconds()*1000, 6);
            },
 
        // Timezone
            //e not supported yet
            I: function(){
                var DST = (new Date(jsdate.getFullYear(),6,1,0,0,0));
                DST = DST.getHours()-DST.getUTCHours();
                var ref = jsdate.getHours()-jsdate.getUTCHours();
                return ref != DST ? 1 : 0;
            },
            O: function(){
               var t = pad(Math.abs(jsdate.getTimezoneOffset()/60*100), 4);
               if (jsdate.getTimezoneOffset() > 0) t = "-" + t; else t = "+" + t;
               return t;
            },
            P: function(){
                var O = f.O();
                return (O.substr(0, 3) + ":" + O.substr(3, 2));
            },
            //T not supported yet
            Z: function(){
               var t = -jsdate.getTimezoneOffset()*60;
               return t;
            },
 
        // Full Date/Time
            c: function(){
                return f.Y() + "-" + f.m() + "-" + f.d() + "T" + f.h() + ":" + f.i() + ":" + f.s() + f.P();
            },
            r: function(){
                return f.D()+', '+f.d()+' '+f.M()+' '+f.Y()+' '+f.H()+':'+f.i()+':'+f.s()+' '+f.O();
            },
            U: function(){
                return Math.round(jsdate.getTime()/1000);
            }
    };
 
    return format.replace(/[\\]?([a-zA-Z])/g, function(t, s){
        if( t!=s ){
            // escaped
            ret = s;
        } else if( f[s] ){
            // a date function exists
            ret = f[s]();
        } else{
            // nothing special
            ret = s;
        }
 
        return ret;
    });
}
