X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/e92b831febcf1737682bfb7aa28c552a0dc8dabb..ec14e221c612f4f8a710f17d1591416b16204eeb:/src/lib/faq.functions.php?ds=sidebyside diff --git a/src/lib/faq.functions.php b/src/lib/faq.functions.php index 929af47..0f50931 100644 --- a/src/lib/faq.functions.php +++ b/src/lib/faq.functions.php @@ -12,6 +12,8 @@ require_once 'Pregunta.php'; require_once 'Respuesta.php'; require_once 'file.creditos.php'; require_once 'file.php'; +require_once 'pagina.php'; +require_once 'file.log.php'; // Levanta las preguntas y respuestas del archivo // Devuelve un array con cada una de las preguntas creadas @@ -19,35 +21,35 @@ function Faq_ObtenerPreguntas() { // Verifica que el file que guarda las preguntas exista // Si no existe, devuelve un array vacio - if ( file_exists ( "data/preguntas.txt" ) ) + if ( file_exists ( "data/preguntas.csv" ) ) { // Levanta las puntuaciones de preguntas desde el archivo // Si existe el archivo $calificaciones = array(); - if (($fp = fopen('data/calificacion.csv', 'r')) === true) + if ( file_exists ( "data/calificacion.csv" ) ) { - while ($data = fgetcsv ($fp, 4096)) - { - $calificaciones[$data[0]] = $data[1]; - } - fclose ($fp); + $fp = @fopen("data/calificacion.csv", 'r'); + while ($data = fgetcsv ($fp, 4096)) + { + $calificaciones[$data[0]] = $data[1]; + } + fclose ($fp); } $respuestasPorPregunta = array(); - if ( file_exists ( "data/respuestas.txt" ) ) + if ( file_exists ( "data/respuestas.csv" ) ) { // Levanta todas las respuestas existentes de un archivo, // Para luego vincularlas con las preguntas - $respuestasPlano = file("data/respuestas.txt"); + $respuestasPlano = @fopen("data/respuestas.csv", 'r'); - $respuestaId = 0; - foreach($respuestasPlano as $row) + $respuestaId = 1; + while($rowDiv = fgetcsv($respuestasPlano,4069)) { $objRespuesta = new Respuesta; - $rowDiv = explode("|",$row); - $objRespuesta->idPregunta = $rowDiv[0]; + $objRespuesta->idPregunta = $rowDiv[0]; $objRespuesta->id = $respuestaId; $objRespuesta->autor = $rowDiv[1]; $objRespuesta->fecha = date('d/m/y H:i:s', $rowDiv[2]); @@ -79,27 +81,27 @@ function Faq_ObtenerPreguntas() // Guarda la lista de respuestas de la pregunta $respuestasPorPregunta[$objRespuesta->idPregunta] = $listaRespuestas; } + fclose($respuestasPlano); } $preguntasDesactivadas = array(); - if ( file_exists("data/desactivadas.txt" ) ) + if ( file_exists("data/desactivadas.csv" ) ) { - $desactivadasPlano = file("data/desactivadas.txt"); - foreach ($desactivadasPlano as $row) + $desactivadasPlano = @fopen("data/desactivadas.csv", 'r'); + while ($rowDiv = fgetcsv($desactivadasPlano,4096) ) { - $rowDiv = explode("|",$row); $preguntasDesactivadas[$rowDiv[0]] = "0"; } + fclose($desactivadasPlano); } - $preguntasPlano = file("data/preguntas.txt"); + $preguntasPlano = fopen("data/preguntas.csv", 'r'); - foreach($preguntasPlano as $row) + while($rowDiv = fgetcsv($preguntasPlano, 4096 ) ) { $objPregunta = new Pregunta; - $rowDiv = explode("|",$row); $objPregunta->id = $rowDiv[0]; $objPregunta->autor = $rowDiv[1]; $objPregunta->fecha = date('d/m/y H:i:s', $rowDiv[2]); @@ -118,11 +120,15 @@ function Faq_ObtenerPreguntas() // Busca las respuestas a la pregunta if ( array_key_exists($objPregunta->id, $respuestasPorPregunta ) ) { - $objPregunta->respuestas = $respuestasPorPregunta[$objPregunta->id]; + // Ordena las respuestas por ranking + $objPregunta->respuestas = + Faq_SortRespuestasByRanking($respuestasPorPregunta[$objPregunta->id]); + } $preguntas[] = $objPregunta; } + fclose($preguntasPlano); return $preguntas; } else @@ -131,6 +137,21 @@ function Faq_ObtenerPreguntas() } } +// Obtiene la cantidad de preguntas existentes +// de manera rapida ( sin armar elobjeto pregunta ) +function Faq_ObtenerCantidadPreguntas() +{ + if ( file_exists ( "data/preguntas.csv" ) ) + { + $preguntas = @file("data/preguntas.csv"); + return count($preguntas); + } + else + { + return 0; + } + +} // Ingresa una pregunta en el sistema. // Tiene que haber estado validado que el usuario pueda hacerlo function Faq_IngresarPregunta($Usuario, $Pregunta) @@ -139,36 +160,26 @@ function Faq_IngresarPregunta($Usuario, $Pregunta) // dar de alta la pregunta if ( $Usuario->GetCreditos() > 0 ) { - $Fecha = time(); + $fecha = time(); // Obtiene la lista de preguntas ya existentes - $Preguntas = Faq_ObtenerPreguntas(); - $CantidadPreguntas = count($Preguntas); - - $NuevoId= 0; - if ( $CantidadPreguntas != 0 ) - { - $PreguntaObj = $Preguntas[$CantidadPreguntas -1]; - $NuevoId = $PreguntaObj->id; - $NuevoId = $NuevoId + 1; - } - + $cantidadPreguntas = Faq_ObtenerCantidadPreguntas(); + + $NuevoId= $cantidadPreguntas + 1; + //Formato: // PreguntaId | UserId | Fecha | Pregunta - $Linea = $NuevoId."|".$Usuario->getId()."|".$Fecha."|".$Pregunta."\n"; - $fp = fopen("data/preguntas.txt","a"); - if(!$fp) - { - return "Error en el archivo"; - } - fwrite($fp, $Linea); - fclose($fp); - + if( !fappendcsv("data/preguntas.csv", array($NuevoId,$Usuario->getId(),$fecha,$Pregunta) ) ) + { + return "Error en el archivo"; + } + // Disminuye el credito del usuario, si es que no es asesor y tiene credito infinito if ( !$Usuario->esAsesor() ) { file_creditos_preguntar( $Usuario->getId() ); } - + // Loguea la accion + file_log_add($Usuario->getId(), "Da de alta de una pregunta"); return "La pregunta fue dada de alta correctamente"; } else @@ -185,14 +196,13 @@ function Faq_IngresarRespuesta($PreguntaId, $UsrId, $Respuesta) //Formato: // PreguntaRespondidaId| UserId | Fecha | Respuesta - $Linea = $PreguntaId."|".$UsrId."|".$Fecha."|".$Respuesta."\n"; - $fp = fopen("data/respuestas.txt","a"); - if(!$fp) + if( !fappendcsv("data/respuestas.csv", array($PreguntaId,$UsrId,$Fecha,$Respuesta) ) ) { - return "Error en el archivo"; + return "Error en el archivo"; } - fwrite($fp, $Linea); - fclose($fp); + + // Loguea la accion + file_log_add($UsrId, "Da de alta de una respuesta"); return "La respuesta fue dada de alta correctamente"; } @@ -200,7 +210,7 @@ function Faq_IngresarRespuesta($PreguntaId, $UsrId, $Respuesta) // Recibe el usuario que esta logueado, para determinar // que opciones de menu le tiene que brindar ( dar de baja pregunta, // contestar pregunta, ranquear pregunta ). -function Faq_ListarPreguntas($Usuario) +/*function Faq_ListarPreguntas($Usuario) { $Preguntas = Faq_ObtenerPreguntas(); @@ -214,7 +224,7 @@ function Faq_ListarPreguntas($Usuario) { $ObjPregunta->toHTML(); ?> -
+
@@ -230,32 +240,42 @@ function Faq_ListarPreguntas($Usuario) { echo "Pasar preguntas a un log historico
"; } +}*/ + +function Faq_ListarPreguntas($Usuario) +{ + Faq_Listador ( Faq_ObtenerPreguntas() ); } // La funcion agrega el id de la pregunta a la lista de preguntas desactivadas -function Faq_DesactivarPregunta( $PreguntaId ) +function Faq_DesactivarPregunta( $PreguntaId , $UsrId) { - $fp = fopen("data/desactivadas.txt","a"); - if(!$fp) + // Formato PreguntaID,fechaYHora + if( !fappendcsv("data/desactivadas.csv", array($PreguntaId, time()) ) ) { return "Error en el archivo"; } - fwrite($fp, $PreguntaId."|".time()."\n"); - fclose($fp); + + // Loguea la accion + file_log_add($UsrId, "Pasa una respuesta a log historico"); + return "La pregunta fue dada de baja, no sera listada mas, pero conservada en un historico"; } // La funcion agrega la calificacion de la respuesta en un log -function Faq_CalificarRespuesta( $RespuestaId, $Calificacion ) +function Faq_CalificarRespuesta( $RespuestaId, $Calificacion , $UsrId) { - if ( file_exists ( "data/respuestas.txt" ) ) + if ( file_exists ( "data/respuestas.csv" ) ) { - // Levanta todas las respuestas existentes de un archivo, - // Para luego vincularlas con las preguntas - $respuestasPlano = file("data/respuestas.txt"); - $row = $respuestasPlano[$RespuestaId]; - $row = explode("|",$row); - $autorId = $row[1]; + $respuestasPlano = @fopen("data/respuestas.csv", 'r'); + $row = fgetcsv($respuestasPlano,4096); + $countRespuesta = 1; + while ( ( $countRespuesta != $RespuestaId ) && ( $row = fgetcsv($respuestasPlano,4096) ) ) + { + $countRespuesta ++; + } + $autorId = $row[1]; + fclose($respuestasPlano); } else { @@ -270,6 +290,78 @@ function Faq_CalificarRespuesta( $RespuestaId, $Calificacion ) return "Error al computar los creditos al usuario"; } + // Loguea la accion + file_log_add($UsrId, "Califica una respuesta con $Calificacion puntos"); return "La calificacion a la respuesta fue dada de alta"; } + +function Faq_SortRespuestasByRanking($respuestas) +{ + $n = count($respuestas); + for ($i=0; $i<$n-1; $i++) + { + for ($j=0; $j<$n-1-$i; $j++) + if ($respuestas[$j+1]->ranking < $respuestas[$j]->ranking) + { + $tmp = $respuestas[$j]; + $respuestas[$j] = $respuestas[$j+1]; + $respuestas[$j+1] = $tmp; + } + } + return $respuestas; +} +function printfl() +{ + $args = func_get_args(); + $args[0] .= "\n"; + call_user_func_array('printf', $args); +} + +function Faq_Listador($ObjetosAListar,$link = '', $cant = 2) +{ + // Calculo posiciones + $total = count($ObjetosAListar); + if (!$total) + { + echo error('No se encontraron Items'); + return; + } + $from = intval(@$_GET["lista_from"]); + $c = min($total - $from, $cant); + + while ( $c-- ) + { + if ( array_key_exists($from, $ObjetosAListar) ) + { + $obj = $ObjetosAListar[$from++]; + $obj->toHTML(); + //printfl(' '); + //printfl(' '); + } + } + printfl(''); + $pags = ceil($total / $cant); + if ($pags == 1) return; // Si tengo una sóla página, para qué el paginador? + // Arrastro query string, si corresponde + if ( isset($_SERVER['QUERY_STRING'] ) ) + { + $query = $_SERVER['QUERY_STRING']; + } + else + { + $query = ''; + } + if (($pos = strpos($query, 'lista_from=')) !== false) + { + if ($pos) $query = substr($query, 0, --$pos); + else $query = ''; + } + for ($i = 0; $i < $pags; ++$i) + { + $from = $i * $cant; + $q = $query ? "$query&lista_from=$from" : "lista_from=$from"; + printfl('', $link, $q, $i + 1); + } + printfl('
%s
'); +} ?> \ No newline at end of file