mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
Added @trghost/database-info
package
refs https://github.com/TryGhost/Toolbox/issues/175 - this library is a small utility around `knex` that returns info on the database used - particularly, the version used - this will initially be used within Ghost but it can be extended to other databases and projects if needed
This commit is contained in:
parent
0f7a0b2964
commit
70ecba06ca
6
ghost/database-info/.eslintrc.js
Normal file
6
ghost/database-info/.eslintrc.js
Normal file
@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
plugins: ['ghost'],
|
||||
extends: [
|
||||
'plugin:ghost/node'
|
||||
]
|
||||
};
|
21
ghost/database-info/LICENSE
Normal file
21
ghost/database-info/LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2013-2022 Ghost Foundation
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
43
ghost/database-info/README.md
Normal file
43
ghost/database-info/README.md
Normal file
@ -0,0 +1,43 @@
|
||||
# Database Info
|
||||
|
||||
`@tryghost/database-info` is a small utility for `knex` that returns information on the underlying DB connection.
|
||||
|
||||
It currently works with SQLite, MySQL 5 & 8, and MariaDB.
|
||||
|
||||
## Install
|
||||
|
||||
`npm install @tryghost/database-info --save`
|
||||
|
||||
or
|
||||
|
||||
`yarn add @tryghost/database-info`
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
|
||||
## Develop
|
||||
|
||||
This is a mono repository, managed with [lerna](https://lernajs.io/).
|
||||
|
||||
Follow the instructions for the top-level repo.
|
||||
1. `git clone` this repo & `cd` into it as usual
|
||||
2. Run `yarn` to install top-level dependencies.
|
||||
|
||||
|
||||
## Run
|
||||
|
||||
- `yarn dev`
|
||||
|
||||
|
||||
## Test
|
||||
|
||||
- `yarn lint` run just eslint
|
||||
- `yarn test` run lint and tests
|
||||
|
||||
|
||||
|
||||
|
||||
# Copyright & License
|
||||
|
||||
Copyright (c) 2013-2022 Ghost Foundation - Released under the [MIT license](LICENSE).
|
1
ghost/database-info/index.js
Normal file
1
ghost/database-info/index.js
Normal file
@ -0,0 +1 @@
|
||||
module.exports = require('./lib/database-info');
|
96
ghost/database-info/lib/database-info.js
Normal file
96
ghost/database-info/lib/database-info.js
Normal file
@ -0,0 +1,96 @@
|
||||
module.exports = class DatabaseInfo {
|
||||
/**
|
||||
* @param {import('knex')} knex
|
||||
*/
|
||||
constructor(knex) {
|
||||
this.knex = knex;
|
||||
this.client = this.knex.client;
|
||||
this.driver = this.client.config.client;
|
||||
|
||||
this.databaseDetails = {
|
||||
// The underlying driver that `knex` uses
|
||||
// ie. `sqlite3`, `mysql` or `mysql2`
|
||||
driver: this.driver,
|
||||
|
||||
// A capitalized version of the specific database used
|
||||
database: 'unknown',
|
||||
|
||||
// A slugified version of the `database`
|
||||
engine: 'unknown',
|
||||
|
||||
// The version of the database used
|
||||
version: 'unknown'
|
||||
};
|
||||
}
|
||||
|
||||
async init() {
|
||||
switch (this.driver) {
|
||||
case 'sqlite3':
|
||||
this.databaseDetails.database = 'SQLite';
|
||||
this.databaseDetails.engine = 'sqlite3';
|
||||
this.databaseDetails.version = this.client.driver.VERSION;
|
||||
break;
|
||||
case 'mysql':
|
||||
case 'mysql2':
|
||||
try {
|
||||
const version = await this.knex.raw('SELECT version() as version;');
|
||||
const mysqlVersion = version[0][0].version;
|
||||
|
||||
if (mysqlVersion.includes('MariaDB')) {
|
||||
this.databaseDetails.database = 'MariaDB';
|
||||
this.databaseDetails.engine = 'mariadb';
|
||||
this.databaseDetails.version = mysqlVersion.split('-')[0];
|
||||
} else {
|
||||
this.databaseDetails.database = 'MySQL';
|
||||
|
||||
if (mysqlVersion.startsWith('5')) {
|
||||
this.databaseDetails.engine = 'mysql5';
|
||||
} else if (mysqlVersion.startsWith('8')) {
|
||||
this.databaseDetails.engine = 'mysql8';
|
||||
} else {
|
||||
this.databaseDetails.engine = 'mysql';
|
||||
}
|
||||
|
||||
this.databaseDetails.version = mysqlVersion;
|
||||
}
|
||||
} catch (err) {
|
||||
return this.databaseDetails;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
// This driver isn't supported so we should just leave the return
|
||||
// object alone with the "unknown" strings
|
||||
break;
|
||||
}
|
||||
|
||||
return this.databaseDetails;
|
||||
}
|
||||
|
||||
getDriver() {
|
||||
return this.databaseDetails.driver;
|
||||
}
|
||||
|
||||
getDatabase() {
|
||||
return this.databaseDetails.database;
|
||||
}
|
||||
|
||||
getEngine() {
|
||||
return this.databaseDetails.engine;
|
||||
}
|
||||
|
||||
getVersion() {
|
||||
return this.databaseDetails.version;
|
||||
}
|
||||
|
||||
isSqlite() {
|
||||
return this.databaseDetails.database === 'SQLite';
|
||||
}
|
||||
|
||||
isMysql() {
|
||||
return this.databaseDetails.database === 'MySQL';
|
||||
}
|
||||
|
||||
isMariadb() {
|
||||
return this.databaseDetails.database === 'MariaDB';
|
||||
}
|
||||
};
|
28
ghost/database-info/package.json
Normal file
28
ghost/database-info/package.json
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "@tryghost/database-info",
|
||||
"version": "0.0.0",
|
||||
"repository": "https://github.com/TryGhost/Utils/tree/main/packages/database-info",
|
||||
"author": "Ghost Foundation",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "echo \"Implement me!\"",
|
||||
"test": "NODE_ENV=testing c8 --check-coverage mocha './test/**/*.test.js'",
|
||||
"lint": "eslint . --ext .js --cache",
|
||||
"posttest": "yarn lint"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"lib"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"devDependencies": {
|
||||
"c8": "7.11.0",
|
||||
"mocha": "9.1.4",
|
||||
"should": "13.2.3",
|
||||
"sinon": "12.0.1"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
6
ghost/database-info/test/.eslintrc.js
Normal file
6
ghost/database-info/test/.eslintrc.js
Normal file
@ -0,0 +1,6 @@
|
||||
module.exports = {
|
||||
plugins: ['ghost'],
|
||||
extends: [
|
||||
'plugin:ghost/test'
|
||||
]
|
||||
};
|
10
ghost/database-info/test/hello.test.js
Normal file
10
ghost/database-info/test/hello.test.js
Normal file
@ -0,0 +1,10 @@
|
||||
// Switch these lines once there are useful utils
|
||||
// const testUtils = require('./utils');
|
||||
require('./utils');
|
||||
|
||||
describe('Hello world', function () {
|
||||
it('Runs a test', function () {
|
||||
// TODO: Write me!
|
||||
'hello'.should.eql('hello');
|
||||
});
|
||||
});
|
11
ghost/database-info/test/utils/assertions.js
Normal file
11
ghost/database-info/test/utils/assertions.js
Normal file
@ -0,0 +1,11 @@
|
||||
/**
|
||||
* Custom Should Assertions
|
||||
*
|
||||
* Add any custom assertions to this file.
|
||||
*/
|
||||
|
||||
// Example Assertion
|
||||
// should.Assertion.add('ExampleAssertion', function () {
|
||||
// this.params = {operator: 'to be a valid Example Assertion'};
|
||||
// this.obj.should.be.an.Object;
|
||||
// });
|
11
ghost/database-info/test/utils/index.js
Normal file
11
ghost/database-info/test/utils/index.js
Normal file
@ -0,0 +1,11 @@
|
||||
/**
|
||||
* Test Utilities
|
||||
*
|
||||
* Shared utils for writing tests
|
||||
*/
|
||||
|
||||
// Require overrides - these add globals for tests
|
||||
require('./overrides');
|
||||
|
||||
// Require assertions - adds custom should assertions
|
||||
require('./assertions');
|
10
ghost/database-info/test/utils/overrides.js
Normal file
10
ghost/database-info/test/utils/overrides.js
Normal file
@ -0,0 +1,10 @@
|
||||
// This file is required before any test is run
|
||||
|
||||
// Taken from the should wiki, this is how to make should global
|
||||
// Should is a global in our eslint test config
|
||||
global.should = require('should').noConflict();
|
||||
should.extend();
|
||||
|
||||
// Sinon is a simple case
|
||||
// Sinon is a global in our eslint test config
|
||||
global.sinon = require('sinon');
|
Loading…
Reference in New Issue
Block a user