| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /**
- * @swagger
- *
- * components:
- * schemas:
- * ElasticsearchResult:
- * description: Elasticsearch result v1
- * type: object
- * properties:
- * meta:
- * type: object
- * properties:
- * took:
- * type: number
- * description: Time Elasticsearch took to execute a search(milliseconds)
- * example: 34
- * total:
- * type: number
- * description: Number of documents matching search criteria
- * example: 2
- * results:
- * type: number
- * description: Actual array length of search results
- * example: 2
- *
- */
- module.exports = function(crowi, app) {
- // var debug = require('debug')('growi:routes:search')
- const Page = crowi.model('Page');
- const ApiResponse = require('../util/apiResponse');
- const ApiPaginate = require('../util/apiPaginate');
- const actions = {};
- const api = {};
- actions.searchPage = function(req, res) {
- const keyword = req.query.q || null;
- return res.render('search', {
- q: keyword,
- });
- };
- /**
- * @swagger
- *
- * /search:
- * get:
- * tags: [Search, CrowiCompatibles]
- * operationId: searchPages
- * summary: /search
- * description: Search pages
- * parameters:
- * - in: query
- * name: q
- * schema:
- * type: string
- * description: keyword
- * example: daily report
- * required: true
- * - in: query
- * name: path
- * schema:
- * $ref: '#/components/schemas/Page/properties/path'
- * - in: query
- * name: offset
- * schema:
- * $ref: '#/components/schemas/V1PaginateResult/properties/meta/properties/offset'
- * - in: query
- * name: limit
- * schema:
- * $ref: '#/components/schemas/V1PaginateResult/properties/meta/properties/limit'
- * responses:
- * 200:
- * description: Succeeded to get list of pages.
- * content:
- * application/json:
- * schema:
- * properties:
- * ok:
- * $ref: '#/components/schemas/V1Response/properties/ok'
- * meta:
- * $ref: '#/components/schemas/ElasticsearchResult/properties/meta'
- * totalCount:
- * type: integer
- * description: total count of pages
- * example: 35
- * data:
- * type: array
- * items:
- * $ref: '#/components/schemas/Page'
- * description: page list
- * 403:
- * $ref: '#/components/responses/403'
- * 500:
- * $ref: '#/components/responses/500'
- */
- /**
- * @api {get} /search search page
- * @apiName Search
- * @apiGroup Search
- *
- * @apiParam {String} q keyword
- * @apiParam {String} path
- * @apiParam {String} offset
- * @apiParam {String} limit
- */
- api.search = async function(req, res) {
- const user = req.user;
- const { q: keyword = null, type = null } = req.query;
- let paginateOpts;
- try {
- paginateOpts = ApiPaginate.parseOptionsForElasticSearch(req.query);
- }
- catch (e) {
- res.json(ApiResponse.error(e));
- }
- if (keyword === null || keyword === '') {
- return res.json(ApiResponse.error('keyword should not empty.'));
- }
- const { searchService } = crowi;
- if (!searchService.isReachable) {
- return res.json(ApiResponse.error('SearchService is not reachable.'));
- }
- let userGroups = [];
- if (user != null) {
- const UserGroupRelation = crowi.model('UserGroupRelation');
- userGroups = await UserGroupRelation.findAllUserGroupIdsRelatedToUser(user);
- }
- const searchOpts = { ...paginateOpts, type };
- const result = {};
- try {
- const esResult = await searchService.searchKeyword(keyword, user, userGroups, searchOpts);
- // create score map for sorting
- // key: id , value: score
- const scoreMap = {};
- for (const esPage of esResult.data) {
- scoreMap[esPage._id] = esPage._score;
- }
- const ids = esResult.data.map((page) => { return page._id });
- const findResult = await Page.findListByPageIds(ids);
- // add tag data to result pages
- findResult.pages.map((page) => {
- const data = esResult.data.find((data) => { return page.id === data._id });
- page._doc.tags = data._source.tag_names;
- return page;
- });
- result.meta = esResult.meta;
- result.totalCount = findResult.totalCount;
- result.data = findResult.pages
- .map((page) => {
- page.bookmarkCount = (page._source && page._source.bookmark_count) || 0;
- return page;
- })
- .sort((page1, page2) => {
- // note: this do not consider NaN
- return scoreMap[page2._id] - scoreMap[page1._id];
- });
- }
- catch (err) {
- return res.json(ApiResponse.error(err));
- }
- return res.json(ApiResponse.success(result));
- };
- actions.api = api;
- return actions;
- };
|