-
Notifications
You must be signed in to change notification settings - Fork 165
/
azureblobstorage.js
44 lines (36 loc) · 1.19 KB
/
azureblobstorage.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
var azure = require('azure')
var http = require('http')
var multiparty = require('../')
var PORT = process.env.PORT || 27372;
var server = http.createServer(function(req, res) {
if (req.url === '/') {
res.writeHead(200, { 'content-type': 'text/html' })
res.end(
'<form action="/upload" enctype="multipart/form-data" method="post">'+
'<input type="text" name="title"><br>'+
'<input type="file" name="upload"><br>'+
'<input type="submit" value="Upload">'+
'</form>'
);
} else if (req.url === '/upload') {
var blobService = azure.createBlobService();
var form = new multiparty.Form();
form.on('part', function(part) {
if (!part.filename) return;
var size = part.byteCount;
var name = part.filename;
var container = 'blobContainerName';
blobService.createBlockBlobFromStream(container, name, part, size, function(error) {
if (error) {
// error handling
res.status(500).send('Error uploading file');
}
res.send('File uploaded successfully');
});
});
form.parse(req);
}
});
server.listen(PORT, function() {
console.info('listening on http://0.0.0.0:' + PORT + '/');
});