1
0
Fork 0
mirror of https://gitlab.com/Alamantus/Readlebee.git synced 2025-04-06 11:41:16 +02:00
Readlebee/server/routes/search.js

13 lines
579 B
JavaScript
Raw Normal View History

2019-09-06 17:20:27 -06:00
const SearchController = require('../controllers/search');
async function routes(fastify, options) {
fastify.get('/search', async (request, reply) => {
const searchTerm = typeof request.query.for !== 'undefined' ? request.query.for.trim() : '';
const search = new SearchController(searchTerm);
const results = await search.searchOpenLibrary();
2019-09-06 22:17:45 -06:00
reply.view('search.hbs', { results, searchTerm, arbitraryContent: request.isLoggedInUser ? JSON.stringify(fastify.jwt.decode(request.cookies.token)) : 'you are NOT logged in' });
2019-09-06 17:20:27 -06:00
});
}
module.exports = routes