index.js
6.18 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
"use strict";
const fs = require('fs');
const EventEmitter = require('events');
const os = require('os');
const moment = require('moment');
const SerialPort = require('serialport');
const Readline = require('@serialport/parser-readline');
const Delimiter = require('@serialport/parser-delimiter');
const jsesc = require('jsesc');
const logger = require('komodo-sdk/logger');
const smsParser = require('./sms-parser');
const SIGNAL_STRENGTH_INTERVAL_MS = 60 * 1000;
fs.existsSync('logs/') || fs.mkdirSync('logs/');
const debugLogWriter = process.env.KOMODO_DEBUG_MODEM ? fs.createWriteStream('logs/log-debug-modem.txt', { flags: 'a' }) : null;
function debugLog(msg) {
if (debugLogWriter) {
debugLogWriter.write(msg + os.EOL);
}
}
class Modem extends EventEmitter {
constructor(portName, portOptions) {
super();
this.portName = portName;
this.portOptions = portOptions;
}
open(cb) {
const self = this;
debugLog('MODEM: opening ' + this.portName);
this.port = new SerialPort(this.portName, this.portOptions);
this.port.on('error', function(err) {
debugLog('MODEM: error opening ' + this.portName);
if (cb) cb(err);
});
this.port.on('open', function() {
self.resetModem(function() {
self.getIMSI(function() {
self.emit('open');
self.getSignalStrength(cb);
setInterval(function() {
self.getSignalStrength();
}, SIGNAL_STRENGTH_INTERVAL_MS)
})
});
});
}
resetParserToDefault() {
const self = this;
//this.port.unpipe(this.parser);
if (this.parser) { this.port.unpipe(this.parser)};
this.parser = this.port.pipe(new Readline());
this.parser.on('data', function(data) {
if (!data) return;
debugLog('PARSER-DEFAULT: ' + data);
if (data.indexOf('+CMTI:') === 0) {
self.onSMS(data);
}
else if (data.indexOf('+CUSD:') === 0) {
self.onUSSDResponse(data);
}
if (data.indexOf('+CSQ:') === 0) {
debugLog('*** Got CSQ signal strength response');
self.onSignalStrength(data);
}
});
}
_write(...args) {
debugLog('COMMAND: ' + args[0]);
this.port.write(...args);
this.port.drain();
}
write(data) {
debugLog('COMMAND: ' + data);
this.port.write(data);
this.port.drain();
}
getPort() {
return this.port;
}
onUSSDResponse(data) {
debugLog('USSD-RESPONSE: ' + data);
this.emit('ussd response', data);
}
onSMS(data) {
const self = this;
const port = this.port;
const matches = data.match(/,(\d+)\s*$/);
if (!matches || matches.length < 2) {
return;
}
const slot = matches[1];
//console.log('*** Ada SMS masuk di slot ' + slot);
if (!slot) {
debugLog('*** Gagal deteksi slot sms')
return;
}
if (this.parser) { this.port.unpipe(this.parser)};
const parser = this.port.pipe(new Delimiter({ delimiter: '\r\nOK\r\n' }))
parser.on('data', function(data) {
self.parseSMS(data);
self.port.unpipe(parser);
self.resetParserToDefault();
self.write('AT+CMGD=' + slot + '\r');
})
this.write('AT+CMGR=' + slot + '\r');
}
parseSMS(data) {
data = data.toString().trim();
//debugLog(jsesc(data, {wrap: true}));
debugLog('SMS-READ: ' + data);
const sms = smsParser.parseModemResponse(data);
this.emit('incoming sms', sms);
}
resetModem(cb) {
const self = this;
if (this.parser) { this.port.unpipe(this.parser)};
const parser = this.port.pipe(new Delimiter({ delimiter: '\nOK\r\n' }));
parser.on('data', function(data) {
const value = data.toString().replace(/^\s+/, '').replace(/\s+$/, '');
debugLog('PARSER-RESETMODEM: modem reseted');
self.port.unpipe(parser);
self.resetParserToDefault();
if (cb) {
cb(null, value);
}
})
this.write('AT &F Z E0\r');
}
getIMSI(cb) {
const self = this;
const port = this.port;
if (this.parser) { this.port.unpipe(this.parser)};
const parser = this.port.pipe(new Delimiter({ delimiter: '\r\nOK\r\n' }))
parser.on('data', function(data) {
self.imsi = data.toString().replace(/^\s+/, '').replace(/\s+$/, '');
debugLog('PARSER-IMSI: ' + self.imsi);
self.port.unpipe(parser);
self.resetParserToDefault();
self.emit('imsi', self.imsi);
if (cb) {
cb(null, self.imsi);
}
})
this.write('AT+CIMI\r');
}
getCOPS(cb) {
const self = this;
/*
const parser = this.port.pipe(new Delimiter({ delimiter: '\r\nOK\r\n' }))
parser.on('data', function(data) {
const value = data.toString().replace(/^\s+/, '').replace(/\s+$/, '');
debugLog('PARSER-COPS: ' + value);
self.port.unpipe(parser);
if (cb) {
cb(null, value);
}
})
*/
//console.log('MODEM: sending AT+COPS?');
this.write('AT+COPS?\r');
}
sendUSSD(cmd, cb) {
const self = this;
const port = this.port;
//console.log('MODEM: ' + moment().format('HH:mm:ss') + ' *** Sending USSD command ' + cmd);
this.write('AT+CUSD=1,"' + cmd + '",15\r');
}
onSignalStrength(data) {
if (typeof data !== 'string') {
debugLog('*** onSignalStrength data is not a string');
return;
}
const matches = data.match(/: (\d+),/);
if (matches.length < 2) return;
this.emit('signal strength', Number(matches[1]));
}
getSignalStrength(cb) {
this.write('AT+CSQ\r');
if (cb) { cb() };
}
}
module.exports = Modem;