openstamanager/plugins/importFE/src/Interaction.php

101 lines
2.3 KiB
PHP
Raw Normal View History

2018-11-30 15:33:25 +01:00
<?php
namespace Plugins\ImportFE;
2019-07-19 15:23:00 +02:00
use API\Services;
2018-11-30 15:33:25 +01:00
/**
* Classe per l'interazione con API esterne.
*
* @since 2.4.3
*/
2019-07-19 15:23:00 +02:00
class Interaction extends Services
2018-11-30 15:33:25 +01:00
{
2019-07-24 17:17:54 +02:00
public static function getInvoiceList()
2018-11-30 15:33:25 +01:00
{
2019-07-24 17:17:54 +02:00
$list = self::getRemoteList();
// Ricerca fisica
$names = array_column($list, 'name');
$files = self::getFileList($names);
$list = array_merge($list, $files);
// Aggiornamento cache hook
InvoiceHook::update($list);
return $list;
}
2018-11-30 15:33:25 +01:00
2019-07-24 17:17:54 +02:00
public static function getRemoteList()
{
2019-02-12 11:42:48 +01:00
// Ricerca da remoto
if (self::isEnabled()) {
2019-02-19 15:59:27 +01:00
$response = static::request('POST', 'fatture_da_importare');
2019-02-12 11:42:48 +01:00
$body = static::responseBody($response);
2018-11-30 15:33:25 +01:00
2019-02-19 15:59:27 +01:00
if ($body['status'] == '200') {
2019-07-22 09:52:27 +02:00
$list = $body['results'];
}
}
2019-07-24 17:17:54 +02:00
return $list ?: [];
}
2019-07-24 17:17:54 +02:00
public static function getFileList($names = [])
{
$list = [];
2019-07-22 09:52:27 +02:00
// Ricerca fisica
2019-07-22 11:35:44 +02:00
$directory = FatturaElettronica::getImportDirectory();
2019-07-22 09:52:27 +02:00
$files = glob($directory.'/*.xml*');
2019-07-24 17:39:11 +02:00
foreach ($files as $id => $file) {
2019-07-22 09:52:27 +02:00
$name = basename($file);
2019-01-25 11:02:36 +01:00
2019-07-22 09:52:27 +02:00
if (!in_array($name, $names)) {
$list[] = [
2019-07-24 17:39:11 +02:00
'id' => $id,
2019-07-22 09:52:27 +02:00
'name' => $name,
2019-07-24 17:39:11 +02:00
'file' => true,
2019-07-22 09:52:27 +02:00
];
2019-01-22 08:59:11 +01:00
}
}
2019-02-12 11:42:48 +01:00
2019-07-22 09:52:27 +02:00
return $list;
2018-11-30 15:33:25 +01:00
}
2019-07-24 17:17:54 +02:00
public static function getInvoiceFile($name)
2018-11-30 15:33:25 +01:00
{
$directory = FatturaElettronica::getImportDirectory();
$file = $directory.'/'.$name;
if (!file_exists($file)) {
2019-02-19 15:59:27 +01:00
$response = static::request('POST', 'fattura_da_importare', [
2018-11-30 15:33:25 +01:00
'name' => $name,
]);
2018-12-14 12:50:44 +01:00
$body = static::responseBody($response);
2018-11-30 15:33:25 +01:00
2018-12-14 12:50:44 +01:00
FatturaElettronica::store($name, $body['content']);
2018-11-30 15:33:25 +01:00
}
return $name;
}
2019-01-22 08:59:11 +01:00
2019-07-24 17:17:54 +02:00
public static function processInvoice($filename)
2019-01-22 08:59:11 +01:00
{
2019-02-19 15:59:27 +01:00
$response = static::request('POST', 'fattura_xml_salvata', [
2019-09-16 11:59:26 +02:00
'filename' => $filename,
]);
2019-01-22 08:59:11 +01:00
2019-01-25 11:02:36 +01:00
$body = static::responseBody($response);
2019-01-22 08:59:11 +01:00
2019-02-20 16:07:42 +01:00
$message = '';
2019-02-19 15:59:27 +01:00
if ($body['status'] != '200') {
$message = $body['status'].' - '.$body['message'];
2019-01-25 11:02:36 +01:00
}
2019-01-22 08:59:11 +01:00
return $message;
}
2018-11-30 15:33:25 +01:00
}