-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
135 lines (118 loc) · 4.23 KB
/
server.js
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
/*
Copyright 2011 Marek Jelen
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.
*/
var Http = require('http');
var Url = require('url');
var FS = require('fs');
var Path = require('path');
var winston = require('winston');
Storage = function () {
// Make the scope accessible
self = this;
// Some basics
this.config_file = '/etc/wildcloud/storage.json';
this.log = winston;
this.ruid = 0;
// Starts the server
this.start = function () {
self.log.cli();
self.log.info('Bootstraping');
self.loadConfiguration();
self.loadDriver();
};
// Loads configuration from file
this.loadConfiguration = function () {
if (!Path.existsSync(self.config_file)) {
self.config_file = "./storage.json";
}
self.log.info("Loading configuration file " + self.config_file);
self.configuration = JSON.parse(FS.readFileSync(self.config_file));
};
// Load driver for data storage
this.loadDriver = function () {
self.log.info("Loading driver '" + self.configuration.driver + "'");
var driverClass = require('./' + self.configuration.driver + '.js').driver;
var driver = new driverClass();
// Pass environment to driver
driver.configuration = self.configuration;
driver.log = self.log;
// Mount handlers
self.handleListFiles = driver.handleListFiles;
self.handleDownload = driver.handleDownload;
self.handleUpload = driver.handleUpload;
self.handleDelete = driver.handleDelete;
// Setup driver
driver.setup(this.startHttpServer);
};
// Handles fatal errors
this.handleError = function (message) {
self.log.error(message);
process.exit(1);
};
// Start HTTP server
this.startHttpServer = function () {
self.log.info('Starting HTTP server on port ' + self.configuration.port);
self.application().listen(self.configuration.port, function () {
winston.info('Listening on port ' + self.configuration.port);
});
};
// Bootstrap HTTP application
this.application = function () {
return Http.createServer(this.handleHttpRequest);
};
// Handles incomming HTTP requests
this.handleHttpRequest = function (request, response) {
// Identify request
var ruid = self.getRuid(request);
winston.debug('(' + ruid + ') New connection');
// Parse URI
var uri = Url.parse(request.url, true);
// ID of application
var appid = request.headers['x-appid'];
winston.debug('(' + ruid + ') Requests Appid = ' + appid);
// Path to work with
var path = uri.pathname.substring(1);
if (request.method == "GET") {
// GET requests
if (uri.pathname == "/_list_files") {
// Listing of files
self.handleListFiles(response, ruid, appid);
} else {
// File downloads
self.handleDownload(response, ruid, appid, path, request);
}
return;
}
if (request.method == "PUT") {
// File uploads
self.handleUpload(response, ruid, appid, path, request);
return;
}
if (request.method == "DELETE") {
// File deletions
self.handleDelete(response, ruid, appid, path);
return;
}
// Unhandled requests
winston.info('(' + ruid + ') Invalid request.');
response.end("Unhandled!");
};
// Generated unique ID per request
this.getRuid = function (request) {
self.ruid++;
if (self.ruid == 5000) self.ruid = 1;
return self.ruid;
};
return this;
};
storage = new Storage();
storage.start();