1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 16:41:32 +02:00
send/server/routes/exists.js
2018-02-09 15:03:05 -08:00

14 lines
297 B
JavaScript

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