Server IP : 162.213.251.212 / Your IP : 18.191.205.229 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/needapair.com/node_modules/node-cron/src/ |
Upload File : |
const validatePattern = require('./pattern-validation'); const convertExpression = require('./convert-expression'); function matchPattern(pattern, value){ if( pattern.indexOf(',') !== -1 ){ const patterns = pattern.split(','); return patterns.indexOf(value.toString()) !== -1; } return pattern === value.toString(); } class TimeMatcher{ constructor(pattern, timezone){ validatePattern(pattern); this.pattern = convertExpression(pattern); this.timezone = timezone; this.expressions = this.pattern.split(' '); this.dtf = this.timezone ? new Intl.DateTimeFormat('en-US', { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit', hourCycle: 'h23', fractionalSecondDigits: 3, timeZone: this.timezone }) : null; } match(date){ date = this.apply(date); const runOnSecond = matchPattern(this.expressions[0], date.getSeconds()); const runOnMinute = matchPattern(this.expressions[1], date.getMinutes()); const runOnHour = matchPattern(this.expressions[2], date.getHours()); const runOnDay = matchPattern(this.expressions[3], date.getDate()); const runOnMonth = matchPattern(this.expressions[4], date.getMonth() + 1); const runOnWeekDay = matchPattern(this.expressions[5], date.getDay()); return runOnSecond && runOnMinute && runOnHour && runOnDay && runOnMonth && runOnWeekDay; } apply(date){ if(this.dtf){ return new Date(this.dtf.format(date)); } return date; } } module.exports = TimeMatcher;