Newer
Older
<?php
/**
* Copyright Maarch since 2008 under licence GPLv3.
* See LICENCE.txt file at the root folder for more details.
* This file is part of Maarch software.
*
*/
/**
* @brief Resource Controller
* @author dev@maarch.org
* @ingroup core
*/
namespace Core\Controllers;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use Respect\Validation\Validator;
use Core\Models\UserModel;
use Entities\Models\EntitiesModel;
use Core\Controllers\DocserverController;
class ResController
{
/**
* Store resource on database.
* @param $collId string
* @param $table string
* @param $fileFormat string
* @param $status string
if (empty($aArgs['encodedFile'])) {
return ['errors' => 'encodedFile ' . _EMPTY];
}
if (empty($aArgs['data'])) {
return ['errors' => 'data ' . _EMPTY];
if (empty($aArgs['collId'])) {
return ['errors' => 'collId ' . _EMPTY];
if (empty($aArgs['table'])) {
return ['errors' => 'table ' . _EMPTY];
if (empty($aArgs['fileFormat'])) {
return ['errors' => 'fileFormat ' . _EMPTY];
}
if (empty($aArgs['status'])) {
return ['errors' => 'status ' . _EMPTY];
}
$encodedFile = $aArgs['encodedFile'];
$data = $aArgs['data'];
$collId = $aArgs['collId'];
$table = $aArgs['table'];
$fileFormat = $aArgs['fileFormat'];
$status = $aArgs['status'];
try {
$count = count($data);
$data[$i]['column'] = strtolower($data[$i]['column']);
}
$returnCode = 0;
$fileContent = base64_decode($encodedFile);
$random = rand();
$fileName = 'tmp_file_' . $random . '.' . $fileFormat;
$Fnm = $_SESSION['config']['tmppath'] . $fileName;
fwrite($inF, $fileContent);
fclose($inF);
//store resource on docserver
$ds = new DocserverController();
$aArgs = [
'collId' => $collId,
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
[
'tmpDir' => $_SESSION['config']['tmppath'],
'size' => filesize($Fnm),
'format' => $fileFormat,
'tmpFileName' => $fileName,
]
];
$storeResult = array();
$storeResult = $ds->storeResourceOnDocserver($aArgs);
if (!empty($storeResult['errors'])) {
return ['errors' => $storeResult['errors']];
}
//store resource metadata in database
$aArgs = [
'data' => $data,
'docserverId' => $storeResult['docserver_id'],
'status' => $status,
'fileFormat' => $fileFormat,
];
$data = $this->prepareStorage($aArgs);
unlink($Fnm);
require_once 'core/class/class_resource.php';
$resource = new \resource();
$resId = $resource->load_into_db(
$storeResult['destination_dir'],
$storeResult['file_destination_name'],
$storeResult['path_template'],
$data,
$_SESSION['config']['databasetype'],
true
);
if (!is_numeric($resId)) {
return ['errors' => 'Pb with SQL insertion : ' .$resId];
}
if ($resId == 0) {
$resId = '';
}
return [$resId];
} catch (Exception $e) {
return ['errors' => 'unknown error' . $e->getMessage()];
/**
* Prepares storage on database.
* @param $data array
* @param $docserverId string
* @param $status string
* @param $fileFormat string
*/
public function prepareStorage($aArgs)
{
if (empty($aArgs['data'])) {
return ['errors' => 'data ' . _EMPTY];
}
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
if (empty($aArgs['docserverId'])) {
return ['errors' => 'docserverId ' . _EMPTY];
}
if (empty($aArgs['status'])) {
return ['errors' => 'status ' . _EMPTY];
}
if (empty($aArgs['fileFormat'])) {
return ['errors' => 'fileFormat ' . _EMPTY];
}
$statusFound = false;
$typistFound = false;
$typeIdFound = false;
$toAddressFound = false;
$userPrimaryEntity = false;
$destinationFound = false;
$initiatorFound = false;
$data = $aArgs['data'];
$docserverId = $aArgs['docserverId'];
$status = $aArgs['status'];
$fileFormat = $aArgs['fileFormat'];
$userModel = new UserModel();
$entityModel = new \Entities\Models\EntitiesModel();
$countD = count($data);
for ($i = 0; $i < $countD; $i++) {
if (strtoupper($data[$i]['type']) == 'INTEGER' ||
strtoupper($data[$i]['type']) == 'FLOAT'
) {
if ($data[$i]['value'] == '') {
$data[$i]['value'] = '0';
}
}
if (strtoupper($data[$i]['type']) == 'STRING') {
$data[$i]['value'] = $data[$i]['value'];
$data[$i]['value'] = str_replace(";", "", $data[$i]['value']);
$data[$i]['value'] = str_replace("--", "", $data[$i]['value']);
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
}
if (strtoupper($data[$i]['column']) == strtoupper('status')) {
$statusFound = true;
}
if (strtoupper($data[$i]['column']) == strtoupper('typist')) {
$typistFound = true;
}
if (strtoupper($data[$i]['column']) == strtoupper('type_id')) {
$typeIdFound = true;
}
if (strtoupper($data[$i]['column']) == strtoupper('custom_t10')) {
$mail = array();
$theString = str_replace(">", "", $data[$i]['value']);
$mail = explode("<", $theString);
$user = $userModel->getByEmail(['mail' => $mail[count($mail) -1]]);
$userIdFound = $user[0]['user_id'];
if (!empty($userIdFound)) {
$toAddressFound = true;
$destUser = $userIdFound;
$entity = $entityModel->getByUserId(['user_id' => $destUser]);
if (!empty($entity[0]['entity_id'])) {
$userEntity = $entity[0]['entity_id'];
$userPrimaryEntity = true;
}
} else {
$entity = $entityModel->getByEmail(['email' => $mail[count($mail) -1]]);
if (!empty($entity[0]['entity_id'])) {
$userPrimaryEntity = true;
}
}
}
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
if (!$typistFound && !$toAddressFound) {
array_push(
$data,
array(
'column' => 'typist',
'value' => 'auto',
'type' => 'string',
)
);
}
if (!$typeIdFound) {
array_push(
$data,
array(
'column' => 'type_id',
'value' => '10',
'type' => 'string',
)
);
}
if (!$statusFound) {
array_push(
$data,
array(
'column' => 'status',
'value' => $status,
'type' => 'string',
)
);
}
if ($toAddressFound) {
array_push(
$data,
array(
'column' => 'dest_user',
'value' => $destUser,
'type' => 'string',
)
);
array_push(
$data,
array(
'column' => 'typist',
'value' => $destUser,
'type' => 'string',
)
);
}
if ($userPrimaryEntity) {
if (strtoupper($data[$i]['column']) == strtoupper('destination')) {
if ($data[$i]['value'] == "") {
$data[$i]['value'] = $userEntity;
}
$destinationFound = true;
break;
}
}
if (!$destinationFound) {
array_push(
$data,
array(
'column' => 'destination',
'value' => $userEntity,
'type' => 'string',
)
);
}
}
if ($userPrimaryEntity) {
if (strtoupper($data[$i]['column']) == strtoupper('initiator')) {
if ($data[$i]['value'] == "") {
$data[$i]['value'] = $userEntity;
}
$initiatorFound = true;
break;
}
}
if (!$initiatorFound) {
array_push(
$data,
array(
'column' => 'initiator',
'value' => $userEntity,
'type' => 'string',
)
);
}
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
array_push(
$data,
array(
'column' => 'format',
'value' => $fileFormat,
'type' => 'string',
)
);
array_push(
$data,
array(
'column' => 'offset_doc',
'value' => '',
'type' => 'string',
)
);
array_push(
$data,
array(
'column' => 'logical_adr',
'value' => '',
'type' => 'string',
)
);
array_push(
$data,
array(
'column' => 'docserver_id',
'value' => $docserverId,
'type' => 'string',
)
);
//TODO
public function storeExtResource($resId, $data, $table)
{
try {
if ($resId <> "") {
$func = new functions();
$data = $func->object2array($data);
$queryExtFields = '(';
$queryExtValues = '(';
$parameters = array();
$db = new Database();
$findProcessLimitDate = false;
$findProcessNotes = false;
$delayProcessNotes = 0;
if ($data[$i]['column'] == 'process_limit_date') {
$findProcessLimitDate = true;
}
// if ($data[$i]['column'] == 'process_notes') {
// $findProcessNotes = true;
// $delayProcessNotes = $data[$i]['value'];
// }
if ($data[$i]['column'] == 'process_notes') {
$findProcessNotes = true;
$delayProcessNotes = $donnees['0'];
$calendarType = $donnees['1'];
}
}
if ($table == 'mlb_coll_ext') {
if ($delayProcessNotes > 0) {
$processLimitDate = $this->retrieveProcessLimitDate(
$delayProcessNotes,
$calendarType
);
} else {
$processLimitDate = $this->retrieveProcessLimitDate($resId);
}
//echo $processLimitDate;
}
if (!$findProcessLimitDate && $processLimitDate <> '') {
array_push(
$data,
array(
'column' => 'process_limit_date',
'value' => $processLimitDate,
'type' => 'date',
)
);
}
//var_dump($data);
if (strtoupper($data[$i]['type']) == 'INTEGER' || strtoupper($data[$i]['type']) == 'FLOAT') {
if ($data[$i]['value'] == '') {
$data[$i]['value'] = '0';
}
$data[$i]['value'] = str_replace(',', '.', $data[$i]['value']);
}
if (strtoupper($data[$i]['column']) == strtoupper('category_id')) {
$categoryId = $data[$i]['value'];
}
if (strtoupper($data[$i]['column']) == strtoupper('alt_identifier') && $data[$i]['value'] == "") {
require_once 'apps' . DIRECTORY_SEPARATOR . $_SESSION['config']['app_id']
. DIRECTORY_SEPARATOR . 'class' . DIRECTORY_SEPARATOR . 'class_chrono.php';
$chronoX = new chrono();
for ($iColl=0; $iColl<=count($_SESSION['collections']); $iColl++) {
if ($_SESSION['collections'][$iColl]['extensions'][0] == $table) {
$resViewTable = $_SESSION['collections'][$iColl]['view'];
break;
}
}
$stmt = $db->query("SELECT destination, type_id FROM " . $resViewTable
. " WHERE res_id = ?", array($resId));
$resView = $stmt->fetchObject();
$myVars = array(
'entity_id' => $resView->destination,
'type_id' => $resView->type_id,
'category_id' => $categoryId,
'folder_id' => "",
);
$myChrono = $chronoX->generate_chrono($categoryId, $myVars, 'false');
if (strtoupper($data[$i]['column']) == strtoupper('exp_contact_id') &&
$data[$i]['value'] <> "" && !is_numeric($data[$i]['value'])) {
$theString = str_replace(">", "", $data[$i]['value']);
$mail = explode("<", $theString);
$stmt = $db->query("SELECT contact_id FROM view_contacts WHERE email = ? "
. " and enabled = 'Y' order by creation_date asc", array($mail[count($mail) -1]));
$contact = $stmt->fetchObject();
if ($contact->contact_id <> "") {
$data[$i]['value'] = $contact->contact_id;
} else {
$data[$i]['value'] = 0;
}
}
if (strtoupper($data[$i]['column']) == strtoupper('address_id') &&
$data[$i]['value'] <> "" && !is_numeric($data[$i]['value'])) {
$theString = str_replace(">", "", $data[$i]['value']);
$mail = explode("<", $theString);
$stmt = $db->query("SELECT ca_id FROM view_contacts WHERE email = ? "
. " and enabled = 'Y' order by creation_date asc", array($mail[count($mail) -1]));
$contact = $stmt->fetchObject();
if ($contact->ca_id <> "") {
$data[$i]['value'] = $contact->ca_id;
} else {
$data[$i]['value'] = 0;
}
}
//COLUMN
$data[$i]['column'] = strtolower($data[$i]['column']);
$queryExtFields .= $data[$i]['column'] . ',';
//VALUE
if ($data[$i]['type'] == 'string' || $data[$i]['type'] == 'date') {
$queryExtValues .= "'" . $data[$i]['value'] . "',";
} else {
$queryExtValues .= $data[$i]['value'] . ",";
}
$parameters[] = $data[$i]['value'];
$queryExtValuesFinal .= "?,";
}
$queryExtFields = preg_replace('/,$/', ',res_id)', $queryExtFields);
$queryExtValues = preg_replace(
'/,$/',
',' . $resId . ')',
$queryExtValues
);
$queryExtValuesFinal = preg_replace(
'/,$/',
',' . $resId . ')',
$queryExtValuesFinal
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
);
/*$queryExt = " insert into " . $table . " " . $queryExtFields
. ' values ' . $queryExtValues ;*/
$queryExt = " insert into " . $table . " " . $queryExtFields
. ' values ' . $queryExtValuesFinal ;
//echo $queryExt;exit;
$returnCode = 0;
if ($db->query($queryExt, $parameters)) {
$returnResArray = array(
'returnCode' => (int) 0,
'resId' => $resId,
'error' => '',
);
} else {
$returnResArray = array(
'returnCode' => (int) -2,
'resId' => '',
'error' => 'Pb with SQL insertion',
);
}
return $returnResArray;
} else {
$returnResArray = array(
'returnCode' => (int) -3,
'resId' => '',
'error' => 'resId is not set',
);
}
} catch (Exception $e) {
$returnResArray = array(
'returnCode' => (int) -1,
'resId' => '',
'error' => 'unknown error' . $e->getMessage(),
);
return $returnResArray;
}
}