forked from ncavalierm/sunat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
homologacion_backuo.php
executable file
·134 lines (128 loc) · 4.82 KB
/
homologacion_backuo.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
<?php
//$soap = new SoapClient('https://www.sunat.gob.pe:443/ol-ti-itcpgem-sqa/billService?wsdl');
//$soap = new SoapClient('https://e-beta.sunat.gob.pe/ol-ti-itcpfegem-beta/billService?wsdl');
//var_dump($soap->__getFunctions());
$nameXml = '20532710066-08-FF50-1';
// 2.- Firmar documento xml
// ========================
require './robrichards/src/xmlseclibs.php';
use RobRichards\XMLSecLibs\XMLSecurityDSig;
use RobRichards\XMLSecLibs\XMLSecurityKey;
// Cargar el XML a firmar
$doc = new DOMDocument();
$doc->load('homo/'.$nameXml.'.xml');
// Crear un nuevo objeto de seguridad
$objDSig = new XMLSecurityDSig();
// Utilizar la canonización exclusiva de c14n
$objDSig->setCanonicalMethod(XMLSecurityDSig::EXC_C14N);
// Firmar con SHA-256
$objDSig->addReference(
$doc,
XMLSecurityDSig::SHA1,
array('http://www.w3.org/2000/09/xmldsig#enveloped-signature'),
array('force_uri' => true)
);
//Crear una nueva clave de seguridad (privada)
$objKey = new XMLSecurityKey(XMLSecurityKey::RSA_SHA1, array('type' => 'private'));
//Cargamos la clave privada
$objKey->loadKey('./archivos_pem/private_key.pem', true);
$objDSig->sign($objKey);
// Agregue la clave pública asociada a la firma
$objDSig->add509Cert(file_get_contents('./archivos_pem/public_key.pem'), true, false, array('subjectName' => true)); // array('issuerSerial' => true, 'subjectName' => true));
// Anexar la firma al XML
$objDSig->appendSignature($doc->getElementsByTagName('ExtensionContent')->item(1));
// Guardar el XML firmado
$doc->save('homo/'.$nameXml.'.xml');
chmod('homo/'.$nameXml.'.xml', 0777);
// 3.- Enviar documento xml y obtener respuesta
// ============================================
require('./lib/pclzip.lib.php'); // Librería que comprime archivos en .ZIP
## Creación del archivo .ZIP
$zip = new PclZip('homo/'.$nameXml.'.zip');
$zip->create('homo/'.$nameXml.'.xml',PCLZIP_OPT_REMOVE_ALL_PATH);
chmod('homo/'.$nameXml.'.zip', 0777);
# Procedimiento para enviar comprobante a la SUNAT
class feedSoap extends SoapClient{
public $XMLStr = "";
public function setXMLStr($value){
$this->XMLStr = $value;
}
public function getXMLStr(){
return $this->XMLStr;
}
public function __doRequest($request, $location, $action, $version, $one_way = 0){
$request = $this->XMLStr;
$dom = new DOMDocument('1.0');
try{
$dom->loadXML($request);
} catch (DOMException $e) {
die($e->code);
}
$request = $dom->saveXML();
//Solicitud
return parent::__doRequest($request, $location, $action, $version, $one_way = 0);
}
public function SoapClientCall($SOAPXML){
return $this->setXMLStr($SOAPXML);
}
}
function soapCall($wsdlURL, $callFunction = "", $XMLString){
$client = new feedSoap($wsdlURL, array('trace' => true));
$reply = $client->SoapClientCall($XMLString);
//echo "REQUEST:\n" . $client->__getFunctions() . "\n";
$client->__call("$callFunction", array(), array());
//$request = prettyXml($client->__getLastRequest());
//echo highlight_string($request, true) . "<br/>\n";
return $client->__getLastResponse();
//print_r($client);
}
//URL para enviar las solicitudes a SUNAT
$wsdlURL = 'https://www.sunat.gob.pe/ol-ti-itcpgem-sqa/billService?wsdl';
//Estructura del XML para la conexión
$XMLString = '<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ser="http://service.sunat.gob.pe"
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<soapenv:Header>
<wsse:Security>
<wsse:UsernameToken>
<wsse:Username>20532710066ROMANTRE</wsse:Username>
<wsse:Password>T3E4A5M6S7</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
<soapenv:Body>
<ser:sendBill>
<fileName>'.$nameXml.'.zip</fileName>
<contentFile>' . base64_encode(file_get_contents('./homo/'.$nameXml.'.zip')) . '</contentFile>
</ser:sendBill>
</soapenv:Body>
</soapenv:Envelope>';
//echo $XMLString;
//Realizamos la llamada a nuestra función
$result = soapCall($wsdlURL, $callFunction = "sendBill", $XMLString);
//Descargamos el Archivo Response
$archivo = fopen('homo/'.'C'.$nameXml.'.xml','w+');
fputs($archivo,$result);
fclose($archivo);
//LEEMOS EL ARCHIVO XML
$xml = simplexml_load_file('homo/'.'C'.$nameXml.'.xml');
foreach ($xml->xpath('//applicationResponse') as $response){ }
//AQUI DESCARGAMOS EL ARCHIVO CDR(CONSTANCIA DE RECEPCIÓN)
$cdr=base64_decode($response);
$archivo = fopen('homo/'.'R-'.$nameXml.'.zip','w+');
fputs($archivo,$cdr);
fclose($archivo);
chmod('homo/'.'R-'.$nameXml.'.zip', 0777);
$archive = new PclZip('homo/'.'R-'.$nameXml.'.zip');
/*
if ($archive->extract('homo/')==0) {
die("Error : ".$archive->errorInfo(true));
}else{
chmod('homo/'.$nameXml.'.xml', 0777);
}
*/
//Eliminamos el Archivo Response
unlink('homo/'.'C'.$nameXml.'.xml');
?>