API changes to accommodate 3rd party clients

This commit is contained in:
ehuggett 2017-12-21 15:54:19 +00:00
parent 0f8c3caf18
commit ff9a107a29
2 changed files with 7 additions and 2 deletions

View File

@ -11,8 +11,11 @@ module.exports = async (req, res) => {
}
try {
await storage.exists(id);
res.sendStatus(200);
const meta = await storage.metadata(id);
res.set('WWW-Authenticate', `send-v1 ${meta.nonce}`);
res.send({
password: meta.pwd
});
} catch (e) {
res.sendStatus(404);
}

View File

@ -29,6 +29,8 @@ module.exports = async function(req, res) {
const ttl = await storage.ttl(id);
res.send({
metadata: meta.metadata,
dtotal: meta.dl,
dlimit: meta.dlimit,
size,
ttl
});