-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathform_funcs.php
More file actions
532 lines (496 loc) · 17.6 KB
/
form_funcs.php
File metadata and controls
532 lines (496 loc) · 17.6 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
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
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
<?php
/**
* Form handling
*
* PHP version 8
*
* Copyright (C) Ere Maijala 2010-2022
*
* 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';
require_once 'datefuncs.php';
require_once 'miscfuncs.php';
require_once 'crypt.php';
/**
* Get default values for a form
*
* @param array $formElements Form elements
* @param int $parentKey Parent key value, if any
*
* @return array
*/
function getFormDefaultValues($formElements, $parentKey = false)
{
$values = [];
foreach ($formElements as $elem) {
$values[$elem['name']] = getFormDefaultValue($elem, $parentKey);
}
return $values;
}
/**
* Get the default value for the given form element
*
* @param array $elem Form element
* @param string $parentKey Parent record id
*
* @return mixed Default value
*/
function getFormDefaultValue($elem, $parentKey)
{
if (!isset($elem['default'])) {
if (!empty($elem['default_query'])) {
$intRes = dbQueryCheck($elem['default_query']);
return dbFetchValue($intRes);
}
return null;
}
if ($elem['default'] === 'DATE_NOW') {
return date('Y-m-d');
} elseif (strstr($elem['default'], 'DATE_NOW+')) {
$atmpValues = explode('+', $elem['default']);
return date(
'Y-m-d',
mktime(0, 0, 0, date('m'), date('d') + $atmpValues[1], date('Y'))
);
} elseif (strncmp($elem['default'], 'ADD+', 4) === 0) {
$strQuery = str_replace('_PARENTID_', $parentKey, $elem['listquery']);
$res = dbQueryCheck($strQuery);
$intAdd = dbFetchValue($res);
if (isset($intAdd)) {
return $intAdd;
}
$intAdd = substr($elem['default'], 4);
if (ctype_digit($intAdd)) {
return $intAdd;
}
} elseif ($elem['default'] === 'POST') {
// POST has special treatment in iform
return '';
}
$result = $elem['default'];
if ($elem['type'] == 'INT') {
$decimals = $elem['decimals'] ?? 2;
$result = miscRound2Decim($result, $decimals);
}
return $result;
}
/**
* Save form data.
*
* If primaryKey is not set, add a new record and set it, otherwise update existing
* record.
* Return true on success. Return false on conflict or a string of missing values if
* encountered. In these cases, the record is not saved.
*
* @param string $table Table name
* @param int $primaryKey Primary key value
* @param array $formConfig Form configuration
* @param array $values Values
* @param array $warnings Any warnings encountered
* @param string $parentKeyName Parent key field name, if any
* @param int $parentKey Parent key value, if any
* @param bool $onPrint Whether the save is happening on print
* @param bool $partial Whether values contain only updated fields
*
* @return mixed
*/
function saveFormData($table, &$primaryKey, $formConfig, &$values, &$warnings,
$parentKeyName = '', $parentKey = false, $onPrint = false, $partial = false
) {
global $dblink;
$missingValues = '';
$fields = [];
$insert = [];
$updateFields = [];
$arrValues = [];
if (!isset($primaryKey) || !$primaryKey) {
if ($partial) {
$warnings = 'Unable to do partial update without ID';
return false;
}
unset($values['id']);
}
if ($partial) {
$res = fetchRecord($table, $primaryKey, $formConfig['fields'], $origValues);
if ('notfound' === $res) {
$warnings = "Row $primaryKey not found";
return false;
}
foreach ($origValues as $key => $value) {
if (!isset($values[$key])) {
$values[$key] = $origValues[$key];
}
}
unset($values['id']);
}
foreach ($formConfig['fields'] as $elem) {
$type = $elem['type'];
if (!in_array($type, $formConfig['inputFieldTypes'])
|| ($elem['read_only'] ?? false)
) {
continue;
}
$name = $elem['name'];
if ($type !== 'FILE') {
if (!$elem['allow_null']
&& (!isset($values[$name]) || $values[$name] === '')
) {
if (array_key_exists('default', $elem)) {
$values[$name] = getFormDefaultValue($elem, $parentKey);
}
if (!isset($values[$name]) || $values[$name] === '') {
if ($missingValues) {
$missingValues .= ', ';
}
$missingValues .= Translator::translate($elem['label']);
continue;
}
}
} else {
if (!$elem['allow_null'] && !$primaryKey && !isset($_FILES[$name])) {
if ($missingValues) {
$missingValues .= ', ';
}
$missingValues .= Translator::translate($elem['label']);
continue;
}
}
if ('FILE' !== $type) {
if (array_key_exists($name, $values)) {
if (empty($primaryKey) && '' === $values[$name]) {
$value = getFormDefaultValue($elem, $parentKey);
} else {
$value = $values[$name];
}
} else {
if (isset($primaryKey) && $primaryKey != 0) {
continue;
}
$value = getFormDefaultValue($elem, $parentKey);
}
}
if (($type == 'PASSWD' || $type == 'PASSWD_STORED') && !$value) {
continue; // Don't save empty password
}
if ('TAGS' === $type) {
// Tags are processed separately
continue;
}
if (isset($elem['unique']) && $elem['unique']) {
$query = "SELECT * FROM $table WHERE deleted=0 AND $name=?";
$params = [
$value
];
if (isset($primaryKey) && $primaryKey) {
$query .= ' AND id!=?';
$params[] = $primaryKey;
}
$checkRows = dbParamQuery($query, $params);
if ($checkRows) {
$warnings = str_replace(
'%s',
Translator::translate($elem['label']),
Translator::translate('DuplicateValue')
);
return false;
}
}
switch ($type) {
case 'PASSWD':
$arrValues[] = password_hash($values[$name], PASSWORD_DEFAULT);
break;
case 'PASSWD_STORED':
$crypt = new Crypt();
$arrValues[] = $crypt->encrypt($values[$name]);
break;
case 'INT':
case 'HID_INT':
case 'LIST':
case 'SEARCHLIST':
$arrValues[] = isset($values[$name])
? ($value !== '' && $value !== null ? str_replace(',', '.', $value) : null)
: null;
break;
case 'CHECK':
$arrValues[] = $value && 'false' !== $value ? 1 : 0;
break;
case 'INTDATE':
if ($value) {
$converted = dateConvYmd2DBDate($value);
if (null === $converted) {
$warnings = Translator::translate('ErrInvalidValue') . ': '
. Translator::translate($elem['label']);
return false;
}
$arrValues[] = $converted;
} else {
$arrValues[] = null;
}
break;
case 'FILE':
if (!isset($_FILES[$name])) {
continue 2;
}
if ($_FILES[$name]['error'] != UPLOAD_ERR_OK) {
$warnings = Translator::translate('ErrFileUploadFailed')
. ' (' . $_FILES[$name]['error'] . ')';
return false;
}
$mimetype = getMimeType(
$_FILES[$name]['tmp_name'], $_FILES[$name]['name']
);
if (!empty($elem['mimetypes'])
&& !in_array($mimetype, $elem['mimetypes'])
) {
$warnings = Translator::translate(
'FileTypeInvalid', ['%%mimetype%%' => $mimetype]
);
return false;
}
$file = fopen($_FILES[$name]['tmp_name'], 'rb');
if ($file === false) {
$warnings = 'Could not process file upload - temp file missing';
return false;
}
$fsize = filesize($_FILES[$name]['tmp_name']);
// Additional fields for file information
$fields[] = 'filename';
$insert[] = '?';
$updateFields[] = 'filename=?';
$arrValues[] = $_FILES[$name]['name'];
$fields[] = 'filesize';
$insert[] = '?';
$updateFields[] = 'filesize=?';
$arrValues[] = $fsize;
$fields[] = 'mimetype';
$insert[] = '?';
$updateFields[] = 'mimetype=?';
$arrValues[] = $mimetype;
$arrValues[] = fread($file, $fsize);
fclose($file);
break;
default:
$arrValues[] = null !== $value ? $value : '';
}
$fields[] = $name;
$insert[] = '?';
$updateFields[] = "$name=?";
}
if ($missingValues) {
return $missingValues;
}
if ($fields) {
$strFields = implode(', ', $fields);
$strInsert = implode(', ', $insert);
$strUpdateFields = implode(', ', $updateFields);
dbQueryCheck('SET AUTOCOMMIT = 0');
dbQueryCheck('BEGIN');
try {
// Special case for invoice rows - update product stock balance
if (isset($values['invoice_id'])) {
$invoiceId = $values['invoice_id'];
} elseif ($table == '{prefix}invoice_row') {
$rows = dbParamQuery(
'SELECT invoice_id FROM {prefix}invoice_row WHERE id=?',
[$primaryKey]
);
$invoiceId = $rows[0]['invoice_id'] ?? null;
}
if ($table == '{prefix}invoice_row' && isInvoice($invoiceId)) {
updateProductStockBalance(
$primaryKey ?? null,
$values['product_id'] ?? null,
$values['pcs']
);
}
if (!isset($primaryKey) || !$primaryKey) {
if ($parentKeyName) {
$strFields .= ", $parentKeyName";
$strInsert .= ', ?';
$arrValues[] = $parentKey;
}
$strQuery = "INSERT INTO $table ($strFields) VALUES ($strInsert)";
dbParamQuery($strQuery, $arrValues, 'exception');
$primaryKey = mysqli_insert_id($dblink);
} else {
// Special case for invoice - update product stock balance for all
// invoice rows if the invoice was previously deleted
if ($table == '{prefix}invoice' && isInvoice($primaryKey)) {
$checkValues = dbParamQuery(
'SELECT deleted FROM {prefix}invoice WHERE id=?',
[$primaryKey]
);
if ($checkValues[0]['deleted']) {
$rows = dbParamQuery(
'SELECT product_id, pcs FROM {prefix}invoice_row WHERE invoice_id=? AND deleted=0',
[$primaryKey]
);
foreach ($rows as $row) {
updateProductStockBalance(
null, $row['product_id'], $row['pcs']
);
}
}
}
if ('{prefix}send_api_config' === $table
|| '{prefix}attachment' === $table
|| '{prefix}invoice_attachment' === $table
) {
$strQuery = "UPDATE $table SET $strUpdateFields WHERE id=?";
} else {
$strQuery = "UPDATE $table SET $strUpdateFields, deleted=0 WHERE id=?";
}
$arrValues[] = $primaryKey;
dbParamQuery($strQuery, $arrValues, 'exception');
}
if ($table === '{prefix}company') {
saveTags(
'company',
$primaryKey,
$values['tags'] ?? []
);
} elseif ($table === '{prefix}company_contact') {
saveTags(
'contact',
$primaryKey,
$values['tags'] ?? []
);
}
} catch (Exception $e) {
dbQueryCheck('ROLLBACK');
dbQueryCheck('SET AUTOCOMMIT = 1');
die($e->getMessage());
}
dbQueryCheck('COMMIT');
dbQueryCheck('SET AUTOCOMMIT = 1');
}
// Special case for invoices - check for duplicate invoice numbers
if ($table == '{prefix}invoice' && isset($values['invoice_no'])
&& !isOffer($primaryKey)
) {
$query = 'SELECT ID FROM {prefix}invoice where deleted=0 AND id!=? AND invoice_no=?';
$params = [
$primaryKey,
$values['invoice_no']
];
if (getSetting('invoice_numbering_per_base')) {
$query .= ' AND base_id=?';
$params[] = $values['base_id'];
}
if (getSetting('invoice_numbering_per_year')) {
$query .= ' AND invoice_date >= ' . date('Y') . '0101';
}
$check = dbParamQuery($query, $params);
if ($check) {
$warnings = Translator::translate('InvoiceNumberAlreadyInUse');
}
}
// Special case for invoices - check, according to settings, that the invoice has
// an invoice number and a reference number
if ($table == '{prefix}invoice' && $onPrint && !isOffer($primaryKey)) {
verifyInvoiceDataForPrinting($primaryKey);
}
// Special case for invoices: store base_id to session as a default invoicer
if ('{prefix}invoice' === $table && !empty($values['base_id'])) {
$_SESSION['default_base_id'] = $values['base_id'];
}
return true;
}
/**
* Fetch a record. Values in $values, may modify $formElements.
*
* Returns true on success, 'deleted' for deleted records and 'notfound' if record is
* not found.
*
* @param string $table Table name
* @param int $primaryKey Record ID
* @param array $formElements Form elements
* @param array $values Record data
*
* @return mixed
*/
function fetchRecord($table, $primaryKey, $formElements, &$values)
{
$result = true;
$strQuery = "SELECT * FROM $table WHERE id=?";
$rows = dbParamQuery($strQuery, [$primaryKey]);
if (!$rows) {
return 'notfound';
}
$row = $rows[0];
if (!empty($row['deleted'])) {
$result = 'deleted';
}
foreach ($formElements as $elem) {
$type = $elem['type'];
$name = $elem['name'];
if (!$type || $type == 'LABEL' || $type == 'DROPDOWNMENU' || $type == 'HEADING') {
continue;
}
switch ($type) {
case 'ROWSUM':
break;
case 'IFORM':
case 'RESULT':
$values[$name] = $primaryKey;
break;
case 'BUTTON':
case 'JSBUTTON':
case 'IMAGE':
case 'FILE':
if (strstr($elem['listquery'], '=_ID_')) {
$values[$name] = $primaryKey;
} else {
$tmpListQuery = $elem['listquery'];
$strReplName = substr($tmpListQuery, strpos($tmpListQuery, '_'));
$strReplName = strtolower(
substr($strReplName, 1, strrpos($strReplName, '_') - 1)
);
$values[$name] = $values[$strReplName] ?? '';
$elem['listquery'] = str_replace(
strtoupper($strReplName), 'ID', $elem['listquery']
);
}
break;
case 'INTDATE':
$values[$name] = dateConvDBDate2Ymd($row[$name]);
break;
case 'INT':
if (isset($elem['decimals'])) {
$values[$name] = miscRound2Decim($row[$name], $elem['decimals']);
} else {
$values[$name] = $row[$name];
}
break;
case 'TAGS':
$values[$name] = '';
if ('{prefix}company' === $table) {
$values[$name] = getTags('company', $primaryKey);
} elseif ('{prefix}company_contact' === $table) {
$values[$name] = getTags('contact', $primaryKey);
}
break;
default:
$values[$name] = $row[$name];
}
}
return $result;
}