2020-11-05 18:58:23 +02:00
|
|
|
import BaseModel, { ModelType } from '../../../BaseModel';
|
|
|
|
import { Request } from '../Api';
|
|
|
|
import defaultLoadOptions from '../utils/defaultLoadOptions';
|
|
|
|
import { ErrorBadRequest, ErrorMethodNotAllowed } from '../utils/errors';
|
|
|
|
import requestFields from '../utils/requestFields';
|
2020-11-11 13:52:47 +02:00
|
|
|
import collectionToPaginatedResults from '../utils/collectionToPaginatedResults';
|
2021-01-22 19:41:11 +02:00
|
|
|
import BaseItem from '../../../models/BaseItem';
|
2023-11-19 13:44:34 +02:00
|
|
|
import SearchEngineUtils, { NotesForQueryOptions } from '../../searchengine/SearchEngineUtils';
|
2020-11-05 18:58:23 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
export default async function(request: Request) {
|
2020-11-05 18:58:23 +02:00
|
|
|
if (request.method !== 'GET') throw new ErrorMethodNotAllowed();
|
|
|
|
|
|
|
|
const query = request.query.query;
|
|
|
|
if (!query) throw new ErrorBadRequest('Missing "query" parameter');
|
|
|
|
|
|
|
|
const modelType = request.query.type ? BaseModel.modelNameToType(request.query.type) : BaseModel.TYPE_NOTE;
|
|
|
|
|
|
|
|
let results = [];
|
|
|
|
|
|
|
|
if (modelType !== BaseItem.TYPE_NOTE) {
|
|
|
|
const ModelClass = BaseItem.getClassByItemType(modelType);
|
2020-11-12 21:13:28 +02:00
|
|
|
const options: any = {};
|
2020-11-05 18:58:23 +02:00
|
|
|
const fields = requestFields(request, modelType);
|
|
|
|
if (fields.length) options.fields = fields;
|
|
|
|
const sqlQueryPart = query.replace(/\*/g, '%');
|
|
|
|
options.where = 'title LIKE ?';
|
|
|
|
options.whereParams = [sqlQueryPart];
|
|
|
|
options.caseInsensitive = true;
|
|
|
|
results = await ModelClass.all(options);
|
|
|
|
} else {
|
2023-11-19 13:44:34 +02:00
|
|
|
const options: NotesForQueryOptions = {
|
|
|
|
...defaultLoadOptions(request, ModelType.Note),
|
|
|
|
appendWildCards: true,
|
|
|
|
};
|
|
|
|
results = await SearchEngineUtils.notesForQuery(query, false, options);
|
2020-11-05 18:58:23 +02:00
|
|
|
}
|
|
|
|
|
2021-02-01 14:41:25 +02:00
|
|
|
return collectionToPaginatedResults(modelType, results, request);
|
2020-11-05 18:58:23 +02:00
|
|
|
}
|