skin support, fix #15

This commit is contained in:
jomo
2014-11-24 00:53:39 +01:00
parent 796f410248
commit 55ed86a3f6
3 changed files with 59 additions and 19 deletions

View File

@@ -1,3 +1,5 @@
var networking = require('../modules/networking');
var logging = require('../modules/logging');
var helpers = require('../modules/helpers');
var router = require('express').Router();
var config = require('../modules/config');
@@ -11,8 +13,46 @@ var human_status = {
"-1": "error"
};
router.get('/skins/:uuid.:ext?', function(req, res) {
var uuid = req.params.uuid;
var start = new Date();
if (!helpers.uuid_valid(uuid)) {
res.status(422).send("422 Invalid UUID");
return;
}
// strip dashes
uuid = uuid.replace(/-/g, "");
try {
helpers.get_image_hash(uuid, function(err, status, hash) {
if (hash) {
res.writeHead(301, {
'Location': "http://textures.minecraft.net/texture/" + hash,
'Cache-Control': 'max-age=' + config.browser_cache_time + ', public',
'Response-Time': new Date() - start,
'X-Storage-Type': human_status[status]
});
res.end();
} else if (!err) {
res.writeHead(404, {
'Cache-Control': 'max-age=' + config.browser_cache_time + ', public',
'Response-Time': new Date() - start,
'X-Storage-Type': human_status[status]
});
res.end("404 Not found");
} else {
res.status(500).send("500 Internal server error");
}
});
} catch(e) {
logging.error("Error!");
logging.error(e);
res.status(500).send("500 Internal server error");
}
});
/* GET avatar request. */
router.get('/:uuid.:ext?', function(req, res) {
router.get('/avatars/:uuid.:ext?', function(req, res) {
var uuid = req.params.uuid;
var size = req.query.size || config.default_size;
var def = req.query.default;
@@ -35,9 +75,9 @@ router.get('/:uuid.:ext?', function(req, res) {
try {
helpers.get_avatar(uuid, helm, size, function(err, status, image) {
console.log(uuid + " - " + human_status[status]);
logging.log(uuid + " - " + human_status[status]);
if (err) {
console.error(err);
logging.error(err);
}
if (image) {
sendimage(err ? 503 : 200, status, image);
@@ -46,8 +86,8 @@ router.get('/:uuid.:ext?', function(req, res) {
}
});
} catch(e) {
console.error("Error!");
console.error(e);
logging.error("Error!");
logging.error(e);
handle_default(500, status);
}