@fxjs/db-driver
Advanced tools
Comparing version
@@ -0,2 +1,4 @@ | ||
/// <reference types="fib-pool" /> | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.MongoDriver = exports.RedisDriver = exports.SQLiteDriver = exports.MySQLDriver = exports.SQLDriver = exports.Driver = void 0; | ||
const db = require("db"); | ||
@@ -26,2 +28,21 @@ const url = require("url"); | ||
} | ||
function getDriver(name) { | ||
switch (name) { | ||
case 'mysql': | ||
return MySQLDriver; | ||
case 'sqlite': | ||
return SQLiteDriver; | ||
case 'redis': | ||
return RedisDriver; | ||
case 'mongodb': | ||
return MongoDriver; | ||
default: | ||
if (name) { | ||
const type = Utils.filterDriverType(url.parse(name).protocol); | ||
if (type !== 'unknown') | ||
return getDriver(type); | ||
} | ||
return Driver; | ||
} | ||
} | ||
class Driver { | ||
@@ -51,3 +72,3 @@ constructor(options) { | ||
get uri() { | ||
return url.format(Object.assign({}, this.config, { slashes: this.config.protocol === 'sqlite:' ? false : this.config.slashes, query: this.config.protocol === 'sqlite:' ? {} : this.config.query })); | ||
return url.format(Object.assign(Object.assign({}, this.config), { slashes: this.config.protocol === 'sqlite:' ? false : this.config.slashes, query: this.config.protocol === 'sqlite:' ? {} : this.config.query })); | ||
} | ||
@@ -72,3 +93,3 @@ get isPool() { | ||
/** | ||
* @override | ||
* @description re open db connection | ||
*/ | ||
@@ -83,3 +104,3 @@ reopen() { | ||
/** | ||
* @override | ||
* @description open db connection | ||
*/ | ||
@@ -90,11 +111,11 @@ open() { | ||
/** | ||
* @override | ||
* @description close db connection | ||
*/ | ||
close() { } | ||
/** | ||
* @override | ||
* @description some db connection has `ping` method | ||
*/ | ||
ping() { } | ||
/** | ||
* @override | ||
* @description get connection instance but don't change internal status | ||
*/ | ||
@@ -127,22 +148,4 @@ getConnection() { return null; } | ||
} | ||
Driver.getDriver = function getDriver(name) { | ||
switch (name) { | ||
case 'mysql': | ||
return MySQLDriver; | ||
case 'sqlite': | ||
return SQLiteDriver; | ||
case 'redis': | ||
return RedisDriver; | ||
case 'mongodb': | ||
return MongoDriver; | ||
default: | ||
if (name) { | ||
const type = Utils.filterDriverType(url.parse(name).protocol); | ||
if (type !== 'unknown') | ||
return getDriver(type); | ||
} | ||
return Driver; | ||
} | ||
}; | ||
exports.Driver = Driver; | ||
Driver.getDriver = getDriver; | ||
class SQLDriver extends Driver { | ||
@@ -201,2 +204,3 @@ constructor() { | ||
} | ||
exports.MySQLDriver = MySQLDriver; | ||
class SQLiteDriver extends SQLDriver { | ||
@@ -226,2 +230,3 @@ constructor(conn) { | ||
} | ||
exports.SQLiteDriver = SQLiteDriver; | ||
class RedisDriver extends Driver { | ||
@@ -259,2 +264,3 @@ constructor(conn) { | ||
} | ||
exports.RedisDriver = RedisDriver; | ||
class MongoDriver extends Driver { | ||
@@ -290,1 +296,2 @@ constructor(conn) { | ||
} | ||
exports.MongoDriver = MongoDriver; |
@@ -1,2 +0,4 @@ | ||
const base_class_1 = require("./built-ins/base.class"); | ||
module.exports = base_class_1.Driver; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Driver = void 0; | ||
var base_class_1 = require("./built-ins/base.class"); | ||
Object.defineProperty(exports, "Driver", { enumerable: true, get: function () { return base_class_1.Driver; } }); |
/// <reference types="@fibjs/types" /> | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.arraify = exports.mountPoolToDriver = exports.parsePoolConfig = exports.parseConnectionString = exports.ensureSuffix = exports.castQueryStringToBoolean = exports.forceInteger = exports.filterDriverType = exports.driverUUid = void 0; | ||
const url = require("url"); | ||
@@ -4,0 +5,0 @@ const util = require("util"); |
{ | ||
"name": "@fxjs/db-driver", | ||
"version": "0.0.7", | ||
"description": "Fibjs Db Driver", | ||
"version": "0.1.0", | ||
"description": "", | ||
"keywords": [ | ||
@@ -11,16 +11,19 @@ "mysql", | ||
], | ||
"author": "Richard <richardo2016@gmail.com>", | ||
"license": "MIT", | ||
"repository": "http://github.com/fxjs-modules/db-driver.git", | ||
"types": "@types/index.d.ts", | ||
"main": "./lib", | ||
"author": "richardo2016 <richardo2016@gmail.com>", | ||
"license": "ISC", | ||
"repository": { | ||
"type": "https", | ||
"url": "https://github.com/fxjs-modules/orm/tree/master/packages/db-driver" | ||
}, | ||
"types": "typings/index.d.ts", | ||
"main": "lib", | ||
"unpkg": "./lib/index.cjs.js", | ||
"jsdelivr": "./lib/index.cjs.js", | ||
"scripts": { | ||
"build": "fibjs build.js", | ||
"test-db": "fibjs test/run-db", | ||
"test-db-mysql": "cross-env URI=mysql://root:@localhost:3306/db-driver npm run test-db", | ||
"build": "ftsc ./src/* --outDir ./lib", | ||
"test": "fibjs test", | ||
"ci": "npm run build && npm run test", | ||
"prepublishOnly": "npm run build" | ||
"prepublishOnly": "npm run ci", | ||
"test-db": "fibjs test/run-db", | ||
"test-db-mysql": "cross-env URI=mysql://root:@localhost:3306/db-driver npm run test-db" | ||
}, | ||
@@ -32,11 +35,12 @@ "engines": { | ||
"dependencies": { | ||
"@fxjs/orm-core": "^0.1.0", | ||
"parse-querystring-dotkey": "^1.0.3" | ||
}, | ||
"devDependencies": { | ||
"@fibjs/types": "^0.27.1", | ||
"@fxjs/knex": "^0.1.1", | ||
"@fibjs/types": "^0.31.0", | ||
"@fxjs/knex": "^0.3.0", | ||
"cross-env": "^5.2.0", | ||
"fib-pool": "^1.6.0", | ||
"fib-rollup": "^0.4.0", | ||
"fib-typify": "^0.6.0", | ||
"knex": "^0.16.5", | ||
"fib-typify": "^0.8.3", | ||
"rollup-plugin-commonjs": "^9.2.1", | ||
@@ -51,12 +55,18 @@ "should": "^13.2.3" | ||
"version": [ | ||
"0.21.0", | ||
"0.22.0", | ||
"0.23.0", | ||
"0.24.0", | ||
"0.25.0", | ||
"0.26.0", | ||
"0.26.1", | ||
"0.27.0" | ||
"0.28.0", | ||
"0.29.0", | ||
"0.30.0", | ||
"0.31.0" | ||
] | ||
} | ||
}, | ||
"private": false, | ||
"homepage": "https://github.com/fxjs-modules/orm/tree/master/packages/db-driver", | ||
"files": [ | ||
"lib", | ||
"typings" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "1c80cd6d5609c80e4ec66f17f56adf27acc4cc60" | ||
} |
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
1
-66.67%0
-100%1
-50%25883
-26.51%3
50%11
-21.43%1
Infinity%683
-3.53%+ Added
+ Added
- Removed