2022-06-22 06:25:10 +00:00
|
|
|
import { FindAttributeOptions, ModelCtor, Op, Sequelize } from 'sequelize';
|
2022-01-07 12:08:01 +00:00
|
|
|
import { Collection } from './collection';
|
2022-02-15 09:36:32 +00:00
|
|
|
import { Database } from './database';
|
|
|
|
import FilterParser from './filter-parser';
|
|
|
|
import { Appends, Except, FindOptions } from './repository';
|
2021-12-06 13:12:54 +00:00
|
|
|
|
|
|
|
const debug = require('debug')('noco-database');
|
|
|
|
|
2022-01-07 12:08:01 +00:00
|
|
|
interface OptionsParserContext {
|
|
|
|
collection: Collection;
|
|
|
|
targetKey?: string;
|
|
|
|
}
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
export class OptionsParser {
|
|
|
|
options: FindOptions;
|
|
|
|
database: Database;
|
2022-01-07 12:08:01 +00:00
|
|
|
collection: Collection;
|
2021-12-06 13:12:54 +00:00
|
|
|
model: ModelCtor<any>;
|
|
|
|
filterParser: FilterParser;
|
2022-01-07 12:08:01 +00:00
|
|
|
context: OptionsParserContext;
|
|
|
|
|
|
|
|
constructor(options: FindOptions, context: OptionsParserContext) {
|
|
|
|
const { collection } = context;
|
2021-12-06 13:12:54 +00:00
|
|
|
|
2022-01-07 12:08:01 +00:00
|
|
|
this.collection = collection;
|
|
|
|
this.model = collection.model;
|
2021-12-06 13:12:54 +00:00
|
|
|
this.options = options;
|
2022-01-07 12:08:01 +00:00
|
|
|
this.database = collection.context.database;
|
2022-04-19 09:04:54 +00:00
|
|
|
this.filterParser = new FilterParser(options?.filter, {
|
|
|
|
collection,
|
|
|
|
app: {
|
|
|
|
ctx: options?.context,
|
|
|
|
},
|
|
|
|
});
|
2022-01-07 12:08:01 +00:00
|
|
|
this.context = context;
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
isAssociation(key: string) {
|
|
|
|
return this.model.associations[key] !== undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
isAssociationPath(path: string) {
|
|
|
|
return this.isAssociation(path.split('.')[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
toSequelizeParams() {
|
2021-12-12 11:57:20 +00:00
|
|
|
const queryParams = this.filterParser.toSequelizeParams();
|
|
|
|
|
2022-01-07 12:08:01 +00:00
|
|
|
if (this.options?.filterByTk) {
|
2021-12-12 11:57:20 +00:00
|
|
|
queryParams.where = {
|
|
|
|
[Op.and]: [
|
|
|
|
queryParams.where,
|
|
|
|
{
|
2022-01-07 12:08:01 +00:00
|
|
|
[this.context.targetKey || this.collection.filterTargetKey]: this.options.filterByTk,
|
2021-12-12 11:57:20 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.parseSort(this.parseFields(queryParams));
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* parser sort options
|
|
|
|
* @param filterParams
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
protected parseSort(filterParams) {
|
2022-02-15 09:36:32 +00:00
|
|
|
let sort = this.options?.sort || [];
|
|
|
|
if (typeof sort === 'string') {
|
|
|
|
sort = sort.split(',');
|
|
|
|
}
|
2022-06-22 06:25:10 +00:00
|
|
|
const orderParams = [];
|
|
|
|
for (const sortKey of sort) {
|
|
|
|
let direction = sortKey.startsWith('-') ? 'DESC' : 'ASC';
|
|
|
|
let sortField: Array<any> = sortKey.replace('-', '').split('.');
|
|
|
|
if (this.database.inDialect('postgres', 'sqlite')) {
|
|
|
|
direction = `${direction} NULLS LAST`;
|
|
|
|
}
|
2021-12-06 13:12:54 +00:00
|
|
|
// handle sort by association
|
|
|
|
if (sortField.length > 1) {
|
|
|
|
let associationModel = this.model;
|
|
|
|
for (let i = 0; i < sortField.length - 1; i++) {
|
|
|
|
const associationKey = sortField[i];
|
|
|
|
sortField[i] = associationModel.associations[associationKey].target;
|
|
|
|
associationModel = sortField[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sortField.push(direction);
|
2022-06-22 06:25:10 +00:00
|
|
|
if (this.database.inDialect('mysql')) {
|
|
|
|
orderParams.push([Sequelize.fn('ISNULL', Sequelize.col(`${this.model.name}.${sortField[0]}`))]);
|
|
|
|
}
|
|
|
|
orderParams.push(sortField);
|
|
|
|
}
|
2021-12-06 13:12:54 +00:00
|
|
|
|
|
|
|
if (orderParams.length > 0) {
|
|
|
|
return {
|
|
|
|
order: orderParams,
|
|
|
|
...filterParams,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return filterParams;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected parseFields(filterParams: any) {
|
|
|
|
const appends = this.options?.appends || [];
|
|
|
|
const except = [];
|
|
|
|
|
|
|
|
let attributes: FindAttributeOptions = {
|
|
|
|
include: [],
|
|
|
|
exclude: [],
|
|
|
|
}; // out put all fields by default
|
|
|
|
|
|
|
|
if (this.options?.fields) {
|
|
|
|
// 将fields拆分为 attributes 和 appends
|
|
|
|
for (const field of this.options.fields) {
|
|
|
|
if (this.isAssociationPath(field)) {
|
|
|
|
// field is association field
|
|
|
|
appends.push(field);
|
|
|
|
} else {
|
|
|
|
// field is model attribute, change attributes to array type
|
|
|
|
if (!Array.isArray(attributes)) attributes = [];
|
|
|
|
|
|
|
|
attributes.push(field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.options?.except) {
|
|
|
|
for (const exceptKey of this.options.except) {
|
|
|
|
if (this.isAssociationPath(exceptKey)) {
|
|
|
|
// except association field
|
|
|
|
except.push(exceptKey);
|
|
|
|
} else {
|
|
|
|
// if attributes is array form, ignore except
|
|
|
|
if (Array.isArray(attributes)) continue;
|
|
|
|
attributes.exclude.push(exceptKey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
attributes,
|
|
|
|
...this.parseExcept(except, this.parseAppends(appends, filterParams)),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
protected parseExcept(except: Except, filterParams: any) {
|
|
|
|
if (!except) return filterParams;
|
|
|
|
const setExcept = (queryParams: any, except: string) => {
|
|
|
|
// split exceptKey to path form
|
|
|
|
// posts.comments.content => ['posts', 'comments', 'content']
|
|
|
|
// then set except on include attributes
|
|
|
|
const exceptPath = except.split('.');
|
|
|
|
const association = exceptPath[0];
|
|
|
|
const lastLevel = exceptPath.length <= 2;
|
|
|
|
|
2021-12-06 13:23:34 +00:00
|
|
|
let existIncludeIndex = queryParams['include'].findIndex((include) => include['association'] == association);
|
2021-12-06 13:12:54 +00:00
|
|
|
|
|
|
|
if (existIncludeIndex == -1) {
|
|
|
|
// if include not exists, ignore this except
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lastLevel) {
|
|
|
|
// if it not have exclude form
|
2021-12-06 13:23:34 +00:00
|
|
|
if (Array.isArray(queryParams['include'][existIncludeIndex]['attributes'])) {
|
2021-12-06 13:12:54 +00:00
|
|
|
return;
|
|
|
|
} else {
|
2021-12-06 13:23:34 +00:00
|
|
|
if (!queryParams['include'][existIncludeIndex]['attributes']['exclude']) {
|
|
|
|
queryParams['include'][existIncludeIndex]['attributes']['exclude'] = [];
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 13:23:34 +00:00
|
|
|
queryParams['include'][existIncludeIndex]['attributes']['exclude'].push(exceptPath[1]);
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
} else {
|
2021-12-06 13:23:34 +00:00
|
|
|
setExcept(queryParams['include'][existIncludeIndex], exceptPath.filter((_, index) => index !== 0).join('.'));
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const exceptKey of except) {
|
|
|
|
setExcept(filterParams, exceptKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
return filterParams;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected parseAppends(appends: Appends, filterParams: any) {
|
|
|
|
if (!appends) return filterParams;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set include params
|
2022-10-16 11:16:14 +00:00
|
|
|
* @param model
|
|
|
|
* @param queryParams
|
|
|
|
* @param append
|
2021-12-06 13:12:54 +00:00
|
|
|
*/
|
2022-02-17 09:41:30 +00:00
|
|
|
const setInclude = (model: ModelCtor<any>, queryParams: any, append: string) => {
|
2021-12-06 13:12:54 +00:00
|
|
|
const appendFields = append.split('.');
|
|
|
|
const appendAssociation = appendFields[0];
|
|
|
|
|
2022-02-17 09:41:30 +00:00
|
|
|
const associations = model.associations;
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
// if append length less or equal 2
|
|
|
|
// example:
|
|
|
|
// appends: ['posts']
|
|
|
|
// appends: ['posts.title']
|
|
|
|
// All of these can be seen as last level
|
2022-02-17 04:56:52 +00:00
|
|
|
let lastLevel: boolean = false;
|
|
|
|
|
|
|
|
if (appendFields.length == 1) {
|
|
|
|
lastLevel = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (appendFields.length == 2) {
|
|
|
|
const associationModel = associations[appendFields[0]].target;
|
|
|
|
if (associationModel.rawAttributes[appendFields[1]]) {
|
|
|
|
lastLevel = true;
|
|
|
|
}
|
|
|
|
}
|
2021-12-06 13:12:54 +00:00
|
|
|
|
|
|
|
// find association index
|
|
|
|
if (queryParams['include'] == undefined) {
|
|
|
|
queryParams['include'] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
let existIncludeIndex = queryParams['include'].findIndex(
|
|
|
|
(include) => include['association'] == appendAssociation,
|
|
|
|
);
|
|
|
|
|
|
|
|
// if association not exist, create it
|
|
|
|
if (existIncludeIndex == -1) {
|
|
|
|
// association not exists
|
|
|
|
queryParams['include'].push({
|
|
|
|
association: appendAssociation,
|
|
|
|
});
|
|
|
|
|
2022-05-10 16:25:43 +00:00
|
|
|
existIncludeIndex = queryParams['include'].length - 1;
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// end appends
|
|
|
|
// without nests association
|
|
|
|
if (lastLevel) {
|
|
|
|
// get exist association attributes
|
2021-12-06 13:23:34 +00:00
|
|
|
let attributes = queryParams['include'][existIncludeIndex]['attributes'] || {
|
2021-12-06 13:12:54 +00:00
|
|
|
include: [], // all fields are output by default
|
|
|
|
};
|
|
|
|
|
|
|
|
// if need set attribute
|
|
|
|
if (appendFields.length == 2) {
|
|
|
|
if (!Array.isArray(attributes)) {
|
|
|
|
attributes = [];
|
|
|
|
}
|
|
|
|
|
2022-02-17 04:56:52 +00:00
|
|
|
const attributeName = appendFields[1];
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
// push field to it
|
2022-02-17 04:56:52 +00:00
|
|
|
attributes.push(attributeName);
|
2021-12-06 13:12:54 +00:00
|
|
|
} else {
|
|
|
|
// if attributes is empty array, change it to object
|
|
|
|
if (Array.isArray(attributes) && attributes.length == 0) {
|
|
|
|
attributes = {
|
|
|
|
include: [],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// set new attributes
|
|
|
|
queryParams['include'][existIncludeIndex] = {
|
|
|
|
...queryParams['include'][existIncludeIndex],
|
|
|
|
attributes,
|
|
|
|
};
|
|
|
|
} else {
|
2022-02-17 09:41:30 +00:00
|
|
|
setInclude(
|
|
|
|
model.associations[queryParams['include'][existIncludeIndex].association].target,
|
|
|
|
queryParams['include'][existIncludeIndex],
|
|
|
|
appendFields.filter((_, index) => index !== 0).join('.'),
|
|
|
|
);
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// handle every appends
|
|
|
|
for (const append of appends) {
|
2022-02-17 09:41:30 +00:00
|
|
|
setInclude(this.model, filterParams, append);
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
debug('filter params: %o', filterParams);
|
|
|
|
return filterParams;
|
|
|
|
}
|
|
|
|
}
|