mirror of https://github.com/nocodb/nocodb
Pranav C
3 years ago
12 changed files with 217 additions and 39 deletions
@ -0,0 +1,56 @@
|
||||
import cors from 'cors'; |
||||
import express from 'express'; |
||||
|
||||
import Noco from '../lib/noco/Noco'; |
||||
process.env.NC_VERSION = '0009044'; |
||||
|
||||
const server = express(); |
||||
server.use( |
||||
cors({ |
||||
exposedHeaders: 'xc-db-response' |
||||
}) |
||||
); |
||||
|
||||
server.set('view engine', 'ejs'); |
||||
|
||||
const date = new Date(); |
||||
process.env[ |
||||
`NC_DB` |
||||
] = `mysql2://localhost:3306?u=root&p=password&d=meta_${date.getFullYear()}_${date.getMonth() + |
||||
1}_${date.getDate()}`;
|
||||
// process.env[`NC_DB`] = `pg://localhost:3306?u=root&p=password&d=mar_24`;
|
||||
// process.env[`NC_DB`] = `pg://localhost:5432?u=postgres&p=password&d=abcde`;
|
||||
// process.env[`NC_TRY`] = 'true';
|
||||
// process.env[`NC_DASHBOARD_URL`] = '/test';
|
||||
|
||||
process.env[`DEBUG`] = 'xc*'; |
||||
|
||||
(async () => { |
||||
server.use(await Noco.init({})); |
||||
server.listen(process.env.PORT || 8080, () => { |
||||
console.log(`App started successfully.\nVisit -> ${Noco.dashboardUrl}`); |
||||
}); |
||||
})().catch(e => console.log(e)); |
||||
|
||||
/** |
||||
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
||||
* |
||||
* @author Naveen MR <oof1lab@gmail.com> |
||||
* @author Pranav C Balan <pranavxc@gmail.com> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
@ -0,0 +1,29 @@
|
||||
import { NcBuilderUpgraderCtx } from '../BaseApiBuilder'; |
||||
|
||||
export default async function(ctx: NcBuilderUpgraderCtx) { |
||||
const views = await ctx.xcMeta.metaList( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ |
||||
condition: { |
||||
type: 'vtable' |
||||
} |
||||
} |
||||
); |
||||
|
||||
for (const view of views) { |
||||
await ctx.xcMeta.metaUpdate( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_disabled_models_for_role', |
||||
{ |
||||
parent_model_title: view.parent_model_title |
||||
}, |
||||
{ |
||||
type: 'vtable', |
||||
title: view.title |
||||
} |
||||
); |
||||
} |
||||
} |
@ -0,0 +1,38 @@
|
||||
import Knex from 'knex'; |
||||
|
||||
const up = async (knex: Knex) => { |
||||
await knex.schema.alterTable('nc_disabled_models_for_role', table => { |
||||
table.string('parent_model_title'); |
||||
}); |
||||
}; |
||||
|
||||
const down = async knex => { |
||||
await knex.schema.alterTable('nc_disabled_models_for_role', table => { |
||||
table.dropColumn('parent_model_title'); |
||||
}); |
||||
}; |
||||
|
||||
export { up, down }; |
||||
|
||||
/** |
||||
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
||||
* |
||||
* @author Naveen MR <oof1lab@gmail.com> |
||||
* @author Pranav C Balan <pranavxc@gmail.com> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
Loading…
Reference in new issue