mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-12 22:22:31 +01:00
Merge pull request #683 from ehuggett/issue618
API changes to accommodate 3rd party clients
This commit is contained in:
commit
50ba8bec5a
@ -11,8 +11,11 @@ module.exports = async (req, res) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await storage.exists(id);
|
const meta = await storage.metadata(id);
|
||||||
res.sendStatus(200);
|
res.set('WWW-Authenticate', `send-v1 ${meta.nonce}`);
|
||||||
|
res.send({
|
||||||
|
password: meta.pwd !== '0'
|
||||||
|
});
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
res.sendStatus(404);
|
res.sendStatus(404);
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,8 @@ module.exports = async function(req, res) {
|
|||||||
const ttl = await storage.ttl(id);
|
const ttl = await storage.ttl(id);
|
||||||
res.send({
|
res.send({
|
||||||
metadata: meta.metadata,
|
metadata: meta.metadata,
|
||||||
|
dtotal: +meta.dl,
|
||||||
|
dlimit: +meta.dlimit,
|
||||||
size,
|
size,
|
||||||
ttl
|
ttl
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user