2021-01-04 13:17:16 +08:00
|
|
|
import Api from '../../../server/src';
|
|
|
|
import dotenv from 'dotenv';
|
|
|
|
import path from 'path';
|
|
|
|
import actions from '../../../actions/src';
|
|
|
|
import associated from '../../../actions/src/middlewares/associated';
|
|
|
|
|
2021-01-13 16:23:15 +08:00
|
|
|
// @ts-ignore
|
|
|
|
const sync = global.sync || {
|
|
|
|
force: true,
|
2021-01-04 13:17:16 +08:00
|
|
|
alter: {
|
2021-01-13 16:23:15 +08:00
|
|
|
drop: true,
|
2021-01-04 13:17:16 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
console.log('process.env.NOCOBASE_ENV', process.env.NOCOBASE_ENV);
|
|
|
|
|
|
|
|
dotenv.config();
|
|
|
|
|
|
|
|
const api = Api.create({
|
|
|
|
database: {
|
|
|
|
username: process.env.DB_USER,
|
|
|
|
password: process.env.DB_PASSWORD,
|
|
|
|
database: process.env.DB_DATABASE,
|
|
|
|
host: process.env.DB_HOST,
|
|
|
|
port: process.env.DB_PORT,
|
|
|
|
dialect: process.env.DB_DIALECT,
|
|
|
|
dialectOptions: {
|
|
|
|
charset: 'utf8mb4',
|
|
|
|
collate: 'utf8mb4_unicode_ci',
|
|
|
|
},
|
|
|
|
logging: false,
|
|
|
|
define: {},
|
|
|
|
sync,
|
|
|
|
},
|
|
|
|
resourcer: {
|
|
|
|
prefix: '/api',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
api.resourcer.use(associated);
|
|
|
|
api.resourcer.registerActionHandlers({...actions.common, ...actions.associate});
|
|
|
|
|
2021-01-13 16:23:15 +08:00
|
|
|
// api.resourcer.use(async (ctx: actions.Context, next) => {
|
|
|
|
// const token = ctx.get('Authorization').replace(/^Bearer\s+/gi, '');
|
|
|
|
// // console.log('user check', ctx.action.params.actionName);
|
|
|
|
// // const { actionName } = ctx.action.params;
|
|
|
|
// if (!token) {
|
|
|
|
// return next();
|
|
|
|
// }
|
|
|
|
// const User = ctx.db.getModel('users');
|
|
|
|
// const user = await User.findOne({
|
|
|
|
// where: {
|
|
|
|
// token,
|
|
|
|
// },
|
|
|
|
// });
|
|
|
|
// if (!user) {
|
|
|
|
// return next();
|
|
|
|
// }
|
|
|
|
// ctx.state.currentUser = user;
|
|
|
|
// // console.log('ctx.state.currentUser', ctx.state.currentUser);
|
|
|
|
// await next();
|
|
|
|
// });
|
2021-01-04 13:17:16 +08:00
|
|
|
|
|
|
|
api.registerPlugin('plugin-collections', [path.resolve(__dirname, '../../../plugin-collections'), {}]);
|
|
|
|
api.registerPlugin('plugin-pages', [path.resolve(__dirname, '../../../plugin-pages'), {}]);
|
|
|
|
api.registerPlugin('plugin-users', [path.resolve(__dirname, '../../../plugin-users'), {}]);
|
|
|
|
api.registerPlugin('plugin-file-manager', [path.resolve(__dirname, '../../../plugin-file-manager'), {}]);
|
2021-01-13 16:23:15 +08:00
|
|
|
api.registerPlugin('plugin-permissions', [path.resolve(__dirname, '../../../plugin-permissions'), {}]);
|
2021-01-04 13:17:16 +08:00
|
|
|
|
|
|
|
export default api;
|