1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Merge pull request #1602 from Budibase/fix/google-account-merge

merge google accounts, improve connection pooling for RDBMS
This commit is contained in:
Martin McKeaveney 2021-06-01 15:13:08 +01:00 committed by GitHub
commit c02a4786cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 52 additions and 20 deletions

View file

@ -2,20 +2,26 @@ const env = require("../../environment")
const jwt = require("jsonwebtoken")
const database = require("../../db")
const GoogleStrategy = require("passport-google-oauth").OAuth2Strategy
const { StaticDatabases, generateGlobalUserID } = require("../../db/utils")
const {
StaticDatabases,
generateGlobalUserID,
ViewNames,
} = require("../../db/utils")
async function authenticate(token, tokenSecret, profile, done) {
// Check the user exists in the instance DB by email
const db = database.getDB(StaticDatabases.GLOBAL.name)
let dbUser
const userId = generateGlobalUserID(profile.id)
try {
// use the google profile id
dbUser = await db.get(userId)
} catch (err) {
console.error("Google user not found. Creating..")
console.log("Google user not found. Creating..")
// create the user
const user = {
_id: userId,
@ -26,6 +32,26 @@ async function authenticate(token, tokenSecret, profile, done) {
},
...profile._json,
}
// check if an account with the google email address exists locally
const users = await db.query(`database/${ViewNames.USER_BY_EMAIL}`, {
key: profile._json.email,
include_docs: true,
})
// Google user already exists by email
if (users.rows.length > 0) {
const existing = users.rows[0].doc
// remove the local account to avoid conflicts
await db.remove(existing._id, existing._rev)
// merge with existing account
user.roles = existing.roles
user.builder = existing.builder
user.admin = existing.admin
}
const response = await db.post(user)
dbUser = user

View file

@ -4,6 +4,7 @@ const {
getDatasourceParams,
getQueryParams,
} = require("../../db/utils")
const { integrations } = require("../../integrations")
exports.fetch = async function (ctx) {
const database = new CouchDB(ctx.appId)
@ -28,6 +29,12 @@ exports.save = async function (ctx) {
const response = await db.post(datasource)
datasource._rev = response.rev
// Drain connection pools when configuration is changed
const pool = integrations[datasource.source].pool
if (pool) {
await pool.end()
}
ctx.status = 200
ctx.message = "Datasource saved successfully."
ctx.body = datasource

View file

@ -1,8 +1,6 @@
const sqlServer = require("mssql")
const { FIELD_TYPES } = require("./Integration")
let pool
const SCHEMA = {
docs: "https://github.com/tediousjs/node-mssql",
description:
@ -53,19 +51,21 @@ const SCHEMA = {
}
class SqlServerIntegration {
static pool
constructor(config) {
this.config = config
this.config.options = {
encrypt: this.config.encrypt,
}
delete this.config.encrypt
if (!pool) {
pool = new sqlServer.ConnectionPool(this.config)
if (!this.pool) {
this.pool = new sqlServer.ConnectionPool(this.config)
}
}
async connect() {
const client = await pool.connect()
const client = await this.pool.connect()
this.client = client.request()
}

View file

@ -1,8 +1,6 @@
const { Pool } = require("pg")
const { FIELD_TYPES } = require("./Integration")
let pool
const SCHEMA = {
docs: "https://node-postgres.com",
friendlyName: "PostgreSQL",
@ -35,7 +33,8 @@ const SCHEMA = {
required: true,
},
ssl: {
type: FIELD_TYPES.OBJECT,
type: FIELD_TYPES.BOOLEAN,
default: false,
required: false,
},
},
@ -56,28 +55,28 @@ const SCHEMA = {
}
class PostgresIntegration {
static pool
constructor(config) {
this.config = config
if (this.config.ssl && this.config.ssl.rejectUnauthorized) {
this.config.ssl.rejectUnauthorized =
this.config.ssl.rejectUnauthorized === "true"
if (this.config.ssl) {
this.config.ssl = {
rejectUnauthorized: true,
}
}
if (!pool) {
pool = new Pool(this.config)
if (!this.pool) {
this.pool = new Pool(this.config)
}
this.client = this.pool
}
async query(sql) {
try {
this.client = await pool.connect()
return await this.client.query(sql)
} catch (err) {
throw new Error(err)
} finally {
if (this.client) {
this.client.release()
}
}
}