linkPOST.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. const Route = require('../../../structures/Route');
  2. const config = require('../../../../../config');
  3. const db = require('knex')(config.server.database);
  4. const Util = require('../../../utils/Util');
  5. const log = require('../../../utils/Log');
  6. class linkPOST extends Route {
  7. constructor() {
  8. super('/album/link/new', 'post');
  9. }
  10. async run(req, res) {
  11. if (!req.body) return res.status(400).json({ message: 'No body provided' });
  12. const { albumId, enabled, enableDownload, expiresAt } = req.body;
  13. if (!albumId) return res.status(400).json({ message: 'No album provided' });
  14. const exists = await db.table('albums').where('id', albumId).first();
  15. if (!exists) return res.status(400).json({ message: 'Album doesn\t exist' });
  16. const identifier = Util.getUniqueAlbumIdentifier();
  17. if (!identifier) return res.status(500).json({ message: 'There was a problem allocating a link for your album' });
  18. try {
  19. await db.table('links').insert({
  20. identifier,
  21. albumId,
  22. enabled,
  23. enableDownload,
  24. expiresAt
  25. });
  26. return res.json({
  27. message: 'The link was created successfully',
  28. identifier
  29. });
  30. } catch (error) {
  31. log.error(error);
  32. return res.status(500).json({ message: 'There was a problem creating the link' });
  33. }
  34. }
  35. }
  36. module.exports = linkPOST;