-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
167 lines (136 loc) · 6.01 KB
/
server.js
File metadata and controls
167 lines (136 loc) · 6.01 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
/**
* Copyright 2019 Dhiego Cassiano Fogaça Barbosa
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @file This is the main script of JSDB
*
* @author Dhiego Cassiano Fogaça Barbosa <modscleo4@outlook.com>
*/
'use strict';
const {connections, config} = require('./config');
const Connection = require('./core/connection/Connection');
const {readFile} = require('./core/commands/db');
const Log = require('./core/lib/Log');
const sql = require('./core/sql/sql');
const net = require('net');
const DB = require('./core/DB');
const User = require('./core/User');
//console.log(require('./core/sql/parser')('SELECT name, MAX(id) FROM users WHERE TRUE GROUP BY name ORDER BY name DESC, password LIMIT 1, 1'));
//console.log(require('sql-parser/lib/sql_parser').parse('SELECT name, MAX(id) FROM users WHERE TRUE GROUP BY name ORDER BY name DESC, password LIMIT 1, 1'));
const server = net.createServer(socket => {
const connection = new Connection(socket);
Log.info(`User connected, IP: ${socket.remoteAddress}`);
readFile();
socket.on('end', () => {
Log.info(`[${socket.remoteAddress}] User disconnected`);
connections.remove(connection);
});
socket.on('data', data => {
const sqlCmd = data.toLocaleString().trim();
if (sqlCmd === 'PING') {
socket.write('PONG');
return;
}
if (config.server.ignAuth && connection.Username === null) {
connection.Username = 'grantall::jsdbadmin';
connections.add(connection);
socket.write('AUTHOK');
Log.warning(`[${socket.remoteAddress}] User authenticated (NOAUTH)`);
return;
}
if (connection.Username === null && !config.server.ignAuth) {
try {
const {database, username, password} = JSON.parse(sqlCmd);
if (typeof database !== 'string' || typeof username !== 'string' || typeof password !== 'string') {
// noinspection ExceptionCaughtLocallyJS
throw new Error('Username, password and/or database not informed');
} else if (!DB.exists(database)) {
// noinspection ExceptionCaughtLocallyJS
throw new Error('Invalid database.');
} else {
if (!User.auth(username, password)) {
// noinspection ExceptionCaughtLocallyJS
throw new Error(`Wrong password.`);
}
connection.Username = username;
connections.add(connection);
socket.write('AUTHOK');
Log.info(`[${socket.remoteAddress}] User authenticated, username: ${username}, database: ${database}`);
connection.DBName = database;
}
} catch (e) {
Log.warning(`[${socket.remoteAddress}] Authentication error: ${e.message}`);
socket.write(e.message);
socket.destroy();
}
return;
}
try {
Log.info(`[${connection.Username}@${socket.remoteAddress}] SQL: ${sqlCmd}`);
let r = sql(sqlCmd, connections.indexOf(connection));
if (typeof r === 'object') {
r = JSON.stringify(r);
}
socket.write(r);
} catch (err) {
socket.write(JSON.stringify({'code': 1, 'message': err.message}));
Log.error(`[${connection.Username}@${socket.remoteAddress}] ${err.message}`);
}
});
socket.on('error', err => {
switch (err.code) {
case 'ECONNRESET':
console.error('Connection reset. Maybe a client disconnected');
break;
default:
console.error(`${err.code}: ${err.message}`);
break;
}
});
});
if (config.server.listenIP !== '' && config.server.port !== 0 && config.server.startDir !== '') {
server.listen(config.server.port, config.server.listenIP);
console.log(`Running server on ${config.server.listenIP}:${config.server.port}, ${config.server.startDir}`);
if (config.server.ignAuth) {
console.log('Warning: running without authentication!');
Log.warning(`Warning: Server started without authentication`);
}
if (!config.server.ignAuth) {
if (new DB('jsdb').table('users').select(['*'], {where: "`username` == 'jsdbadmin'"}).length === 0) {
const stdin = process.openStdin();
process.stdout.write('Insert new jsdbadmin password: ');
stdin.addListener('data', password => {
password = password.toLocaleString().trim();
if (password.length <= 8) {
console.log('jsdbadmin password must be greater than 8 characters.');
} else {
stdin.removeAllListeners('data');
User.create('jsdbadmin', password, {'*': parseInt('1111', 2)});
console.log('User created.');
}
});
}
}
server.on('error', err => {
switch (err.code) {
case 'EADDRINUSE':
console.error('Address in use, retrying in 30 seconds...');
setTimeout(() => {
server.close();
server.listen(config.server.port, config.server.listenIP);
}, 30000);
break;
default:
console.error(`${err.code}: ${err.message}`);
break;
}
});
}