-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
342 lines (276 loc) · 8.92 KB
/
lib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<?php require_once("configuration.php");
function formLoadFile()
{?>
<p> <form method="post" id="subirdocumento" name="subirdocumento" action="index.php" enctype="multipart/form-data">
<fieldset>
<legend>Información del documento</legend>
<ul>
<li><label for="titulo">Titulo:</label><input id="titulo" name="titulo" type="text" value="Titulo"/></li>
<li class="textarea"><label for="descripcion">Descripción:</label><textarea id="descripcion" name="descripcion" cols="50" rows="5">Descripción</textarea></li>
<li><label for="etiqueta">Etiquetas:</label><input id="etiqueta" name="etiqueta" type="text" value="etiqueta1,etiqueta2,..."/></li>
<li><label for="documento">Documento:</label>
<input name="documento" type="file" id="documento">
</li>
</ul>
</fieldset>
<input type="submit" id="submit" name="submit" value="Subir Documento" />
<input name="upLoad" id="upLoad" type="hidden" value="formUpLoad" />
</form>
</p>
<?php
}
function formSearch($Search)
{
$buscar=htmlspecialchars(trim($Search));
?>
<p> <form method="post" id="formSearch" name="formSearch" action="./" >
<fieldset>
<label for="search">Buscar Documentos</label><input id="search" name="search" type="text" value="<?php if($buscar) {print($buscar); } ?>" />
</fieldset>
<input type="submit" id="submit" name="submit" value="Buscar" />
<input name="formVSearch" id="formVSearch" type="hidden" value="formSearch" />
</form>
</p>
<?php
}
function formLogin()
{
?>
<form method="post" id="formLogin" name="formLogin" action="./" >
<fieldset>
<legend>Inicia sesión para acceder al sistema</legend>
<ul>
<li><label for="user">Usuario</label><input id="user" name="user" type="text" /></li>
<li><label for="password">Contraseña</label><input id="password" name="password" type="password" /></li>
</ul>
</fieldset>
<input type="submit" id="submit" name="submit" value="Inicir sesión" />
<input name="Login" id="Login" type="hidden" value="formLogin" />
</form>
<?php
}
function loginMember($user, $password)
{
$message;
if($user && $password)
{
if($user=='demo'&&$password=='demo')
{
$member=array("member"=>array(
"usuario"=>'demo',
"nombre"=>'Demo',
"id"=>'777'));
$_SESSION["Safe-Documents"] = serialize($member);
$_SESSION["SESION_TIME"] = time();
header( "Location: ./" );
}
else
{
$message='El Usuario o la Contraseña no son validos';
}
}
else
{
$message='Se requiere un usuario y contraseña validos.';
}
return $message;
}
// función para guardar documentos
function sefeFile ($arrayDoc,$documento)
{
// Sustituir especios por guion
$archivo_usuario = str_replace(' ','-',$arrayDoc[$documento]['name']);
$tipo_archivo = $arrayDoc[$documento]['type'];
$tamano_archivo = $arrayDoc[$documento]['size'];
$extencion = strrchr($arrayDoc[$documento]['name'],'.');
// Rutina que asegura que no se sobre-escriban documentos
$nuevo_archivo;
$flag= true;
while ($flag)
{
$nuevo_archivo=randString(); //.$extencion;
if (!file_exists(pathFiles().$nuevo_archivo))
{
$flag= false;
}
}
//compruebo si las características del archivo son las que deseo
try {
if (move_uploaded_file($arrayDoc[$documento]['tmp_name'], pathFiles().$nuevo_archivo))
{
//return $nuevo_archivo;
return $vector = array ( $nuevo_archivo, $archivo_usuario );
}
else
{
// return 'NO.png';
return $vector = array ( "NO", "NO" );
}
}
catch(Exception $e)
{
echo 'Error en la Función sefeFile --> lib.php ', $e->getMessage(), "\n";
exit;
}
}
// función que genera una cadena aleatoria
function randString ($length = 32)
{
$string = "";
$possible = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXY";
$i = 0;
while ($i < $length)
{
$char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
$string .= $char;
$i++;
}
return $string;
}
function nameFile($cod_file)
{
$vname_files=null;
try {
$connection = new Mongo();
$collection = $connection->safedocuments->documentos;
} catch (MongoConnectionException $e) {
die("Failed to connect to database " . $e->getMessage());
}
$doc = $collection->findOne(array('_id' => new MongoId($cod_file)));
$vname_files[1]=$doc['nombrearchivo'];
$vname_files[0]=$doc['archivo'];
return $vname_files;
}
// muestra los ultimos 10 documentos publicados
function newsDocumentos()
{
$cursor = MongoCon()->find()->sort(array('fecha'=>-1))->limit(10);
while ($cursor->hasNext()):
$doc= $cursor->getNext();
/****************************************************************************************/
?>
<p><h3><?php echo $doc['titulo']; ?></h3> <b>Nombre Archivo:</b> <?php echo $doc['nombrearchivo']; ?> </br>
<?php echo $doc['descripcion']; ?>
<br /><a href="download.php?doc=<?php echo $doc['_id']; ?>" target="_blank">Descargar</a>|<a href="./?del=<?php echo $doc['_id']; ?>" target="_blank">Eliminar</a>|Fecha de publicación: <?php echo date('g:i a - d/m/Y', $doc['fecha']->sec); ?>
</p>
<?php
/****************************************************************************************/
endwhile;
}
function busqueda($buscar)
{
$buscar=htmlspecialchars(trim($buscar));
$cursor=0;
$trozos=explode(" ",$buscar);
$numero=count($trozos);
if($numero==1) // Algoritmo de búsqueda con una palabra
{
$regex = new MongoRegex('/'.$buscar.'/'); // ~= lyke
$cursor = MongoCon()->find(array('$or' => array(
array("titulo" => $regex),
array("descripcion" => $regex),
array("etiquetas" => $regex)
)));
while ($cursor->hasNext()):
$doc= $cursor->getNext();
/****************************************************************************************/
?>
<p><h3><?php echo $doc['titulo']; ?></h3>
<?php echo $doc['descripcion']; ?>
<br /><a href="download.php?doc=<?php echo $doc['_id']; ?>" target="_blank">Descargar</a>|<a href="./?del=<?php echo $doc['_id']; ?>" target="_blank">Eliminar</a>|Fecha de publicación: <?php echo date('g:i a - d/m/Y', $doc['fecha']->sec); ?>
</p>
<?php
/****************************************************************************************/
endwhile;
}
else // Algoritmo de búsqueda con más de una palabra
{
$m = new MongoClient(); // connect
$db = $collection = $m->safedocuments; // get the database named "safedocuments"
$collection = $db->documentos; // get the collection "bar" from database named "documentos"
$collection->ensureIndex(
array(
'titulo' => 'text',
'descripcion' => 'text',
'etiquetas' => 'text'
));
$cursor = $db->command(
array(
'text' => 'documentos', //this is the name of the collection where we are searching
'search' => $buscar, //the string to search
'limit' => 10, //the number of results, by default is 1000
'project' => Array( //the fields to retrieve from db
'titulo' => 1,
'descripcion' => 1,
'fecha' => 1,
)
)
);
//print_r($cursor);
//print_r($cursor['results'][0]['obj']['_id']);
//echo '</br> =>'.$cursor['results'][0]['obj']['_id'];
foreach ($cursor['results'] as $array) {
/****************************************************************************************/
?>
<p><h3><?php echo $array['obj']['titulo']; ?></h3>
<?php echo $array['obj']['descripcion']; ?>
<br /><a href="download.php?doc=<?php echo $array['obj']['_id']; ?>" target="_blank">Descargar</a>|<a href="./?del=<?php echo $array['obj']['_id']; ?>" target="_blank">Eliminar</a>|Fecha de publicación: <?php echo date('g:i a - d/m/Y', $array['obj']['fecha']->sec); ?>
</p>
<?php
/****************************************************************************************/
}
}
}
function reg_document($titulo,$descripcion,$palabras_clave,$idusuario, $file,$fecha,$file_name)
{
$documento=array(
'titulo' => $titulo,
'descripcion' => $descripcion,
'etiquetas' => $palabras_clave,
'idusuario' => $idusuario,
'archivo' => $file,
'nombrearchivo' => $file_name,
'fecha' => new MongoDate());
try{
// MongoCon()->insert($documento);
MongoCon()->save($documento);
return true;
} catch (MongoCursorException $e)
{
return false;
}
}
function del_document($idDocument)
{
try{
MongoCon()->remove(array('_id' => new MongoId($idDocument)));
}
catch (Exception $e) {
die("Se produjo un error al intentar eliminar el documento => " . $e->getMessage());
}
}
function del_file($cod_file)
{
if (exist_file($cod_file))
{
try
{
$vname_file=nameFile($cod_file);
if (!unlink(pathFiles().$vname_file[0]))
{
return false;
}
else { return true; }
}
catch (Exception $e) { return false; }
}
else {return true;}
}
function exist_file($cod_file)
{
$vname_file=nameFile($cod_file);
if (file_exists(pathFiles().$vname_file[0]))
{return true; }
else {return false; }
}
?>