forked from emaijala/MLInvoice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapiclient.php
More file actions
137 lines (126 loc) · 3.67 KB
/
apiclient.php
File metadata and controls
137 lines (126 loc) · 3.67 KB
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
<?php
/**
* Client interface for online mailing APIs
*
* PHP version 5
*
* Copyright (C) 2018 Ere Maijala
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category MLInvoice
* @package MLInvoice\Base
* @author Ere Maijala <ere@labs.fi>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://labs.fi/mlinvoice.eng.php
*/
require_once 'sqlfuncs.php';
/**
* Client interface for online mailing APIs
*
* @category MLInvoice
* @package MLInvoice\Base
* @author Ere Maijala <ere@labs.fi>
* @license https://opensource.org/licenses/GPL-2.0 GNU Public License 2.0
* @link http://github.com/emaijala/MLInvoice
*/
class ApiClient
{
/**
* API config ID
*
* @var int
*/
protected $apiConfigId;
/**
* Invoice
*
* @var array
*/
protected $invoice;
/**
* Template
*
* @var array
*/
protected $template;
/**
* Send a printout via an API
*
* @param string $apiConfigId API config ID
* @param int $invoiceId Invoice ID
* @param int $templateId Print template ID
*
* @return void
*/
public function __construct($apiConfigId, $invoiceId, $templateId)
{
$this->apiConfigId = $apiConfigId;
$this->invoice = getInvoice($invoiceId);
if (!$this->invoice) {
throw new Exception('Invoice not found');
}
$this->template = getPrintTemplate($templateId);
if (!$this->template) {
throw new Exception('Print template not found');
}
}
/**
* Send a printout via an API
*
* @return array Keyed array with results (success, message)
*/
public function send()
{
$client = $this->getClient();
$result = $client->send($this->invoice, $this->template);
if ($result['success'] && sesWriteAccess()) {
dbParamQuery(
'UPDATE {prefix}invoice SET print_date=? where id=?',
[
date('Ymd'),
$this->invoice['id']
]
);
if ($this->invoice['state_id'] == 1) {
// Mark invoice sent
dbParamQuery(
'UPDATE {prefix}invoice SET state_id=2 WHERE id=?',
[$this->invoice['id']]
);
}
}
return $result;
}
/**
* Create a client
*
* @return object
*/
protected function getClient()
{
$apiConfig = getSendApiConfig($this->invoice['base_id'], $this->apiConfigId);
if (!$apiConfig) {
throw new Exception('API settings not found for the invoicing company');
}
$apiName = strtolower(str_replace('.', '', $apiConfig['method']));
$className = ucfirst($apiName);
$classFile = __DIR__ . DIRECTORY_SEPARATOR . 'send_api' . DIRECTORY_SEPARATOR
. $apiName . '.php';
include_once $classFile;
$class = new $className();
$class->init($apiConfig);
return $class;
}
}