Last active
December 24, 2015 16:19
-
-
Save nshalman/6827498 to your computer and use it in GitHub Desktop.
Manta Explorer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var restify = require('restify'); | |
var path = require('path'); | |
var fs = require('fs'); | |
var assert = require('assert'); | |
var manta = require('manta'); | |
var client = manta.createClient({ | |
sign: manta.privateKeySigner({ | |
key: fs.readFileSync(process.env.HOME + '/.ssh/id_rsa', 'utf8'), | |
keyId: process.env.MANTA_KEY_ID, | |
user: process.env.MANTA_USER | |
}), | |
user: process.env.MANTA_USER, | |
url: process.env.MANTA_URL | |
}); | |
assert.ok(client); | |
console.log('client setup: %s', client.toString()); | |
function respond(req, to_client, next) { | |
var the_path = req.params[0] + '/' ; | |
client.ls(the_path, function (err, res) { | |
assert.ifError(err); | |
to_client.write('<html>\n<head><title>Manta Explorer</title></head>\n<body>\n'); | |
to_client.write('<table>\n'); | |
res.on('object', function (obj) { | |
to_client.write("<tr><td>o</td><td><a href=" + process.env.MANTA_URL + the_path + obj.name + ">" + obj.name + "</a></td><td>" + obj.mtime + "</td><td>" + obj.size + "</td></tr>\n"); | |
}); | |
res.on('directory', function (dir) { | |
to_client.write("<tr><td>d</td><td><a href=" + the_path + dir.name + ">" + dir.name + "/</a></td><td>" + dir.mtime + "</td></tr>\n"); | |
}); | |
res.once('error', function (err) { | |
to_client.write("<pre>" + err.stack); | |
to_client.write('</pre>\n</body>\n</html>\n'); | |
to_client.end(); | |
return next(); | |
}); | |
res.once('end', function () { | |
to_client.write('</table>\n</body>\n</html>\n'); | |
to_client.end(); | |
return next(); | |
}); | |
}); | |
} | |
function favicon(req, res, next) { | |
res.header('Location', 'http://www.joyent.com/favicon.ico'); | |
res.send(302); | |
return next(false); | |
} | |
server = restify.createServer(); | |
server.get('/favicon.ico', favicon); | |
server.head('/favicon.ico', favicon); | |
server.get(/(.*)/, respond); | |
server.head(/(.*)/, respond); | |
server.listen(8080, function() { | |
console.log('%s listening at %s', server.name, server.url); | |
}); |
That one should probably only be allowed to listen on 127.0.0.1 so that you're not exposing you /stor to the world.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice!
Slight tweak to sign urls (so you can click objects):