API changes to accommodate 3rd party clients
This commit is contained in:
parent
0f8c3caf18
commit
ff9a107a29
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue