feat: dialect version accessors (#1502)
This commit is contained in:
parent
dfbdbc741d
commit
750081e6aa
7
.github/workflows/nocobase-test.yml
vendored
7
.github/workflows/nocobase-test.yml
vendored
@ -43,9 +43,8 @@ jobs:
|
|||||||
node-version: ${{ matrix.node_version }}
|
node-version: ${{ matrix.node_version }}
|
||||||
cache: 'yarn'
|
cache: 'yarn'
|
||||||
- run: yarn install
|
- run: yarn install
|
||||||
# - run: yarn build
|
|
||||||
- name: Test with Sqlite
|
- name: Test with Sqlite
|
||||||
run: yarn test
|
run: yarn nocobase install -f && yarn test
|
||||||
env:
|
env:
|
||||||
DB_DIALECT: sqlite
|
DB_DIALECT: sqlite
|
||||||
DB_STORAGE: /tmp/db.sqlite
|
DB_STORAGE: /tmp/db.sqlite
|
||||||
@ -84,7 +83,7 @@ jobs:
|
|||||||
- run: yarn install
|
- run: yarn install
|
||||||
# - run: yarn build
|
# - run: yarn build
|
||||||
- name: Test with postgres
|
- name: Test with postgres
|
||||||
run: yarn test
|
run: yarn nocobase install -f && yarn test
|
||||||
env:
|
env:
|
||||||
DB_DIALECT: postgres
|
DB_DIALECT: postgres
|
||||||
DB_HOST: postgres
|
DB_HOST: postgres
|
||||||
@ -119,7 +118,7 @@ jobs:
|
|||||||
- run: yarn install
|
- run: yarn install
|
||||||
# - run: yarn build
|
# - run: yarn build
|
||||||
- name: Test with MySQL
|
- name: Test with MySQL
|
||||||
run: yarn test
|
run: yarn nocobase install -f && yarn test
|
||||||
env:
|
env:
|
||||||
DB_DIALECT: mysql
|
DB_DIALECT: mysql
|
||||||
DB_HOST: mysql
|
DB_HOST: mysql
|
||||||
|
@ -15,7 +15,7 @@ import {
|
|||||||
Sequelize,
|
Sequelize,
|
||||||
SyncOptions,
|
SyncOptions,
|
||||||
Transactionable,
|
Transactionable,
|
||||||
Utils,
|
Utils
|
||||||
} from 'sequelize';
|
} from 'sequelize';
|
||||||
import { SequelizeStorage, Umzug } from 'umzug';
|
import { SequelizeStorage, Umzug } from 'umzug';
|
||||||
import { Collection, CollectionOptions, RepositoryType } from './collection';
|
import { Collection, CollectionOptions, RepositoryType } from './collection';
|
||||||
@ -58,7 +58,7 @@ import {
|
|||||||
SyncListener,
|
SyncListener,
|
||||||
UpdateListener,
|
UpdateListener,
|
||||||
UpdateWithAssociationsListener,
|
UpdateWithAssociationsListener,
|
||||||
ValidateListener,
|
ValidateListener
|
||||||
} from './types';
|
} from './types';
|
||||||
import { patchSequelizeQueryInterface, snakeCase } from './utils';
|
import { patchSequelizeQueryInterface, snakeCase } from './utils';
|
||||||
|
|
||||||
@ -105,6 +105,30 @@ export type AddMigrationsOptions = {
|
|||||||
|
|
||||||
type OperatorFunc = (value: any, ctx?: RegisterOperatorsContext) => any;
|
type OperatorFunc = (value: any, ctx?: RegisterOperatorsContext) => any;
|
||||||
|
|
||||||
|
export const DialectVersionAccessors = {
|
||||||
|
sqlite: {
|
||||||
|
sql: 'select sqlite_version() as version',
|
||||||
|
get: (v: string) => v,
|
||||||
|
},
|
||||||
|
mysql: {
|
||||||
|
sql: 'select version() as version',
|
||||||
|
get: (v: string) => {
|
||||||
|
if (v.toLowerCase().includes('mariadb')) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
const m = /([\d+\.]+)/.exec(v);
|
||||||
|
return m[0];
|
||||||
|
},
|
||||||
|
},
|
||||||
|
postgres: {
|
||||||
|
sql: 'select version() as version',
|
||||||
|
get: (v: string) => {
|
||||||
|
const m = /([\d+\.]+)/.exec(v);
|
||||||
|
return semver.minVersion(m[0]).version;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
class DatabaseVersion {
|
class DatabaseVersion {
|
||||||
db: Database;
|
db: Database;
|
||||||
|
|
||||||
@ -113,33 +137,14 @@ class DatabaseVersion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async satisfies(versions) {
|
async satisfies(versions) {
|
||||||
const dialects = {
|
const accessors = DialectVersionAccessors;
|
||||||
sqlite: {
|
for (const dialect of Object.keys(accessors)) {
|
||||||
sql: 'select sqlite_version() as version',
|
|
||||||
get: (v) => v,
|
|
||||||
},
|
|
||||||
mysql: {
|
|
||||||
sql: 'select version() as version',
|
|
||||||
get: (v) => {
|
|
||||||
const m = /([\d+\.]+)/.exec(v);
|
|
||||||
return m[0];
|
|
||||||
},
|
|
||||||
},
|
|
||||||
postgres: {
|
|
||||||
sql: 'select version() as version',
|
|
||||||
get: (v) => {
|
|
||||||
const m = /([\d+\.]+)/.exec(v);
|
|
||||||
return semver.minVersion(m[0]).version;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
for (const dialect of Object.keys(dialects)) {
|
|
||||||
if (this.db.inDialect(dialect)) {
|
if (this.db.inDialect(dialect)) {
|
||||||
if (!versions?.[dialect]) {
|
if (!versions?.[dialect]) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
const [result] = (await this.db.sequelize.query(dialects[dialect].sql)) as any;
|
const [result] = (await this.db.sequelize.query(accessors[dialect].sql)) as any;
|
||||||
return semver.satisfies(dialects[dialect].get(result?.[0]?.version), versions[dialect]);
|
return semver.satisfies(accessors[dialect].get(result?.[0]?.version), versions[dialect]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user