linkPOST.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. const Route = require('../../../structures/Route');
  2. const Util = require('../../../utils/Util');
  3. const log = require('../../../utils/Log');
  4. class linkPOST extends Route {
  5. constructor() {
  6. super('/album/link/new', 'post');
  7. }
  8. async run(req, res, db, user) {
  9. if (!req.body) return res.status(400).json({ message: 'No body provided' });
  10. const { albumId } = req.body;
  11. if (!albumId) return res.status(400).json({ message: 'No album provided' });
  12. /*
  13. Make sure the album exists
  14. */
  15. const exists = await db.table('albums').where('id', albumId).first();
  16. if (!exists) return res.status(400).json({ message: 'Album doesn\t exist' });
  17. /*
  18. Count the amount of links created for that album already and error out if max was reached
  19. */
  20. const count = await db.table('links').where('albumId', albumId).count({ count: 'id' });
  21. if (count[0].count >= process.env.MAX_LINKS_PER_ALBUM) return res.status(400).json({ message: 'Maximum links per album reached' });
  22. /*
  23. Try to allocate a new identifier on the db
  24. */
  25. const identifier = await Util.getUniqueAlbumIdentifier();
  26. if (!identifier) return res.status(500).json({ message: 'There was a problem allocating a link for your album' });
  27. try {
  28. await db.table('links').insert({
  29. identifier,
  30. userId: user.id,
  31. albumId,
  32. enabled: true,
  33. enableDownload: true,
  34. expiresAt: null,
  35. views: 0
  36. });
  37. return res.json({
  38. message: 'The link was created successfully',
  39. identifier
  40. });
  41. } catch (error) {
  42. log.error(error);
  43. return res.status(500).json({ message: 'There was a problem creating the link' });
  44. }
  45. }
  46. }
  47. module.exports = linkPOST;