You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
5.2 KiB
118 lines
5.2 KiB
'use strict';
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const utils = require('./utils')
|
|
const routes = require('./routes');
|
|
//const redisConnect = require('./service/redis')
|
|
const socketConect = require('./service/socket')
|
|
const paasRequest = require('./service/paasRequest');
|
|
const authenticator = require('./middlewares/authenticator');
|
|
//const clickHouseClient = require('./service/clickHouseClient')
|
|
const schedule = require('./schedule')
|
|
// const apiLog = require('./middlewares/api-log');
|
|
|
|
module.exports.entry = function (app, router, opts) {
|
|
app.fs.logger.log('info', '[FS-AUTH]', 'Inject auth and api mv into router.');
|
|
|
|
app.fs.api = app.fs.api || {};
|
|
app.fs.opts = opts || {};
|
|
app.fs.utils = app.fs.utils || {};
|
|
app.fs.api.authAttr = app.fs.api.authAttr || {};
|
|
app.fs.api.logAttr = app.fs.api.logAttr || {};
|
|
|
|
// 顺序固定 ↓
|
|
//redisConnect(app, opts)
|
|
socketConect(app, opts)
|
|
|
|
// 实例其他平台请求方法
|
|
paasRequest(app, opts)
|
|
|
|
// clickHouse 数据库 client
|
|
// clickHouseClient(app, opts)
|
|
|
|
// 工具类函数
|
|
utils(app, opts)
|
|
|
|
// 定时任务
|
|
schedule(app, opts)
|
|
|
|
//鉴权中间件
|
|
router.use(authenticator(app, opts));
|
|
|
|
// 日志记录
|
|
// router.use(apiLog(app, opts));
|
|
|
|
router = routes(app, router, opts);
|
|
};
|
|
|
|
module.exports.models = function (dc) {
|
|
// dc = { orm: Sequelize对象, ORM: Sequelize, models: {} }
|
|
|
|
// 模型关系摘出来 初始化之后再定义关系才行
|
|
fs.readdirSync(path.join(__dirname, '/models')).forEach((filename) => {
|
|
require(`./models/${filename}`)(dc)
|
|
});
|
|
|
|
const {
|
|
DataSource, AcquisitionTask, Adapter, User, MetadataDatabase, MetadataFile, MetadataRestapi, AcquisitionLog, ResourceCatalog,
|
|
BusinessMetadataDatabase, BusinessMetadataFile, BusinessMetadataRestapi, ResourceConsumption, BusinessRule, StandardDoc, DbStatistics
|
|
, RestfulApi, RestfulApiRecord, Organization
|
|
} = dc.models;
|
|
|
|
AcquisitionTask.belongsTo(DataSource, { foreignKey: 'dataSourceId', targetKey: 'id' });
|
|
DataSource.hasMany(AcquisitionTask, { foreignKey: 'dataSourceId', sourceKey: 'id' });
|
|
AcquisitionLog.belongsTo(AcquisitionTask, { foreignKey: 'task', targetKey: 'id' });
|
|
AcquisitionTask.hasMany(AcquisitionLog, { foreignKey: 'task', sourceKey: 'id' });
|
|
DataSource.belongsTo(ResourceCatalog, { foreignKey: 'mountPath', targetKey: 'id' });
|
|
ResourceCatalog.hasMany(DataSource, { foreignKey: 'mountPath', sourceKey: 'id' });
|
|
|
|
DataSource.belongsTo(Adapter, { foreignKey: 'adapterId', targetKey: 'id' });
|
|
Adapter.hasMany(DataSource, { foreignKey: 'adapterId', sourceKey: 'id' });
|
|
|
|
MetadataDatabase.belongsTo(User, { foreignKey: 'createBy', targetKey: 'id' });
|
|
MetadataFile.belongsTo(User, { foreignKey: 'createBy', targetKey: 'id' });
|
|
MetadataRestapi.belongsTo(User, { foreignKey: 'createBy', targetKey: 'id' });
|
|
|
|
BusinessMetadataDatabase.belongsTo(MetadataDatabase, { foreignKey: 'metadataDatabaseId', targetKey: 'id' });
|
|
MetadataDatabase.hasMany(BusinessMetadataDatabase, { foreignKey: 'metadataDatabaseId', sourceKey: 'id' });
|
|
|
|
MetadataDatabase.hasMany(MetadataDatabase, { foreignKey: 'parent', sourceKey: 'id' });
|
|
|
|
BusinessMetadataFile.belongsTo(MetadataFile, { foreignKey: 'metadataFileId', targetKey: 'id' });
|
|
MetadataFile.hasMany(BusinessMetadataFile, { foreignKey: 'metadataFileId', sourceKey: 'id' });
|
|
|
|
BusinessMetadataRestapi.belongsTo(MetadataRestapi, { foreignKey: 'metadataRestapiId', targetKey: 'id' });
|
|
MetadataRestapi.hasMany(BusinessMetadataRestapi, { foreignKey: 'metadataRestapiId', sourceKey: 'id' });
|
|
|
|
BusinessMetadataDatabase.belongsTo(User, { foreignKey: 'createBy', targetKey: 'id' });
|
|
BusinessMetadataFile.belongsTo(User, { foreignKey: 'createBy', targetKey: 'id' });
|
|
BusinessMetadataRestapi.belongsTo(User, { foreignKey: 'createBy', targetKey: 'id' });
|
|
|
|
ResourceConsumption.belongsTo(User, { foreignKey: 'applyBy', targetKey: 'id', as: "applyUser" });
|
|
|
|
RestfulApi.hasMany(ResourceConsumption, { foreignKey: 'restServiceId', targetKey: 'id', });
|
|
|
|
ResourceConsumption.belongsTo(User, { foreignKey: 'approveBy', targetKey: 'id', as: 'approveUser' });
|
|
|
|
BusinessRule.belongsTo(StandardDoc, { foreignKey: 'ruleBasis', targetKey: 'id' });
|
|
StandardDoc.hasMany(BusinessRule, { foreignKey: 'ruleBasis', targetKey: 'id' });
|
|
|
|
DbStatistics.belongsTo(DataSource, { foreignKey: 'sourceId', targetKey: 'id' });
|
|
DataSource.hasMany(DbStatistics, { foreignKey: 'sourceId', sourceKey: 'id' })
|
|
|
|
RestfulApiRecord.belongsTo(RestfulApi, { foreignKey: 'restServiceId', targetKey: 'id' });
|
|
|
|
User.belongsTo(Organization, { foreignKey: 'orgId', targetKey: 'id' });
|
|
|
|
ResourceConsumption.belongsTo(MetadataDatabase, { foreignKey: 'resourceId', targetKey: 'id' });
|
|
ResourceConsumption.belongsTo(RestfulApi, { foreignKey: 'restServiceId', targetKey: 'id' });
|
|
|
|
MetadataDatabase.belongsTo(ResourceCatalog, { foreignKey: 'catalog', targetKey: 'id' });
|
|
RestfulApi.belongsTo(ResourceCatalog, { foreignKey: 'catalog', targetKey: 'id' });
|
|
MetadataFile.belongsTo(ResourceCatalog, { foreignKey: 'catalog', targetKey: 'id' });
|
|
|
|
ResourceCatalog.belongsTo(Organization, { foreignKey: 'orgId', targetKey: 'id' });
|
|
|
|
ResourceConsumption.belongsTo(MetadataFile, { foreignKey: 'resourceId', targetKey: 'id' });
|
|
};
|
|
|