forked from albertotrece/sat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfdcvali.php
794 lines (759 loc) · 28.5 KB
/
cfdcvali.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
<?php
//
// +---------------------------------------------------------------------------+
// | cfdcvali.php : Recibe un archivo XML y valida que cumpla con los requi- |
// | sitos del SAT, certificado CSD autorizado, |
// | estructura contra esquema, sello contra cadena original |
// +---------------------------------------------------------------------------+
// | Copyright (c) 2011 Fabrica de Jabon la Corona, SA de CV |
// +---------------------------------------------------------------------------+
// | This program is free software; you can redistribute it and/or |
// | modify it under the terms of the GNU General Public License |
// | as published by the Free Software Foundation; either version 2 |
// | of the License, or (at your option) any later version. |
// | |
// | This program is distributed in the hope that it will be useful, |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
// | GNU General Public License for more details. |
// | |
// | You should have received a copy of the GNU General Public License |
// | along with this program; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA|
// +---------------------------------------------------------------------------|
// | Autor: Fernando Ortiz <[email protected]> |
// +---------------------------------------------------------------------------+
// | 22/feb/2011 Primera version 'publica' con validacion basicas CFD y CFDI. |
// | |
// | 17/mar/2011 Se le agraga el content-type, charset=utf-8 para que se vea |
// | bien los caracteres acentuados @erick |
// | |
// | se le agrega *_replace para quitar saltos de lineas al |
// | certificado @alberto850822 |
// | |
// | 02/jun/2011 Se valida el sello del TFD |
// | |
// | 01/jul/2011 Elimina addenda cfdi: ... |
// | |
// | 06/sep/2012 Acepta cualquier complemento, versiones 2.0, 2.2, 3.0 y 3.2 |
// | |
// | 12/feb/2014 Valida que exista CFDI en portal del SAT |
// | ftp://ftp2.sat.gob.mx/asistencia_servicio_ftp/publicaciones/cfdi/WS_ConsultaCFDI.pdf
// | |
// | 28/mar/2014 ftp2 del sat esta saturado, almacenar localmente certificados |
// | |
// | 30/jul/2014 Se quita validacion de folios ya no esta en el ftp del SAT |
// ftp://ftp2.sat.gob.mx/agti_servicio_ftp/verifica_comprobante_ftp/FoliosCFD.txt
// | |
// | 19/sep/14 utf8_encode para usar el wwebservice del sat |
// | gracias a Fernando Colin |
// | |
// | 30/ene/15 Validacion de constancias de retenciones ademas de CFD |
// | |
// | 30/ene/15 Nueva URL para descarga de certificados del SAT (Rene Calderon) |
// | https://rdc.sat.gob.mx/rccf/$p1/$p2/$p3/$p4/$p5/$no_cert.cer |
// | |
// | 17/mar/15 Nueva estructura de directorio para repositorio GIT |
// | xsd / xslt |
// | |
// | 19/mar/15 Valida autoridad certificadora, para comprobar certificado |
// | sea emitido por el SAT |
// +---------------------------------------------------------------------------+
//
?>
<HTML>
<HEAD>
<meta http-equiv="Expires" content="Mon, 26 Jul 1997 05:00:00 GMT">
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<TITLE>Validacion de documentos electronicos (XML) CFD/CFDI/Retenciones</TITLE>
<link rel="STYLESHEET" href="fortiz.css" media="screen" type="text/css">
<?php
// Es solo para llevar mi estadistica en Google Analytics, ustedes quitenlo ...
@include("urchin/corona.html");
?>
</HEAD>
<BODY>
<div align=center>
<H1>Validacion de Documentos Electronicos XML</H1>
<H2>CFD/CFDI/Retenciones</H2>
<br><hr><br>
<form method='post' enctype='multipart/form-data'>
Archivo <input type='file' name='arch' size='60'>
<INPUT TYPE="submit" VALUE="Valida" >
<br><br><hr>
</FORM>
<a href=https://github.com/fortiz/sat>Codigo Fuente</a>
<?php
error_reporting(E_ALL & ~(E_STRICT|E_NOTICE|E_WARNING|E_DEPRECATED));
if (trim($_FILES['arch']['name'])=="") die("no arch");
if ($_FILES['arch']['error']==1 || $_FILES['arch']['size']==0) {
echo "<h1><red>NO SUBIO archivo, demasiado grande</red></h1>";
die();
}
$arch = $_FILES['arch']['tmp_name'];
$texto = file_get_contents($arch);
unlink($arch);
if( substr($texto, 0,3) == pack("CCC",0xef,0xbb,0xbf) ) {
$texto = substr($texto, 3);
echo "<h3>Tenia BOM, Eliminado</h3>";
}
if (!mb_check_encoding($texto,"utf-8")) {
echo "<h3>Error en XML, no esta en UTF-8!</h3>";
}
$nuevo = utf8_decode($texto);
if (mb_check_encoding($nuevo,"utf-8") && $nuevo != $texto) {
echo "<h3>Sigue siendo utf8, usa decode</h3>";
$texto = $nuevo;
}
///////////////////////////////////////////////////////////////////////////
// Quita Addenda solo valida fiscal
$texto = preg_replace('{<Addenda.*/Addenda>}is', '', $texto);
$texto = preg_replace('{<cfdi:Addenda.*/cfdi:Addenda>}is', '', $texto);
///////////////////////////////////////////////////////////////////////////
// Para ver en la Pantalla el XML recibido (sin addenda)
/*
* Paquetes para ver bonito el codigo en la pantalla
* No son necesarios 'para validar'
* solo son para 'ver bonito' lo que se valida
*
* Son gratuitos se obtienen de pear.php.net
* http://pear.php.net/package/XML_Beautifier/
*
* Alguna dependencia de pear se baja del mismo pear
* http://pear.php.net/package/XML_Parser
* */
require_once 'lib/XML/Beautifier.php';
$fmt = new XML_Beautifier();
$fmt->setOption("multilineTags", TRUE);
$paso = $fmt->formatString($texto);
if (substr($paso,0,10)!="XML_Parser") $texto=$paso; // XML correctamente formado
?>
<div align=left>
<script src="/fortiz/code/codemirror/lib/codemirror.js"></script>
<link rel="stylesheet" href="/fortiz/code/codemirror/lib/codemirror.css">
<script src="/fortiz/code/codemirror/mode/xml/xml.js"></script>
<textarea rows=40 cols=120 name=texto id=texto>
<?php echo $texto; ?>
</textarea>
<script>
var myCodeMirror = CodeMirror.fromTextArea(texto, {
lineNumbers: true,
readOnly: true,
mode: "xml"
});
</script>
<?php
/////////////////////////////////////////////////////////////////////////////
libxml_use_internal_errors(true); // Gracias a Salim Giacoman
$xml = new DOMDocument();
$ok = $xml->loadXML($texto);
if (!$ok) {
display_xml_errors();
die();
}
if (strpos($texto,"cfdi:Comprobante")!==FALSE) {
$tipo="cfdi";
} elseif (strpos($texto,"<Comprobante")!==FALSE) {
$tipo="cfd";
} elseif (strpos($texto,"retenciones:Retenciones")!==FALSE) {
$tipo="retenciones";
} else {
die("Tipo de XML no identificado ....");
}
////////////////////////////////////////////////////////////////////////////
// Con el arbol DOM buscamos los atributos
if ($tipo=="retenciones") {
$root = $xml->getElementsByTagName('Retenciones')->item(0);
$Version = $root->getAttribute("Version");
} else {
$root = $xml->getElementsByTagName('Comprobante')->item(0);
$version = $root->getAttribute("version");
if ($version==null) $version = $root->getAttribute("Version");
}
$Receptor = $root->getElementsByTagName('Receptor')->item(0);
$Emisor = $root->getElementsByTagName('Emisor')->item(0);
$data['seri'] = $root->getAttribute("serie");
$data['fecha'] = $root->getAttribute("fecha");
$data['noap'] = $root->getAttribute("noAprobacion");
$data['anoa'] = $root->getAttribute("anoAprobacion");
$data['tipo']=$tipo;
if ($tipo=="retenciones") {
$rfc = $Emisor->getAttribute('RFCEmisor');
$data['rfc'] = utf8_decode($rfc);
$rfc = $Receptor->getAttribute('RFCRecep');
$data['rfc_receptor'] = utf8_decode($rfc);
$data['version'] = $root->getAttribute("Version");
$data['no_cert'] = $root->getAttribute("NumCert");
$data['cert'] = $root->getAttribute("Cert");
$data['sell'] = $root->getAttribute("Sello");
$Totales = $root->getElementsByTagName('Totales')->item(0);
$data['total'] = $Totales->getAttribute("montoTotGrav");
} else {
$data['version'] = $version;
if ($version=="3.3") { // Mayusculas
$data['total'] = $root->getAttribute('Total');
$data['no_cert'] = $root->getAttribute('NoCertificado');
$data['cert'] = $root->getAttribute('Certificado');
$data['sell'] = $root->getAttribute('Sello');
$rfc = $Emisor->getAttribute('Rfc');
$data['rfc'] = utf8_decode($rfc);
$rfc = $Receptor->getAttribute('Rfc');
$data['rfc_receptor'] = utf8_decode($rfc);
} else { // NO es 3.3, es 3.2 o anterior minusculas
$data['total'] = $root->getAttribute('total');
$data['no_cert'] = $root->getAttribute('noCertificado');
$data['cert'] = $root->getAttribute('certificado');
$data['sell'] = $root->getAttribute('sello');
$rfc = $Emisor->getAttribute('rfc');
$data['rfc'] = utf8_decode($rfc);
$rfc = $Receptor->getAttribute('rfc');
$data['rfc_receptor'] = utf8_decode($rfc);
} // version 3.3
} // Retencion o CFDI
$TFD = $root->getElementsByTagName('TimbreFiscalDigital')->item(0);
if ($TFD!=null) {
$data['version_tfd'] = $TFD->getAttribute("Version");
if ($data['version_tfd'] == "") $data['version_tfd'] = $TFD->getAttribute("version");
if ($data['version_tfd'] == "1.0") {
$data['sellocfd'] = $TFD->getAttribute("selloCFD");
$data['sellosat'] = $TFD->getAttribute("selloSAT");
$data['no_cert_sat'] = $TFD->getAttribute("noCertificadoSAT");
} else {
$data['sellocfd'] = $TFD->getAttribute("SelloCFD");
$data['sellosat'] = $TFD->getAttribute("SelloSAT");
$data['no_cert_sat'] = $TFD->getAttribute("NoCertificadoSAT");
}
$data['uuid'] = $TFD->getAttribute("UUID");
} else {
$data['sellocfd'] = null;
$data['sellosat'] = null;
$data['no_cert_sat'] = null;
$data['uuid'] = null;
}
// Valores guardados en un arreglo para ser usado por las funciones
/////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// Conexion a la base de datos para leer los catalogos de claves
// y el cache de certificados
//
// myconn es una conexion a MI BASE DE DATOS
// yo uso adodb http://adodb.org/dokuwiki/doku.php
// https://github.com/ADOdb/ADOdb
// pero ya los parametros de conexion a mi base de datos no te digo ;)
require_once "myconn/myconn.inc.php";
$conn=myconn();
////////////////////////////////////////////////////////////////////////////
valida_xsd(); // esquema o 'sintaxis'
if ($data['tipo']=="cfdi") { // por lo pronto semantica solo para CFDI
valida_semantica();
}
valida_sello(); // sello del comprobante
if ($data['sellosat']!="") {
valida_sello_tfd(); // sello del timbre
if ($data['tipo']=="cfdi") {
valida_en_sat(); // Por lo pronto retenciones no se valida en SAT
}
}
// {{{ Valida_XSD
function valida_xsd() {
/*
* Todos los archivos que se requieren para hacer la validacion
* fueron descargados del portal del SAT pero los tengo localmente
* almacenados en mi maquina para que las validaciones sean mas rapidas.
* Ademas el archivo prinicpal cfdv32.xsd esta 'un poco' modifcado para
* que importe los complementos
*
* */
global $data, $xml,$texto;
libxml_use_internal_errors(true); // Gracias a Salim Giacoman
if ($data['tipo']=="retenciones") {
switch ($data['version']) {
case "1.0":
echo "Version 1.0 Retenciones<br>";
$ok = $xml->schemaValidate("xsd/retencionpagov1.xsd");
break;
default:
$ok = false;
echo "Version invalida $tipo ".$data['version']."<br>";
}
} else {
switch ($data['version']) {
case "2.0":
echo "Version 2.0 CFD<br>";
$ok = $xml->schemaValidate("xsd/cfdv2complemento.xsd");
break;
case "2.2":
echo "Version 2.2 CFD<br>";
$ok = $xml->schemaValidate("xsd/cfdv22complemento.xsd");
break;
case "3.0":
echo "Version 3.0 (CFDI)<br>";
$ok = $xml->schemaValidate("xsd/cfdv3complemento.xsd");
break;
case "3.2":
echo "Version 3.2 CFDI<br>";
$ok = $xml->schemaValidate("xsd/cfdv32.xsd");
break;
case "3.3":
echo "Version 3.3 CFDI<br>";
$ok = $xml->schemaValidate("xsd/cfdv33.xsd");
break;
default:
$ok = false;
echo "Version invalida $tipo ".$data['version']."<br>";
}
}
if ($ok) {
echo "<h3>Esquema valido</h3>";
} else {
echo "<h3>Estructura contra esquema incorrecta</h3>";
display_xml_errors();
}
echo "<hr>";
}
// }}} Valida XSD
// {{{ Valida_semantica
function valida_semantica() {
/* La sintaxis se valida contra el XSD, pero para algunos complementos
* dieron varias reglas de validacion adicionales, a esas le llame
*
* Reglas de semantica
* ine
* cce
* nomina
* cfdi 3.3
* */
global $texto,$data;
if (strpos($texto,"ine:INE")!==FALSE) {
semantica_ine();
}
if (strpos($texto,"cce:ComercioExterior")!==FALSE) {
semantica_cce();
}
if (strpos($texto,"cce11:ComercioExterior")!==FALSE) {
semantica_cce11();
}
if (strpos($texto,"nomina12:Nomina")!==FALSE) {
semantica_nomi12();
}
if (strpos($texto,"pago10:Pagos")!==FALSE) {
semantica_pago10();
}
if (strpos($texto,"cfdi:Comprobante")!==FALSE) {
semantica_cfdi();
}
}
// }}} Valida semantica
// {{{ Valida semantica ine
function semantica_ine() {
global $xml, $conn;
echo "<h2>Semantica INE</h2>";
require_once("semantica_ine.php");
$ine = new Ine();
$ine->valida($xml,$conn);
echo "<h2>$ine->status</h2>";
}
// }}}
// {{{ Valida semantica cce
function semantica_cce() {
global $xml, $conn;
echo "<h2>Semantica CCE</h2>";
require_once("semantica_cce.php");
$cce = new Cce();
$cce->valida($xml,$conn);
echo "<h2>$cce->codigo</h2>";
echo "<hr/>";
}
// }}} Valida semantica cce
// {{{ Valida semantica cce11
function semantica_cce11() {
global $xml, $conn;
echo "<h2>Semantica CCE Version 1.1</h2>";
require_once("semantica_cce11.php");
$cce = new Cce11();
$cce->valida($xml,$conn);
echo "<h2>".str_replace("; ","<br>",$cce->status)."</h2>";
echo "<hr/>";
}
// }}} Valida semantica cce
// {{{ Valida semantica nomi12
function semantica_nomi12() {
global $xml, $conn;
echo "<h2>Semantica NOMINA 12</h2>";
require_once("semantica_nomi12.php");
$nomi = new Nomi12();
$nomi->valida($xml,$conn);
echo "<h2>".str_replace("; ","<br>",$nomi->status)."</h2>";
echo "<hr/>";
}
// }}} Valida semantica nomi12
// {{{ Valida semantica pago10
function semantica_pago10() {
global $xml, $conn;
echo "<h2>Semantica Pagos 1.0</h2>";
require_once("semantica_pagos10.php");
$pago = new Pagos10();
$pago->valida($xml,$conn);
echo "<h2>$pago->codigo</h2>";
echo "<hr/>";
}
// }}} Valida semantica pago10
// {{{ Valida semantica cfdi
function semantica_cfdi() {
global $xml, $conn;
echo "<h2>Semantica CFDI 3.3</h2>";
require_once("semantica_cfdi.php");
$sem = new Sem_CFDI();
$sem->valida($xml,$conn);
echo "<h2>$sem->codigo</h2>";
echo "<hr/>";
}
// }}} Valida semantica nomi12
// {{{ Valida Sello
function valida_sello() {
/*
* Todos los archivos que se requieren para generar la cadena original
* fueron descargados del portal del SAT pero los tengo localmente
* almacenados en mi maquina para que el proceso sea mas rapido.
*
* Todos los archivos estan modificacion por el numero de version 2 a 1,
* para que no mande warning PHP
*
* */
global $data, $xml;
$xsl = new DOMDocument;
if ($data['tipo']=="retenciones") {
switch ($data['version']) {
case "1.0":
$xsl->load('xslt/retenciones.xslt');
$algo =OPENSSL_ALGO_SHA1;
break;
default:
echo "version incorrecta ".$data['tipo']." ".$data['version']."\n";
break;
}
} else {
switch ($data['version']) {
case "2.0":
$xsl->load('xslt/cadenaoriginal_2_0.xslt');
if (substr($data['fecha'],0,4)<2011) {
echo "md5 \n";
$algo = OPENSSL_ALGO_MD5;
} else {
echo "sha1 \n";
$algo =OPENSSL_ALGO_SHA1;
}
break;
case "2.2":
echo "2.2\n";
$xsl->load('xslt/cadenaoriginal_2_2.xslt');
echo "sha1 \n";
$algo = OPENSSL_ALGO_SHA1;
break;
case "3.0":
$xsl->load('xslt/cadenaoriginal_3_0.xslt');
if (substr($data['fecha'],0,4)<2011) {
echo "md5 \n";
$algo = OPENSSL_ALGO_MD5;
} else {
echo "sha1 \n";
$algo =OPENSSL_ALGO_SHA1;
}
break;
case "3.2":
echo "3.2\n";
$xsl->load('xslt/cadenaoriginal_3_2.xslt');
echo "sha1 \n";
$algo = OPENSSL_ALGO_SHA1;
break;
case "3.3":
echo "3.3\n";
$xsl->load('xslt/cadenaoriginal_3_3.xslt');
echo "sha256 \n";
$algo = OPENSSL_ALGO_SHA256;
break;
default:
echo "version incorrecta ".$data['tipo']." ".$data['version']."\n";
break;
}
}
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl);
$cadena = $proc->transformToXML($xml);
echo "Cadena Original<br><p align=left>$cadena</p><br>";
if ($algo==OPENSSL_ALGO_SHA1) {
$sha1=sha1($cadena);
echo "hash sha1=$sha1<br>";
} elseif ($algo==OPENSSL_ALGO_SHA256) {
$sha256=hash("sha256",$cadena);
echo "hash sha256=$sha256<br>";
} else {
$md5=md5($cadena);
echo "hash md5=$md5<br>";
}
if (!mb_check_encoding($cadena,"utf-8")) {
echo "<h3>Error no esta en UTF-8!</h3>";
}
/*
* El domicilio es opcional, pero si no lo ponemos el xslt del SAT genera
* doble pip en el pais ..., dice que el sello es correcto pero los PACs
* que validan bien lo rechazan ...
* */
$doble = preg_match('/.\|\|./',$cadena);
if ($doble===1) {
echo "<h3><font color=red>La cadena tiene doble pipes en medio ...</font></h3>";
}
// Primer certificado (o unico) del emisor
// Los demas certificados es del PAC, Timbre, etc.
$pem = (sizeof($data['cert'])<=1) ? $data['cert'] : $data['cert'][0];
$pem = preg_replace("/[\n|\r|\n\r]/", '', $pem);
$pem = preg_replace('/\s\s+/', '', $pem);
// Si no incluye el certificado bajarlo del FTP del sat ....
if (strlen($pem)==0) {
echo "No incluye certificado interno, descargarlo del FTP del sat ...<br>";
$pem=get_sat_cert($data['no_cert']);
}
$cert = "-----BEGIN CERTIFICATE-----\n".chunk_split($pem,64)."-----END CERTIFICATE-----\n";
$pubkeyid = openssl_get_publickey(openssl_x509_read($cert));
if (!$pubkeyid) {
echo "Certificado interno Incorrecto, descargarlo del FTP del sat ...<br>";
$pem=get_sat_cert($data['no_cert']);
$cert = "-----BEGIN CERTIFICATE-----\n".chunk_split($pem,64)."-----END CERTIFICATE-----\n";
$pubkeyid = openssl_get_publickey(openssl_x509_read($cert));
}
valida_pubkey(openssl_x509_read($cert));
$ok = openssl_verify($cadena,
base64_decode($data['sell']),
$pubkeyid,
$algo);
if ($ok == 1) {
echo "<h3>Sello ok</h3>";
} else {
echo "<h3>Sello incorrecto</h3>";
while ($msg = openssl_error_string())
echo $msg. "\n";
}
openssl_free_key($pubkeyid);
echo "<hr>";
$paso = openssl_x509_parse($cert);
$serial = convierte($paso['serialNumber']);
if ($serial!=$data['no_cert']) {
echo "Serie reportada ".$data['no_cert']." serie usada $serial<br>";
}
}
// }}} Valida Sello
// {{{ Valida CA (Autoridad Certificadora) certificado raiz sea del sat
function valida_pubkey($pubkeyid) {
$ca = array(__DIR__."/raiz/");
$ok = openssl_x509_checkpurpose($pubkeyid, X509_PURPOSE_ANY, $ca);
if ($ok) {
echo "<h3>Certificado emitido por el SAT</h3>";
} else {
echo "<h3>Certificado apocrifo, No es del SAT</h3>";
}
}
// }}} Valida Sello
// {{{ Valida Sello TFD
function valida_sello_tfd() {
global $data, $texto;
if ($data['sell'] != $data['sellocfd']) {
echo "<h3>sello Comprobante diferente que sello TFD!, manipulado?</h3>";
}
// Quita la parte del CFDI
$texto_tfd = preg_replace('{<cfdi:Comprobante.*<tfd:}is', '<tfd:', $texto);
$texto_tfd = preg_replace('{<retenciones:Retenciones.*<tfd:}is', '<tfd:', $texto_tfd);
$texto_tfd = trim(preg_replace('{/>.*$}is', '/>', $texto_tfd));
// Si no tiene el namespace definido, se agrega
if (strpos($texto_tfd,"xmlns:tfd")===FALSE) {
$texto_tfd = substr($texto_tfd,0,-2).' xmlns:tfd="http://www.sat.gob.mx/TimbreFiscalDigital" />';
}
// echo htmlspecialchars($texto_tfd);
// Solo se quedo el tfd:
$xml_tfd = new DOMDocument();
$ok = $xml_tfd->loadXML($texto_tfd);
$xsl = new DOMDocument;
if ($data['version_tfd'] == "1.0") {
$xsl->load('xslt/cadenaoriginal_TFD_1_0.xslt');
$alg = OPENSSL_ALGO_SHA1;
} else {
$xsl->load('xslt/cadenaoriginal_TFD_1_1.xslt');
$alg = OPENSSL_ALGO_SHA256;
}
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl);
$cadena = $proc->transformToXML($xml_tfd);
echo "Cadena Original TFD<br><p align=left>$cadena</p><br>";
if (!mb_check_encoding($cadena,"utf-8")) {
echo "<h3>Error no esta en UTF-8!</h3>";
}
// Certificado del PAC
$pem=get_sat_cert($data['no_cert_sat']);
$cert = "-----BEGIN CERTIFICATE-----\n".chunk_split($pem,64)."-----END CERTIFICATE-----\n";
// file_put_contents("/tmp/llave.cer.pem",$cert);
valida_pubkey(openssl_x509_read($cert));
$pubkeyid = openssl_get_publickey(openssl_x509_read($cert));
$ok = openssl_verify($cadena,
base64_decode($data['sellosat']),
$pubkeyid,
$alg);
if ($ok == 1) {
echo "<h3>Sello TFD ok</h3>";
} else {
echo "<h3>Sello TFD incorrecto</h3>";
while ($msg = openssl_error_string())
echo $msg. "\n";
}
openssl_free_key($pubkeyid);
echo "<hr>";
}
// }}} Valida Sello
// {{{ Valida este XML en el servidor del SAT
// ftp://ftp2.sat.gob.mx/asistencia_servicio_ftp/publicaciones/cfdi/WS_ConsultaCFDI.pdf
function valida_en_sat() {
global $data;
$url = "https://consultaqr.facturaelectronica.sat.gob.mx/consultacfdiservice.svc?wsdl";
$soapclient = new SoapClient($url);
$rfc_emisor = utf8_encode($data['rfc']);
$rfc_receptor = utf8_encode($data['rfc_receptor']);
$impo = (double)$data['total'];
$impo=sprintf("%.6f", $impo);
$impo = str_pad($impo,17,"0",STR_PAD_LEFT);
$uuid = strtoupper($data['uuid']);
$factura = "?re=$rfc_emisor&rr=$rfc_receptor&tt=$impo&id=$uuid";
echo "<h3>$factura</h3>";
$prm = array('expresionImpresa'=>$factura);
$buscar=$soapclient->Consulta($prm);
echo "<h3>El portal del SAT reporta</h3>";
echo "El codigo: ".$buscar->ConsultaResult->CodigoEstatus."<br>";
echo "El estado: ".$buscar->ConsultaResult->Estado."<br>";
}
// }}}
// {{{ Lee del FTP del SAT la llave Publica (Certificado) del CSD
//
// Table "public.cfdcert"
// Column | Type | Modifiers
// -------------+-----------------------------+---------------
// no_serie | character(20) | not null
// certificado | text |
// descarga | timestamp without time zone | default now()
// usado | timestamp without time zone | default now()
// Indexes:
// "cfdcert_pkey" PRIMARY KEY, btree (no_serie)
//
function get_sat_cert($no_cert) {
global $conn;
$llave = $conn->qstr($no_cert); // Evita SQL Injection ...
$pem = $conn->getone("select certificado from cfdcert where no_serie = $llave");
if (strlen($pem)>30) {
// Si ya esta guardado regresalo y actualiza fecha
$conn->execute("update cfdcert set usado = current_timestamp where no_serie = $llave");
echo "Certificado de cache<br>";
} else {
// No esta en la tabla descarga del SAT
$pem=""; $der="";
$p1=substr($no_cert,0,6);
$p2=substr($no_cert,6,6);
$p3=substr($no_cert,12,2);
$p4=substr($no_cert,14,2);
$p5=substr($no_cert,16,2);
$path1 = "ftp://ftp2.sat.gob.mx/certificados/FEA/$p1/$p2/$p3/$p4/$p5/$no_cert.cer";
// Nuevo servidor mas rapido (menos conocido) (Gracias Rene)
$path2 = "https://rdc.sat.gob.mx/rccf/$p1/$p2/$p3/$p4/$p5/$no_cert.cer";
// Realiza 5 intentos para descargar el certificado
// Gracias Rene Calderon
//
// Se ignora el ceftificado del servidor rdc del sat
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$context = stream_context_create($arrContextOptions);
$done = false;
$x = 0;
while ( ! $done ){
//echo "intento: $x<br>";
// Alterna servidor en cada intento ....
$path = (($x%2)==0) ? $path1 : $path2;
$der = file_get_contents("$path",false,$context);
echo "Lee del SAT $path<br>";
if ($der){
$done = true;
} else {
usleep (100000);
}
if ( $x == 5 ) $done = true;
$x++;
}
$pem = base64_encode($der);
if (strlen($pem)>30) {
// Almacena en tabla para la siguiente
$conn->execute("insert into cfdcert (no_serie,certificado)
values ($llave,'$pem')");
}
}
return $pem;
}
// }}}
// {{{ Convierte EL numero de serie del SAT a formato humano
function convierte($dec) {
$hex=bcdechex($dec);
$ser="";
for ($i=1; $i<strlen($hex); $i=$i+2) {
$ser.=substr($hex,$i,1);
}
return $ser;
}
// }}} Convierte
// {{{ bcdechex : como dechex pero para numeros de precision ilimitada
function bcdechex($dec) {
$last = bcmod($dec, 16);
$remain = bcdiv(bcsub($dec, $last), 16);
if($remain == 0) {
return dechex($last);
} else {
return bcdechex($remain).dechex($last);
}
}
// }}} bcdechex
// {{{ display_xml_errors
function display_xml_errors() {
global $texto;
$lineas = explode("\n", $texto);
$errors = libxml_get_errors();
echo "<pre>";
foreach ($errors as $error) {
echo display_xml_error($error, $lineas);
}
echo "</pre>";
libxml_clear_errors();
}
/// }}}}
// {{{ display_xml_error
function display_xml_error($error, $lineas) {
$return = htmlspecialchars($lineas[$error->line - 1]) . "\n";
$return .= str_repeat('-', $error->column) . "^\n";
switch ($error->level) {
case LIBXML_ERR_WARNING:
$return .= "Warning $error->code: ";
break;
case LIBXML_ERR_ERROR:
$return .= "Error $error->code: ";
break;
case LIBXML_ERR_FATAL:
$return .= "Fatal Error $error->code: ";
break;
}
$return .= trim($error->message) .
"\n Linea: $error->line" .
"\n Columna: $error->column";
echo "$return\n\n--------------------------------------------\n\n";
}
/// }}}}
?>
</div>
</BODY>
</HTML>