1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

SSL fixes, update boolean in lucene

This commit is contained in:
Martin McKeaveney 2021-05-26 22:48:55 +01:00
parent b970a01def
commit b830265b89
2 changed files with 19 additions and 7 deletions

View file

@ -195,7 +195,7 @@
/>
{:else if expression.type === "boolean"}
<Combobox
disabled
disabled={expression.noValue}
options={[
{ label: "True", value: true },
{ label: "False", value: false },

View file

@ -1,4 +1,5 @@
const { Pool } = require("pg")
const { FIELD_TYPES } = require("./Integration")
let pool
@ -9,30 +10,34 @@ const SCHEMA = {
"PostgreSQL, also known as Postgres, is a free and open-source relational database management system emphasizing extensibility and SQL compliance.",
datasource: {
host: {
type: "string",
type: FIELD_TYPES.STRING,
default: "localhost",
required: true,
},
port: {
type: "number",
type: FIELD_TYPES.NUMBER,
required: true,
default: 5432,
},
database: {
type: "string",
type: FIELD_TYPES.STRING,
default: "postgres",
required: true,
},
user: {
type: "string",
type: FIELD_TYPES.STRING,
default: "root",
required: true,
},
password: {
type: "password",
type: FIELD_TYPES.PASSWORD,
default: "root",
required: true,
},
ssl: {
type: FIELD_TYPES.OBJECT,
required: false,
},
},
query: {
create: {
@ -53,6 +58,11 @@ const SCHEMA = {
class PostgresIntegration {
constructor(config) {
this.config = config
if (this.config.ssl.rejectUnauthorized) {
this.config.ssl.rejectUnauthorized =
this.config.ssl.rejectUnauthorized === "true" ? true : false
}
if (!pool) {
pool = new Pool(this.config)
}
@ -65,7 +75,9 @@ class PostgresIntegration {
} catch (err) {
throw new Error(err)
} finally {
this.client.release()
if (this.client) {
this.client.release()
}
}
}