Connection.php
8.16 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
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
<?php
namespace artbox\odoo\components;
use Ripcord\Ripcord;
use yii\base\Component;
use yii\base\Configurable;
use yii\base\InvalidConfigException;
/**
* Odoo connection class
*
* @property string $dsn Connection string
* @property null|integer $uid Authenticated user ID
* @property \Ripcord\Client\Client $fetchClient Fetch client
*/
class Connection extends Component implements Configurable
{
/**
* @event Event an event that is triggered after a DB connection is established
*/
const EVENT_AFTER_OPEN = 'afterOpen';
/**
* @var string $url Odoo server URL
*/
public $url;
/**
* @var string $db Odoo db name
*/
public $db;
/**
* @var string $username Odoo username
*/
public $username;
/**
* @var string $password Odoo password
*/
public $password;
/**
* @var bool whether to log command and query executions.
* When enabled this option may reduce performance. Odoo commands may contain large data,
* consuming both CPU and memory.
* It makes sense to disable this option in the production environment.
*/
public $enableLogging = true;
/**
* @var bool whether to enable profiling the commands and queries being executed.
* This option will have no effect in case [[enableLogging]] is disabled.
*/
public $enableProfiling = true;
/**
* @var integer $uid Authenticated User ID
*/
protected $uid;
/**
* @var \Ripcord\Client\Client $client Odoo client
*/
protected $client;
/**
* @var \Ripcord\Client\Client $client Odoo fetch client
*/
protected $fetchClient;
/**
* @var QueryBuilder|array|string the query builder for this connection
*/
private $_queryBuilder = 'artbox\odoo\components\QueryBuilder';
/**
* @var LogBuilder|array|string log entries builder used for this connecton.
*/
private $_logBuilder = 'artbox\odoo\components\LogBuilder';
public function __construct(array $config = [])
{
parent::__construct($config);
}
/**
* Returns the query builder for the this Odoo connection.
*
* @return QueryBuilder the query builder for the this Odoo connection.
*/
public function getQueryBuilder(): QueryBuilder
{
if (!is_object($this->_queryBuilder)) {
$this->_queryBuilder = \Yii::createObject($this->_queryBuilder, [ $this ]);
}
return $this->_queryBuilder;
}
/**
* Sets the query builder for the this Odoo connection.
*
* @param QueryBuilder|array|string|null $queryBuilder the query builder for this Odoo connection.
*/
public function setQueryBuilder($queryBuilder)
{
$this->_queryBuilder = $queryBuilder;
}
/**
* Returns log builder for this connection.
*
* @return LogBuilder the log builder for this connection.
*/
public function getLogBuilder(): LogBuilder
{
if (!is_object($this->_logBuilder)) {
$this->_logBuilder = \Yii::createObject($this->_logBuilder);
}
return $this->_logBuilder;
}
/**
* Sets log builder used for this connection.
*
* @param array|string|LogBuilder $logBuilder the log builder for this connection.
*/
public function setLogBuilder($logBuilder)
{
$this->_logBuilder = $logBuilder;
}
/**
* Establishes a Odoo connection.
* It does nothing if a Odoo connection has already been established.
*
* @throws Exception if connection fails
*/
public function open()
{
if ($this->client === null) {
if (empty($this->username) || empty($this->db) || empty($this->password) || empty($this->url)) {
throw new InvalidConfigException(
'$username, $db, $password, $url must be set for ' . $this->className()
);
}
$token = "Opening Odoo connection: " . $this->getDsn();
try {
\Yii::trace($token, __METHOD__);
\Yii::beginProfile($token, __METHOD__);
$this->client = Ripcord::client("$this->url/xmlrpc/2/common");
$this->uid = call_user_func_array(
[
$this->client,
'authenticate',
],
[
$this->db,
$this->username,
$this->password,
[],
]
);
if (!$this->uid) {
throw new InvalidConfigException("Incorrect authentication data.");
}
$this->fetchClient = Ripcord::client("$this->url/xmlrpc/2/object");
$this->initConnection();
\Yii::endProfile($token, __METHOD__);
} catch (\Exception $e) {
\Yii::endProfile($token, __METHOD__);
throw new Exception($e->getMessage(), (int) $e->getCode(), $e);
}
}
}
/**
* Closes the currently active DB connection.
* It does nothing if the connection is already closed.
*/
public function close()
{
if ($this->client !== null) {
\Yii::trace('Closing Odoo connection: ' . $this->getDsn(), __METHOD__);
$this->client = null;
$this->uid = null;
}
}
/**
* Initializes the DB connection.
* This method is invoked right after the DB connection is established.
* The default implementation triggers an [[EVENT_AFTER_OPEN]] event.
*/
protected function initConnection()
{
$this->trigger(self::EVENT_AFTER_OPEN);
}
/**
* Creates Odoo command.
*
* @param string $model Model name
* @param string $method Method name
* @param array $parameters parameters passed by position
* @param array $mapping mapping of parameters to pass by keyword
*
* @return \artbox\odoo\components\Command command instance.
*/
public function createCommand(string $model, string $method, array $parameters, array $mapping = []): Command
{
return new Command(
[
'db' => $this,
'model' => $model,
'method' => $method,
'parameters' => $parameters,
'mapping' => $mapping,
]
);
}
/**
* Get dsn string
*
* @return string
*/
public function getDsn()
{
return $this->url . ', ' . $this->db . ', ' . $this->username . ', ' . $this->password;
}
/**
* Get authenticated user ID
*/
public function getUid()
{
return $this->uid;
}
/**
* Get fetch client
*
* @return \Ripcord\Client\Client
*/
public function getFetchClient()
{
return $this->fetchClient;
}
/**
* Get common client
*
* @return \Ripcord\Client\Client
*/
public function getClient()
{
return $this->client;
}
}