mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 04:40:10 +00:00
24ea83f0ff
* create-nocobase-app template from [develop] * change create-nocobase-app package.json config * feat: load configuration from directory * feat: configuration repository toObject * feat: create application from configuration dir * feat: application factory with plugins options * export type * feat: read application config & application with plugins options * feat: release command * fix: database release * chore: workflow package.json * feat: nocobase cli package * feat: console command * chore: load application in command * fix: load packages from process.cwd * feat: cli load env file * feat: create-nocobase-app * fix: gitignore create-nocobase-app lib * fix: sqlite path * feat: create plugin * chore: plugin files template * chore: move cli into application * chore: create-nocobase-app * fix: create plugin * chore: app-client && app-server * chore: package.json * feat: create-nocobase-app download template from npm * chore: create-nocobase-app template * fix: config of plugin-users * fix: yarn.lock * fix: database build error * fix: yarn.lock * fix: resourcer config * chore: cross-env * chore: app-client dependents * fix: env * chore: v0.6.0-alpha.1 * chore: verdaccio * chore(versions): 😊 publish v0.6.0 * chore(versions): 😊 publish v0.6.1-alpha.0 * chore(versions): 😊 publish v0.6.2-alpha.0 * chore(versions): 😊 publish v0.6.2-alpha.1 * chore: 0.6.2-alpha.2 * feat: workspaces * chore(versions): 😊 publish v0.6.2-alpha.3 * chore(versions): 😊 publish v0.6.2-alpha.4 * chore: create-nocobase-app * chore: create-nocobase-app lib * fix: update tsconfig.jest.json * chore: .env * chore(versions): 😊 publish v0.6.2-alpha.5 * chore(versions): 😊 publish v0.6.2-alpha.6 * feat: improve code * chore(versions): 😊 publish v0.6.2-alpha.7 * fix: cleanup * chore(versions): 😊 publish v0.6.2-alpha.8 * chore: tsconfig for app server package * fix: move files * fix: move files Co-authored-by: chenos <chenlinxh@gmail.com>
340 lines
9.7 KiB
TypeScript
340 lines
9.7 KiB
TypeScript
import { applyMixins, AsyncEmitter } from '@nocobase/utils';
|
|
import merge from 'deepmerge';
|
|
import { EventEmitter } from 'events';
|
|
import { ModelCtor, Op, Options, QueryInterfaceDropAllTablesOptions, Sequelize, SyncOptions, Utils } from 'sequelize';
|
|
import { Collection, CollectionOptions, RepositoryType } from './collection';
|
|
import { ImporterReader, ImportFileExtension } from './collection-importer';
|
|
import * as FieldTypes from './fields';
|
|
import { Field, FieldContext, RelationField } from './fields';
|
|
import { Model } from './model';
|
|
import { ModelHook } from './model-hook';
|
|
import extendOperators from './operators';
|
|
import { RelationRepository } from './relation-repository/relation-repository';
|
|
import { Repository } from './repository';
|
|
import lodash from 'lodash';
|
|
|
|
export interface MergeOptions extends merge.Options {}
|
|
|
|
export interface PendingOptions {
|
|
field: RelationField;
|
|
model: ModelCtor<Model>;
|
|
}
|
|
|
|
interface MapOf<T> {
|
|
[key: string]: T;
|
|
}
|
|
|
|
export interface IDatabaseOptions extends Options {
|
|
tablePrefix?: string;
|
|
}
|
|
|
|
export type DatabaseOptions = IDatabaseOptions | Sequelize;
|
|
|
|
interface RegisterOperatorsContext {
|
|
db?: Database;
|
|
path?: string;
|
|
field?: Field;
|
|
}
|
|
|
|
export interface CleanOptions extends QueryInterfaceDropAllTablesOptions {
|
|
drop?: boolean;
|
|
}
|
|
|
|
type OperatorFunc = (value: any, ctx?: RegisterOperatorsContext) => any;
|
|
|
|
export class Database extends EventEmitter implements AsyncEmitter {
|
|
sequelize: Sequelize;
|
|
fieldTypes = new Map();
|
|
options: IDatabaseOptions;
|
|
models = new Map<string, ModelCtor<Model>>();
|
|
repositories = new Map<string, RepositoryType>();
|
|
operators = new Map();
|
|
collections = new Map<string, Collection>();
|
|
pendingFields = new Map<string, RelationField[]>();
|
|
modelCollection = new Map<ModelCtor<any>, Collection>();
|
|
|
|
modelHook: ModelHook;
|
|
|
|
delayCollectionExtend = new Map<string, { collectionOptions: CollectionOptions; mergeOptions?: any }[]>();
|
|
|
|
constructor(options: DatabaseOptions) {
|
|
super();
|
|
|
|
if (options instanceof Sequelize) {
|
|
this.sequelize = options;
|
|
} else {
|
|
this.sequelize = new Sequelize(options);
|
|
this.options = options;
|
|
}
|
|
|
|
this.collections = new Map();
|
|
this.modelHook = new ModelHook(this);
|
|
|
|
this.on('afterDefineCollection', (collection: Collection) => {
|
|
// after collection defined, call bind method on pending fields
|
|
this.pendingFields.get(collection.name)?.forEach((field) => field.bind());
|
|
this.delayCollectionExtend.get(collection.name)?.forEach((collectionExtend) => {
|
|
collection.updateOptions(collectionExtend.collectionOptions, collectionExtend.mergeOptions);
|
|
});
|
|
});
|
|
|
|
// register database field types
|
|
for (const [name, field] of Object.entries(FieldTypes)) {
|
|
if (['Field', 'RelationField'].includes(name)) {
|
|
continue;
|
|
}
|
|
let key = name.replace(/Field$/g, '');
|
|
key = key.substring(0, 1).toLowerCase() + key.substring(1);
|
|
this.registerFieldTypes({
|
|
[key]: field,
|
|
});
|
|
}
|
|
|
|
this.initOperators();
|
|
}
|
|
|
|
/**
|
|
* Add collection to database
|
|
* @param options
|
|
*/
|
|
collection<Attributes = any, CreateAttributes = Attributes>(
|
|
options: CollectionOptions,
|
|
): Collection<Attributes, CreateAttributes> {
|
|
this.emit('beforeDefineCollection', options);
|
|
|
|
const collection = new Collection(options, {
|
|
database: this,
|
|
});
|
|
|
|
this.collections.set(collection.name, collection);
|
|
this.modelCollection.set(collection.model, collection);
|
|
|
|
this.emit('afterDefineCollection', collection);
|
|
|
|
return collection;
|
|
}
|
|
|
|
getTablePrefix() {
|
|
return this.options.tablePrefix || '';
|
|
}
|
|
|
|
/**
|
|
* get exists collection by its name
|
|
* @param name
|
|
*/
|
|
getCollection(name: string): Collection {
|
|
return this.collections.get(name);
|
|
}
|
|
|
|
hasCollection(name: string): boolean {
|
|
return this.collections.has(name);
|
|
}
|
|
|
|
removeCollection(name: string) {
|
|
const collection = this.collections.get(name);
|
|
this.emit('beforeRemoveCollection', collection);
|
|
|
|
const result = this.collections.delete(name);
|
|
|
|
if (result) {
|
|
this.emit('afterRemoveCollection', collection);
|
|
}
|
|
}
|
|
|
|
getModel<M extends Model>(name: string) {
|
|
return this.getCollection(name).model as ModelCtor<M>;
|
|
}
|
|
|
|
getRepository<R extends Repository>(name: string): R;
|
|
getRepository<R extends RelationRepository>(name: string, relationId: string | number): R;
|
|
|
|
getRepository<R extends RelationRepository>(name: string, relationId?: string | number): Repository | R {
|
|
if (relationId) {
|
|
const [collection, relation] = name.split('.');
|
|
return this.getRepository(collection)?.relation(relation)?.of(relationId) as R;
|
|
}
|
|
|
|
return this.getCollection(name)?.repository;
|
|
}
|
|
|
|
addPendingField(field: RelationField) {
|
|
const associating = this.pendingFields;
|
|
const items = this.pendingFields.get(field.target) || [];
|
|
items.push(field);
|
|
associating.set(field.target, items);
|
|
}
|
|
|
|
removePendingField(field: RelationField) {
|
|
const items = this.pendingFields.get(field.target) || [];
|
|
const index = items.indexOf(field);
|
|
if (index !== -1) {
|
|
delete items[index];
|
|
this.pendingFields.set(field.target, items);
|
|
}
|
|
}
|
|
|
|
registerFieldTypes(fieldTypes: MapOf<typeof Field>) {
|
|
for (const [type, fieldType] of Object.entries(fieldTypes)) {
|
|
this.fieldTypes.set(type, fieldType);
|
|
}
|
|
}
|
|
|
|
registerModels(models: MapOf<ModelCtor<any>>) {
|
|
for (const [type, schemaType] of Object.entries(models)) {
|
|
this.models.set(type, schemaType);
|
|
}
|
|
}
|
|
|
|
registerRepositories(repositories: MapOf<RepositoryType>) {
|
|
for (const [type, schemaType] of Object.entries(repositories)) {
|
|
this.repositories.set(type, schemaType);
|
|
}
|
|
}
|
|
|
|
initOperators() {
|
|
const operators = new Map();
|
|
|
|
// Sequelize 内置
|
|
for (const key in Op) {
|
|
operators.set('$' + key, Op[key]);
|
|
const val = Utils.underscoredIf(key, true);
|
|
operators.set('$' + val, Op[key]);
|
|
operators.set('$' + val.replace(/_/g, ''), Op[key]);
|
|
}
|
|
|
|
this.operators = operators;
|
|
|
|
this.registerOperators({
|
|
...extendOperators,
|
|
});
|
|
}
|
|
|
|
registerOperators(operators: MapOf<OperatorFunc>) {
|
|
for (const [key, operator] of Object.entries(operators)) {
|
|
this.operators.set(key, operator);
|
|
}
|
|
}
|
|
|
|
buildField(options, context: FieldContext) {
|
|
const { type } = options;
|
|
const Field = this.fieldTypes.get(type);
|
|
if (!Field) {
|
|
throw Error(`unsupported field type ${type}`);
|
|
}
|
|
return new Field(options, context);
|
|
}
|
|
|
|
async sync(options?: SyncOptions) {
|
|
const isMySQL = this.sequelize.getDialect() === 'mysql';
|
|
if (isMySQL) {
|
|
await this.sequelize.query('SET FOREIGN_KEY_CHECKS = 0', null);
|
|
}
|
|
const result = await this.sequelize.sync(options);
|
|
if (isMySQL) {
|
|
await this.sequelize.query('SET FOREIGN_KEY_CHECKS = 1', null);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
async clean(options: CleanOptions) {
|
|
const { drop, ...others } = options;
|
|
if (drop) {
|
|
await this.sequelize.getQueryInterface().dropAllTables(others);
|
|
}
|
|
}
|
|
|
|
public isSqliteMemory() {
|
|
return this.sequelize.getDialect() === 'sqlite' && lodash.get(this.options, 'storage') == ':memory:';
|
|
}
|
|
|
|
async reconnect() {
|
|
if (this.isSqliteMemory()) {
|
|
return;
|
|
}
|
|
// @ts-ignore
|
|
const ConnectionManager = this.sequelize.dialect.connectionManager.constructor;
|
|
// @ts-ignore
|
|
const connectionManager = new ConnectionManager(this.sequelize.dialect, this.sequelize);
|
|
// @ts-ignore
|
|
this.sequelize.dialect.connectionManager = connectionManager;
|
|
// @ts-ignore
|
|
this.sequelize.connectionManager = connectionManager;
|
|
}
|
|
|
|
closed() {
|
|
// @ts-ignore
|
|
return this.sequelize.connectionManager.pool._draining;
|
|
}
|
|
|
|
async close() {
|
|
if (this.isSqliteMemory()) {
|
|
return;
|
|
}
|
|
|
|
return this.sequelize.close();
|
|
}
|
|
|
|
on(event: string | symbol, listener: (...args: any[]) => void): this {
|
|
const modelEventName = this.modelHook.isModelHook(event);
|
|
|
|
if (modelEventName && !this.modelHook.hasBindEvent(modelEventName)) {
|
|
this.sequelize.addHook(modelEventName, this.modelHook.sequelizeHookBuilder(modelEventName));
|
|
|
|
this.modelHook.bindEvent(modelEventName);
|
|
}
|
|
|
|
return super.on(event, listener);
|
|
}
|
|
|
|
async import(options: { directory: string; extensions?: ImportFileExtension[] }): Promise<Map<string, Collection>> {
|
|
const reader = new ImporterReader(options.directory, options.extensions);
|
|
const modules = await reader.read();
|
|
const result = new Map<string, Collection>();
|
|
|
|
for (const module of modules) {
|
|
if (module.extend) {
|
|
const collectionName = module.collectionOptions.name;
|
|
const existCollection = this.getCollection(collectionName);
|
|
if (existCollection) {
|
|
existCollection.updateOptions(module.collectionOptions, module.mergeOptions);
|
|
} else {
|
|
const existDelayExtends = this.delayCollectionExtend.get(collectionName) || [];
|
|
|
|
this.delayCollectionExtend.set(collectionName, [...existDelayExtends, module]);
|
|
}
|
|
} else {
|
|
const collection = this.collection(module);
|
|
result.set(collection.name, collection);
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
emitAsync: (event: string | symbol, ...args: any[]) => Promise<boolean>;
|
|
}
|
|
|
|
export function extend(collectionOptions: CollectionOptions, mergeOptions?: MergeOptions) {
|
|
return {
|
|
collectionOptions,
|
|
mergeOptions,
|
|
extend: true,
|
|
};
|
|
}
|
|
|
|
export const defineCollection = (collectionOptions: CollectionOptions) => {
|
|
return collectionOptions;
|
|
};
|
|
|
|
export const extendCollection = (collectionOptions: CollectionOptions, mergeOptions?: MergeOptions) => {
|
|
return {
|
|
collectionOptions,
|
|
mergeOptions,
|
|
extend: true,
|
|
};
|
|
};
|
|
|
|
applyMixins(Database, [AsyncEmitter]);
|
|
|
|
export default Database;
|