2016-09-26 09:28:47 +00:00
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
var Expr = require('./expr');
|
2016-09-26 09:28:47 +00:00
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
/**
|
|
|
|
* The equivalent of a SQL value.
|
2022-05-26 06:08:31 +00:00
|
|
|
*/
|
2020-05-03 20:35:24 +00:00
|
|
|
module.exports = new Class({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Expr
|
2015-01-23 13:09:30 +00:00
|
|
|
,Tag: 'sql-value'
|
|
|
|
|
|
|
|
,Properties:
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The master param.
|
2022-05-26 06:08:31 +00:00
|
|
|
*/
|
2015-01-23 13:09:30 +00:00
|
|
|
param:
|
|
|
|
{
|
|
|
|
type: Vn.Param
|
2020-05-03 20:35:24 +00:00
|
|
|
,set: function(x) {
|
|
|
|
this.link({_param: x}, {'changed': this.onParamChange});
|
|
|
|
this.onParamChange();
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2020-05-03 20:35:24 +00:00
|
|
|
,get: function() {
|
2015-01-23 13:09:30 +00:00
|
|
|
return this._param;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* The value.
|
2022-05-26 06:08:31 +00:00
|
|
|
*/
|
2015-01-23 13:09:30 +00:00
|
|
|
value:
|
|
|
|
{
|
2015-07-03 05:49:45 +00:00
|
|
|
type: String
|
2020-05-03 20:35:24 +00:00
|
|
|
,set: function(x) {
|
|
|
|
if (Vn.Value.compare(x, this._value))
|
2015-01-23 13:09:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (x instanceof Date)
|
2020-05-03 20:35:24 +00:00
|
|
|
x = x.clone();
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
this._value = x;
|
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
if (this._param && !this.paramLock) {
|
2015-01-23 13:09:30 +00:00
|
|
|
this.paramLock = true;
|
|
|
|
this._param.value = x;
|
|
|
|
this.paramLock = false;
|
|
|
|
}
|
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
this.signalEmit('changed');
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
2020-05-03 20:35:24 +00:00
|
|
|
,get: function() {
|
2015-01-23 13:09:30 +00:00
|
|
|
return this._value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
,_value: undefined
|
|
|
|
,_param: null
|
2020-05-03 20:35:24 +00:00
|
|
|
,regexp: new RegExp('(\\\\)|\'', 'g')
|
2015-01-23 13:09:30 +00:00
|
|
|
,paramLock: false
|
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
,onParamChange: function() {
|
2015-07-15 13:39:07 +00:00
|
|
|
if (this.paramLock || !this._param)
|
2015-01-23 13:09:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
this.paramLock = true;
|
|
|
|
this.value = this._param.value;
|
|
|
|
this.paramLock = false;
|
|
|
|
}
|
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
,isReady: function() {
|
2015-07-17 14:34:42 +00:00
|
|
|
return this._value !== undefined;
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
,replaceFunc: function(token) {
|
|
|
|
switch (token) {
|
2015-01-23 13:09:30 +00:00
|
|
|
case '\\': return '\\\\';
|
|
|
|
case '\'': return '\\\'';
|
|
|
|
}
|
|
|
|
|
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
,render: function() {
|
2015-01-23 13:09:30 +00:00
|
|
|
var v = this._value;
|
|
|
|
|
2020-05-03 20:35:24 +00:00
|
|
|
switch (typeof v) {
|
|
|
|
case 'number':
|
|
|
|
return v;
|
|
|
|
case 'boolean':
|
|
|
|
return (v) ? 'TRUE' : 'FALSE';
|
|
|
|
case 'string':
|
|
|
|
return "'" + v.replace(this.regexp, this.replaceFunc) + "'";
|
|
|
|
default:
|
2021-01-23 16:15:02 +00:00
|
|
|
if (v instanceof Date) {
|
|
|
|
if (!isNaN(v.getTime())) {
|
|
|
|
var unixTime = parseInt(fixTz(v).getTime() / 1000);
|
|
|
|
return 'DATE(FROM_UNIXTIME('+ unixTime +'))';
|
|
|
|
} else
|
|
|
|
return '0000-00-00'
|
|
|
|
} else
|
2015-01-23 13:09:30 +00:00
|
|
|
return 'NULL';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2020-05-04 19:55:18 +00:00
|
|
|
|
2021-01-23 16:15:02 +00:00
|
|
|
// TODO: Read time zone from db configuration
|
|
|
|
var tz = {timeZone: 'Europe/Madrid'};
|
|
|
|
var isLocal = Intl
|
|
|
|
.DateTimeFormat()
|
|
|
|
.resolvedOptions()
|
|
|
|
.timeZone == tz.timeZone;
|
|
|
|
|
2020-05-04 19:55:18 +00:00
|
|
|
function fixTz(date) {
|
2021-01-23 16:15:02 +00:00
|
|
|
if (isLocal) return date;
|
|
|
|
|
|
|
|
var hasTime = date.getHours()
|
|
|
|
|| date.getMinutes()
|
|
|
|
|| date.getSeconds()
|
|
|
|
|| date.getMilliseconds();
|
|
|
|
|
|
|
|
if (!hasTime) {
|
|
|
|
date = new Date(date.getTime());
|
|
|
|
date.setHours(12, 0, 0, 0);
|
|
|
|
}
|
2020-05-04 19:55:18 +00:00
|
|
|
|
2021-01-23 16:15:02 +00:00
|
|
|
return date;
|
2020-05-04 19:55:18 +00:00
|
|
|
}
|