2018-01-30 20:15:09 +00:00
|
|
|
const storage = require('../storage');
|
|
|
|
|
|
|
|
module.exports = async function(req, res) {
|
|
|
|
const id = req.params.id;
|
|
|
|
const ownerToken = req.body.owner_token;
|
|
|
|
if (!ownerToken) {
|
|
|
|
return res.sendStatus(400);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const meta = await storage.metadata(id);
|
|
|
|
if (meta.owner !== ownerToken) {
|
|
|
|
return res.sendStatus(400);
|
|
|
|
}
|
|
|
|
const ttl = await storage.ttl(id);
|
|
|
|
return res.send({
|
2018-02-02 18:10:51 +00:00
|
|
|
dlimit: +meta.dlimit,
|
|
|
|
dtotal: +meta.dl,
|
2018-01-30 20:15:09 +00:00
|
|
|
ttl
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
res.sendStatus(404);
|
|
|
|
}
|
|
|
|
};
|