2024-04-30 07:51:31 +00:00
|
|
|
/**
|
|
|
|
* This file is part of the NocoBase (R) project.
|
|
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
|
|
* Authors: NocoBase Team.
|
|
|
|
*
|
|
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
|
|
*/
|
|
|
|
|
2023-07-21 02:51:56 +00:00
|
|
|
import lodash from 'lodash';
|
2022-12-24 08:30:01 +00:00
|
|
|
import { FindAttributeOptions, ModelStatic, 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';
|
2023-09-25 10:17:19 +00:00
|
|
|
import qs from 'qs';
|
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;
|
2022-12-24 08:30:01 +00:00
|
|
|
model: ModelStatic<any>;
|
2021-12-06 13:12:54 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-06-06 03:30:35 +00:00
|
|
|
static appendInheritInspectAttribute(include, collection): any {
|
2023-06-08 09:58:39 +00:00
|
|
|
// if include already has __tableName, __schemaName, skip
|
|
|
|
if (include.find((item) => item?.[1] === '__tableName')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-06 03:30:35 +00:00
|
|
|
include.push([
|
|
|
|
Sequelize.literal(`(select relname from pg_class where pg_class.oid = "${collection.name}".tableoid)`),
|
|
|
|
'__tableName',
|
|
|
|
]);
|
|
|
|
|
|
|
|
include.push([
|
|
|
|
Sequelize.literal(`
|
|
|
|
(SELECT n.nspname
|
|
|
|
FROM pg_class c
|
|
|
|
JOIN pg_namespace n ON n.oid = c.relnamespace
|
|
|
|
WHERE c.oid = "${collection.name}".tableoid)
|
|
|
|
`),
|
|
|
|
'__schemaName',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-07-21 02:51:56 +00:00
|
|
|
if (this.options?.include) {
|
|
|
|
if (!queryParams.include) {
|
|
|
|
queryParams.include = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
queryParams.include.push(...lodash.castArray(this.options.include));
|
|
|
|
}
|
|
|
|
|
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 || [];
|
2024-05-06 13:03:30 +00:00
|
|
|
|
2022-02-15 09:36:32 +00:00
|
|
|
if (typeof sort === 'string') {
|
|
|
|
sort = sort.split(',');
|
|
|
|
}
|
2022-10-27 01:33:34 +00:00
|
|
|
|
2024-05-06 13:03:30 +00:00
|
|
|
const primaryKeyField = this.model.primaryKeyAttribute;
|
|
|
|
|
|
|
|
if (primaryKeyField && !this.options?.group) {
|
|
|
|
if (!sort.includes(primaryKeyField)) {
|
|
|
|
sort.push(primaryKeyField);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-22 06:25:10 +00:00
|
|
|
const orderParams = [];
|
2024-05-06 13:03:30 +00:00
|
|
|
|
2022-06-22 06:25:10 +00:00
|
|
|
for (const sortKey of sort) {
|
|
|
|
let direction = sortKey.startsWith('-') ? 'DESC' : 'ASC';
|
2024-05-06 13:03:30 +00:00
|
|
|
const sortField: Array<any> = sortKey.startsWith('-') ? sortKey.replace('-', '').split('.') : sortKey.split('.');
|
2023-02-13 13:38:47 +00:00
|
|
|
|
2022-06-22 06:25:10 +00:00
|
|
|
if (this.database.inDialect('postgres', 'sqlite')) {
|
|
|
|
direction = `${direction} NULLS LAST`;
|
|
|
|
}
|
2024-05-06 13:03:30 +00:00
|
|
|
|
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];
|
|
|
|
}
|
2023-02-13 13:38:47 +00:00
|
|
|
} else {
|
|
|
|
const rawField = this.model.rawAttributes[sortField[0]];
|
|
|
|
sortField[0] = rawField?.field || sortField[0];
|
2021-12-06 13:12:54 +00:00
|
|
|
}
|
2023-02-13 13:38:47 +00:00
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
sortField.push(direction);
|
2023-11-20 00:54:40 +00:00
|
|
|
if (this.database.isMySQLCompatibleDialect()) {
|
2022-06-22 06:25:10 +00:00
|
|
|
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 = [];
|
|
|
|
|
2023-03-31 05:58:35 +00:00
|
|
|
if (this.options?.attributes) {
|
|
|
|
return {
|
|
|
|
attributes: this.options.attributes,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
let attributes: FindAttributeOptions = {
|
|
|
|
include: [],
|
|
|
|
exclude: [],
|
|
|
|
}; // out put all fields by default
|
|
|
|
|
2022-11-16 04:53:58 +00:00
|
|
|
if (this.collection.isParent()) {
|
2023-06-06 03:30:35 +00:00
|
|
|
OptionsParser.appendInheritInspectAttribute(attributes.include, this.collection);
|
2022-11-16 04:53:58 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
if (this.options?.fields) {
|
2023-04-16 09:30:39 +00:00
|
|
|
attributes = [];
|
2023-06-08 09:58:39 +00:00
|
|
|
|
2023-04-16 09:30:39 +00:00
|
|
|
if (this.collection.isParent()) {
|
2023-06-06 03:30:35 +00:00
|
|
|
OptionsParser.appendInheritInspectAttribute(attributes, this.collection);
|
2023-04-16 09:30:39 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
// 将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
|
|
|
|
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;
|
|
|
|
|
2023-04-25 05:12:14 +00:00
|
|
|
const 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;
|
|
|
|
}
|
|
|
|
|
2023-09-25 10:17:19 +00:00
|
|
|
protected parseAppendWithOptions(append: string) {
|
|
|
|
const parts = append.split('(');
|
|
|
|
const obj: { name: string; options?: object; raw?: string } = {
|
|
|
|
name: parts[0],
|
|
|
|
};
|
|
|
|
|
|
|
|
if (parts.length > 1) {
|
|
|
|
const optionsStr = parts[1].replace(')', '');
|
|
|
|
obj.options = qs.parse(optionsStr);
|
|
|
|
obj.raw = `(${optionsStr})`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
protected parseAppends(appends: Appends, filterParams: any) {
|
|
|
|
if (!appends) return filterParams;
|
|
|
|
|
2023-07-28 08:46:43 +00:00
|
|
|
// sort appends by path length
|
|
|
|
appends = lodash.sortBy(appends, (append) => append.split('.').length);
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
/**
|
|
|
|
* 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-12-24 08:30:01 +00:00
|
|
|
const setInclude = (model: ModelStatic<any>, queryParams: any, append: string) => {
|
2023-09-25 10:17:19 +00:00
|
|
|
const appendWithOptions = this.parseAppendWithOptions(append);
|
|
|
|
|
|
|
|
append = appendWithOptions.name;
|
|
|
|
|
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
|
2023-04-25 05:12:14 +00:00
|
|
|
let lastLevel = false;
|
2022-02-17 04:56:52 +00:00
|
|
|
|
|
|
|
if (appendFields.length == 1) {
|
|
|
|
lastLevel = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (appendFields.length == 2) {
|
2023-05-11 04:47:31 +00:00
|
|
|
const association = associations[appendFields[0]];
|
|
|
|
if (!association) {
|
|
|
|
throw new Error(`association ${appendFields[0]} in ${model.name} not found`);
|
|
|
|
}
|
|
|
|
|
2022-02-17 04:56:52 +00:00
|
|
|
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,
|
|
|
|
);
|
|
|
|
|
2023-05-19 08:39:00 +00:00
|
|
|
// if include from filter, remove fromFilter attribute
|
|
|
|
if (existIncludeIndex != -1) {
|
|
|
|
delete queryParams['include'][existIncludeIndex]['fromFilter'];
|
2023-07-28 08:46:43 +00:00
|
|
|
|
|
|
|
// set include attributes to all attributes
|
|
|
|
if (
|
|
|
|
Array.isArray(queryParams['include'][existIncludeIndex]['attributes']) &&
|
|
|
|
queryParams['include'][existIncludeIndex]['attributes'].length == 0
|
|
|
|
) {
|
|
|
|
queryParams['include'][existIncludeIndex]['attributes'] = {
|
|
|
|
include: [],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
lastLevel &&
|
|
|
|
existIncludeIndex != -1 &&
|
|
|
|
lodash.get(queryParams, ['include', existIncludeIndex, 'attributes', 'include'])?.length == 0
|
|
|
|
) {
|
|
|
|
// if append is last level and association exists, ignore it
|
|
|
|
return;
|
2023-05-19 08:39:00 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 13:12:54 +00:00
|
|
|
// if association not exist, create it
|
|
|
|
if (existIncludeIndex == -1) {
|
|
|
|
// association not exists
|
|
|
|
queryParams['include'].push({
|
|
|
|
association: appendAssociation,
|
2023-09-25 10:17:19 +00:00
|
|
|
options: appendWithOptions.options || {},
|
2021-12-06 13:12:54 +00:00
|
|
|
});
|
|
|
|
|
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 {
|
2023-05-08 03:18:42 +00:00
|
|
|
const existInclude = queryParams['include'][existIncludeIndex];
|
|
|
|
if (existInclude.attributes && Array.isArray(existInclude.attributes) && existInclude.attributes.length == 0) {
|
|
|
|
existInclude.attributes = {
|
|
|
|
include: [],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-09-25 10:17:19 +00:00
|
|
|
let nextAppend = appendFields.filter((_, index) => index !== 0).join('.');
|
|
|
|
if (appendWithOptions.raw) {
|
|
|
|
nextAppend += appendWithOptions.raw;
|
|
|
|
}
|
|
|
|
|
2022-02-17 09:41:30 +00:00
|
|
|
setInclude(
|
|
|
|
model.associations[queryParams['include'][existIncludeIndex].association].target,
|
|
|
|
queryParams['include'][existIncludeIndex],
|
2023-09-25 10:17:19 +00:00
|
|
|
nextAppend,
|
2022-02-17 09:41:30 +00:00
|
|
|
);
|
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;
|
|
|
|
}
|
|
|
|
}
|