Merge branch 'master' into fix/sql-table-update-aliasing
This commit is contained in:
commit
34b4e8fd1d
|
@ -81,6 +81,7 @@ exports[`/datasources fetch returns all the datasources from the server 1`] = `
|
|||
{
|
||||
"config": {},
|
||||
"createdAt": "2020-01-01T00:00:00.000Z",
|
||||
"isSQL": true,
|
||||
"name": "Test",
|
||||
"source": "POSTGRES",
|
||||
"type": "datasource",
|
||||
|
|
|
@ -106,6 +106,7 @@ describe("mysql integrations", () => {
|
|||
plus: true,
|
||||
source: "MYSQL",
|
||||
type: "datasource_plus",
|
||||
isSQL: true,
|
||||
_id: expect.any(String),
|
||||
_rev: expect.any(String),
|
||||
createdAt: expect.any(String),
|
||||
|
|
|
@ -319,6 +319,7 @@ describe("postgres integrations", () => {
|
|||
},
|
||||
plus: true,
|
||||
source: "POSTGRES",
|
||||
isSQL: true,
|
||||
type: "datasource_plus",
|
||||
_id: expect.any(String),
|
||||
_rev: expect.any(String),
|
||||
|
|
|
@ -699,13 +699,15 @@ class SqlQueryBuilder extends SqlTableQueryBuilder {
|
|||
|
||||
convertJsonStringColumns(
|
||||
table: Table,
|
||||
results: Record<string, any>[]
|
||||
results: Record<string, any>[],
|
||||
aliases?: Record<string, string>
|
||||
): Record<string, any>[] {
|
||||
for (const [name, field] of Object.entries(table.schema)) {
|
||||
if (!this._isJsonColumn(field)) {
|
||||
continue
|
||||
}
|
||||
const fullName = `${table.name}.${name}`
|
||||
const tableName = aliases?.[table.name] || table.name
|
||||
const fullName = `${tableName}.${name}`
|
||||
for (let row of results) {
|
||||
if (typeof row[fullName] === "string") {
|
||||
row[fullName] = JSON.parse(row[fullName])
|
||||
|
|
|
@ -506,7 +506,11 @@ class SqlServerIntegration extends Sql implements DatasourcePlus {
|
|||
const queryFn = (query: any, op: string) => this.internalQuery(query, op)
|
||||
const processFn = (result: any) => {
|
||||
if (json?.meta?.table && result.recordset) {
|
||||
return this.convertJsonStringColumns(json.meta.table, result.recordset)
|
||||
return this.convertJsonStringColumns(
|
||||
json.meta.table,
|
||||
result.recordset,
|
||||
json.tableAliases
|
||||
)
|
||||
} else if (result.recordset) {
|
||||
return result.recordset
|
||||
}
|
||||
|
|
|
@ -390,7 +390,11 @@ class MySQLIntegration extends Sql implements DatasourcePlus {
|
|||
this.internalQuery(query, { connect: false, disableCoercion: true })
|
||||
const processFn = (result: any) => {
|
||||
if (json?.meta?.table && Array.isArray(result)) {
|
||||
return this.convertJsonStringColumns(json.meta.table, result)
|
||||
return this.convertJsonStringColumns(
|
||||
json.meta.table,
|
||||
result,
|
||||
json.tableAliases
|
||||
)
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
|
|
@ -30,9 +30,15 @@ import {
|
|||
} from "../../../db/utils"
|
||||
import sdk from "../../index"
|
||||
import { setupCreationAuth as googleSetupCreationAuth } from "../../../integrations/googlesheets"
|
||||
import { helpers } from "@budibase/shared-core"
|
||||
|
||||
const ENV_VAR_PREFIX = "env."
|
||||
|
||||
function addDatasourceFlags(datasource: Datasource) {
|
||||
datasource.isSQL = helpers.isSQL(datasource)
|
||||
return datasource
|
||||
}
|
||||
|
||||
export async function fetch(opts?: {
|
||||
enriched: boolean
|
||||
}): Promise<Datasource[]> {
|
||||
|
@ -56,7 +62,7 @@ export async function fetch(opts?: {
|
|||
} as Datasource
|
||||
|
||||
// Get external datasources
|
||||
const datasources = (
|
||||
let datasources = (
|
||||
await db.allDocs<Datasource>(
|
||||
getDatasourceParams(null, {
|
||||
include_docs: true,
|
||||
|
@ -75,6 +81,7 @@ export async function fetch(opts?: {
|
|||
}
|
||||
}
|
||||
|
||||
datasources = datasources.map(datasource => addDatasourceFlags(datasource))
|
||||
if (opts?.enriched) {
|
||||
const envVars = await getEnvironmentVariables()
|
||||
const promises = datasources.map(datasource =>
|
||||
|
@ -150,6 +157,7 @@ async function enrichDatasourceWithValues(
|
|||
}
|
||||
|
||||
export async function enrich(datasource: Datasource) {
|
||||
datasource = addDatasourceFlags(datasource)
|
||||
const { datasource: response } = await enrichDatasourceWithValues(datasource)
|
||||
return response
|
||||
}
|
||||
|
@ -159,7 +167,8 @@ export async function get(
|
|||
opts?: { enriched: boolean }
|
||||
): Promise<Datasource> {
|
||||
const appDb = context.getAppDB()
|
||||
const datasource = await appDb.get<Datasource>(datasourceId)
|
||||
let datasource = await appDb.get<Datasource>(datasourceId)
|
||||
datasource = addDatasourceFlags(datasource)
|
||||
if (opts?.enriched) {
|
||||
return (await enrichDatasourceWithValues(datasource)).datasource
|
||||
} else {
|
||||
|
@ -271,13 +280,14 @@ export function mergeConfigs(update: Datasource, old: Datasource) {
|
|||
export async function getExternalDatasources(): Promise<Datasource[]> {
|
||||
const db = context.getAppDB()
|
||||
|
||||
const externalDatasources = await db.allDocs<Datasource>(
|
||||
let dsResponse = await db.allDocs<Datasource>(
|
||||
getDatasourcePlusParams(undefined, {
|
||||
include_docs: true,
|
||||
})
|
||||
)
|
||||
|
||||
return externalDatasources.rows.map(r => r.doc!)
|
||||
const externalDatasources = dsResponse.rows.map(r => r.doc!)
|
||||
return externalDatasources.map(datasource => addDatasourceFlags(datasource))
|
||||
}
|
||||
|
||||
export async function save(
|
||||
|
@ -290,11 +300,11 @@ export async function save(
|
|||
const fetchSchema = opts?.fetchSchema || false
|
||||
const tablesFilter = opts?.tablesFilter || []
|
||||
|
||||
datasource = {
|
||||
datasource = addDatasourceFlags({
|
||||
_id: generateDatasourceID({ plus }),
|
||||
...datasource,
|
||||
type: plus ? DocumentType.DATASOURCE_PLUS : DocumentType.DATASOURCE,
|
||||
}
|
||||
})
|
||||
|
||||
let errors: Record<string, string> = {}
|
||||
if (fetchSchema) {
|
||||
|
|
|
@ -14,7 +14,7 @@ import { makeExternalQuery } from "../../../integrations/base/query"
|
|||
import { Format } from "../../../api/controllers/view/exporters"
|
||||
import sdk from "../.."
|
||||
import { isRelationshipColumn } from "../../../db/utils"
|
||||
import { SqlClient } from "../../../integrations/utils"
|
||||
import { SqlClient, isSQL } from "../../../integrations/utils"
|
||||
|
||||
const SQL_CLIENT_SOURCE_MAP: Record<SourceName, SqlClient | undefined> = {
|
||||
[SourceName.POSTGRES]: SqlClient.POSTGRES,
|
||||
|
@ -37,7 +37,7 @@ const SQL_CLIENT_SOURCE_MAP: Record<SourceName, SqlClient | undefined> = {
|
|||
}
|
||||
|
||||
export function getSQLClient(datasource: Datasource): SqlClient {
|
||||
if (!datasource.isSQL) {
|
||||
if (!isSQL(datasource)) {
|
||||
throw new Error("Cannot get SQL Client for non-SQL datasource")
|
||||
}
|
||||
const lookup = SQL_CLIENT_SOURCE_MAP[datasource.source]
|
||||
|
|
Loading…
Reference in New Issue