openstamanager/view.php

78 lines
1.7 KiB
PHP
Raw Normal View History

2019-01-17 16:11:10 +01:00
<?php
include_once __DIR__.'/core.php';
$file_id = filter('file_id');
$file = Models\Upload::find($file_id);
if (empty($file)) {
return;
}
$link = ROOTDIR.'/'.$file->filepath;
if ($file->isFatturaElettronica()) {
$content = file_get_contents(DOCROOT.'/'.$file->filepath);
2019-02-20 16:07:42 +01:00
// Individuazione stylsheet
$stylesheet = 'asso-invoice';
$name = basename($file->original);
$filename = explode('.', $name)[0];
$pieces = explode('_', $filename);
$codice = $pieces[2];
if (!empty($codice)) {
$stylesheet = $codice.'_v1.0';
}
2019-01-17 16:11:10 +01:00
2019-02-20 16:07:42 +01:00
$stylesheet = DOCROOT.'/plugins/xml/'.$stylesheet.'.xsl';
// Fix per ricevute con namespace errato
$content = str_replace('http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0', 'http://www.fatturapa.gov.it/sdi/messaggi/v1.0', $content);
// XML
$xml = DOMDocument::loadXML($content);
2019-01-17 16:11:10 +01:00
// XSLT
$xslt = new XSLTProcessor();
2019-02-20 16:07:42 +01:00
$xslt->importStylesheet(DOMDocument::load($stylesheet));
echo '
<style>
#notifica {
min-width: 860px !important;
}
</style>';
2019-01-17 16:11:10 +01:00
echo $xslt->transformToXML($xml);
} else {
echo '
<style>
body, iframe, img{
border: 0;
margin: 0;
max-width: 100%;
}
iframe{
width:100%;
height:100%;
min-height: 500px;
}
</style>';
if ($file->isImage()) {
echo '
<img src="'.$link.'"></img>';
} else {
if ($file->isPDF()) {
$src = \Prints::getPDFLink($file->filepath);
}
echo '
<iframe src="'.($link ?: $src).'">
<a src="'.$link.'">'.tr('Il browser non supporta i contenuti iframe: clicca qui per raggiungere il file originale').'</a>
</iframe>';
}
}