120 lines
3.4 KiB
JavaScript
120 lines
3.4 KiB
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
const ShelfController = require('../controllers/shelf');
|
|
|
|
async function routes(fastify, options) {
|
|
fastify.get('/api/shelf/test', async (request, reply) => {
|
|
return false;
|
|
});
|
|
|
|
fastify.get('/api/shelves/get', async (request, reply) => {
|
|
if (!request.isLoggedInUser) {
|
|
return reply.code(400).send({
|
|
error: true,
|
|
message: 'api.not_logged_in',
|
|
});
|
|
}
|
|
|
|
const shelfController = new ShelfController(fastify.models.Shelf, fastify.models.ShelfItem);
|
|
|
|
const shelves = await request.user.getShelves({
|
|
attributes: ['id', 'name', 'isDeletable', 'isPublic', 'updatedAt'],
|
|
});
|
|
|
|
return shelves.map(shelf => {
|
|
shelf.updatedAt = shelfController.getLastUpdatedTimestamp(shelf);
|
|
return shelf;
|
|
});
|
|
});
|
|
|
|
fastify.post('/api/shelf/create', async (request, reply) => {
|
|
if (!request.isLoggedInUser) {
|
|
return reply.code(400).send({
|
|
error: true,
|
|
message: 'api.not_logged_in',
|
|
});
|
|
}
|
|
|
|
if (typeof request.body.shelfName === 'undefined') {
|
|
return reply.code(400).send({
|
|
error: true,
|
|
message: 'api.shelf.create.missing_name',
|
|
});
|
|
}
|
|
request.body.shelfName = request.body.shelfName.trim();
|
|
|
|
const userShelves = await request.user.getShelves({
|
|
attributes: ['name'],
|
|
});
|
|
const shelfNameIsValid = ShelfController.newShelfNameIsValid(
|
|
request.body.shelfName,
|
|
userShelves.map(shelf => shelf.name)
|
|
);
|
|
if (shelfNameIsValid !== true) {
|
|
return reply.code(400).send(shelfNameIsValid);
|
|
}
|
|
|
|
const shelf = new ShelfController(fastify.models.Shelf, fastify.models.ShelfItem);
|
|
|
|
const newShelf = shelf.createShelf(request.user, request.body.shelfName);
|
|
if (typeof newShelf.error !== 'undefined' && newShelf.error !== false) {
|
|
newShelf.message = 'api.shelf.create.fail';
|
|
return reply.code(400).send(newShelf);
|
|
}
|
|
|
|
return reply.send({
|
|
error: false,
|
|
message: 'api.shelf.create.success',
|
|
});
|
|
});
|
|
|
|
fastify.post('/api/shelf/rename', async (request, reply) => {
|
|
if (!request.isLoggedInUser) {
|
|
return reply.code(400).send({
|
|
error: true,
|
|
message: 'api.not_logged_in',
|
|
});
|
|
}
|
|
|
|
if (typeof request.body.shelfId === 'undefined') {
|
|
return reply.code(400).send({
|
|
error: true,
|
|
message: 'api.shelf.rename.missing_id',
|
|
});
|
|
}
|
|
|
|
if (typeof request.body.shelfName === 'undefined') {
|
|
return reply.code(400).send({
|
|
error: true,
|
|
message: 'api.shelf.rename.missing_name',
|
|
});
|
|
}
|
|
request.body.shelfName = request.body.shelfName.trim();
|
|
|
|
const userShelves = await request.user.getShelves({
|
|
attributes: ['name'],
|
|
});
|
|
const shelfNameIsValid = ShelfController.newShelfNameIsValid(
|
|
request.body.shelfName,
|
|
userShelves.map(shelf => shelf.name)
|
|
);
|
|
if (shelfNameIsValid !== true) {
|
|
return reply.code(400).send(shelfNameIsValid);
|
|
}
|
|
|
|
const shelf = new ShelfController(fastify.models.Shelf, fastify.models.ShelfItem);
|
|
|
|
const newShelf = shelf.renameShelf(request.user, request.body.shelfId, request.body.shelfName);
|
|
if (typeof newShelf.error !== 'undefined' && newShelf.error !== false) {
|
|
newShelf.message = 'api.shelf.rename.fail';
|
|
return reply.code(400).send(newShelf);
|
|
}
|
|
|
|
return reply.send({
|
|
error: false,
|
|
message: 'api.shelf.rename.success',
|
|
});
|
|
});
|
|
}
|
|
|
|
module.exports = routes; |