@pi-r/postgres 0.3.6 → 0.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DB_SOURCE_TYPE = exports.DB_SOURCE_CLIENT = exports.checkTimeout = exports.executeBatchQuery = exports.executeQuery = exports.setCredential = exports.setAuthentication = void 0;
4
+ const postgres = require("pg");
4
5
  const util_1 = require("@e-mc/db/util");
5
6
  const types_1 = require("@e-mc/types");
6
7
  const Db = require("@e-mc/db");
@@ -86,7 +87,6 @@ function setCredential(item) {
86
87
  }
87
88
  const poolKey = getPoolKey(credential);
88
89
  if (!(pool = POOL_STATE[poolKey]) || pool.closed) {
89
- const { Pool } = require("pg");
90
90
  const config = this.getPoolConfig("postgres", password);
91
91
  if (config) {
92
92
  const { min, max, idle } = config;
@@ -100,7 +100,7 @@ function setCredential(item) {
100
100
  (_d = credential.idleTimeoutMillis) !== null && _d !== void 0 ? _d : (credential.idleTimeoutMillis = idle);
101
101
  }
102
102
  }
103
- new PostgresPool(new Pool(credential), poolKey, username && password ? { username, password } : undefined).add(item).parent = POOL_STATE;
103
+ new PostgresPool(new postgres.Pool(credential), poolKey, username && password ? { username, password } : undefined).add(item).parent = POOL_STATE;
104
104
  }
105
105
  else {
106
106
  pool.add(item);
@@ -120,7 +120,6 @@ async function executeBatchQuery(batch, options = '', outResult) {
120
120
  if (length === 0) {
121
121
  return [];
122
122
  }
123
- const db = require("pg");
124
123
  let parallel, connectOnce, errorQuery, sessionKey, outCacheMiss;
125
124
  if ((0, types_1.isPlainObject)(options)) {
126
125
  ({ parallel, connectOnce, errorQuery, sessionKey, outCacheMiss } = options);
@@ -184,7 +183,7 @@ async function executeBatchQuery(batch, options = '', outResult) {
184
183
  }
185
184
  }
186
185
  if (!client) {
187
- clients.push(client = new db.Client((postgresCredential || credential)));
186
+ clients.push(client = new postgres.Client((postgresCredential || credential)));
188
187
  await client.connect();
189
188
  }
190
189
  if (connectOnce) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/postgres",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "description": "PostgreSQL client driver for E-mc.",
5
5
  "main": "client/index.js",
6
6
  "types": "client/index.d.ts",
@@ -21,8 +21,8 @@
21
21
  "license": "MIT",
22
22
  "homepage": "https://github.com/anpham6/pi-r#readme",
23
23
  "dependencies": {
24
- "@e-mc/db": "^0.6.16",
25
- "@e-mc/types": "^0.6.16",
24
+ "@e-mc/db": "^0.6.19",
25
+ "@e-mc/types": "^0.6.19",
26
26
  "pg": "^8.11.5"
27
27
  }
28
28
  }
package/client/pool.js DELETED
@@ -1,55 +0,0 @@
1
- "use strict";
2
- const types_1 = require("@e-mc/types");
3
- const DbPool = require('@e-mc/db/pool');
4
- const POOL_ACTIVE = new WeakSet();
5
- class PostgresPool extends DbPool {
6
- static CACHE_UNUSED = ['statement_timeout', 'query_timeout', 'keepAliveInitialDelayMillis', 'idle_in_transaction_session_timeout', 'connectionTimeoutMillis', 'idleTimeoutMillis', 'keepAlive', 'max', 'min', 'log', 'allowExitOnIdle', 'maxUses'];
7
- static asString(credential) {
8
- if (credential.host && credential.user) {
9
- return JSON.stringify(this.removeUUIDKey(credential));
10
- }
11
- return super.asString(credential);
12
- }
13
- static sanitize(credential) {
14
- if (!POOL_ACTIVE.has(credential) || credential.uuidKey) {
15
- return credential;
16
- }
17
- const ssl = credential.ssl;
18
- let result = super.sanitize(credential);
19
- if ((0, types_1.isObject)(ssl)) {
20
- if (result === credential) {
21
- result = { ...credential };
22
- }
23
- const cert = ssl.cert;
24
- if ((0, types_1.isString)(cert)) {
25
- result.ssl = { cert };
26
- }
27
- else if (Buffer.isBuffer(cert)) {
28
- result.ssl = { cert: cert.toString('utf8') };
29
- }
30
- else if ((0, types_1.isArray)(cert)) {
31
- result.ssl = { cert: cert.reduce((a, b) => a + (Buffer.isBuffer(b) ? b.toString('utf8') : b), '') };
32
- }
33
- else {
34
- result.ssl = { cert: "Unknown" };
35
- }
36
- }
37
- return result;
38
- }
39
- async getConnection(credential) {
40
- if (credential) {
41
- POOL_ACTIVE.add(credential);
42
- }
43
- return this.client.connect();
44
- }
45
- async close() {
46
- return this.client.end();
47
- }
48
- isEmpty() {
49
- return this.closed || this.client.totalCount === 0 && this.client.waitingCount === 0 && this.client.idleCount === 0;
50
- }
51
- get closed() {
52
- return this.client.ended;
53
- }
54
- }
55
- module.exports = PostgresPool;