make auth check optional when caller is automation
This commit is contained in:
parent
dacd89bf79
commit
0ee8635348
|
@ -166,14 +166,16 @@ export async function preview(ctx: any) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function execute(ctx: any, opts = { rowsOnly: false }) {
|
async function execute(ctx: any, opts = { rowsOnly: false, isAutomation: false }) {
|
||||||
const db = getAppDB()
|
const db = getAppDB()
|
||||||
|
|
||||||
const query = await db.get(ctx.params.queryId)
|
const query = await db.get(ctx.params.queryId)
|
||||||
const datasource = await db.get(query.datasourceId)
|
const datasource = await db.get(query.datasourceId)
|
||||||
|
|
||||||
const authConfigCtx: any = getAuthConfig(ctx)
|
let authConfigCtx: any = {}
|
||||||
|
if (!opts.isAutomation) {
|
||||||
|
authConfigCtx = getAuthConfig(ctx)
|
||||||
|
}
|
||||||
const enrichedParameters = ctx.request.body.parameters || {}
|
const enrichedParameters = ctx.request.body.parameters || {}
|
||||||
// make sure parameters are fully enriched with defaults
|
// make sure parameters are fully enriched with defaults
|
||||||
if (query && query.parameters) {
|
if (query && query.parameters) {
|
||||||
|
@ -214,11 +216,11 @@ async function execute(ctx: any, opts = { rowsOnly: false }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function executeV1(ctx: any) {
|
export async function executeV1(ctx: any) {
|
||||||
return execute(ctx, { rowsOnly: true })
|
return execute(ctx, { rowsOnly: true, isAutomation: false })
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function executeV2(ctx: any) {
|
export async function executeV2(ctx: any, isAutomation?: any) {
|
||||||
return execute(ctx, { rowsOnly: false })
|
return execute(ctx, { rowsOnly: false, isAutomation })
|
||||||
}
|
}
|
||||||
|
|
||||||
const removeDynamicVariables = async (queryId: any) => {
|
const removeDynamicVariables = async (queryId: any) => {
|
||||||
|
|
|
@ -71,8 +71,9 @@ exports.run = async function ({ inputs, appId, emitter }) {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const isAutomation = true
|
||||||
try {
|
try {
|
||||||
await queryController.executeV2(ctx)
|
await queryController.executeV2(ctx, isAutomation)
|
||||||
const { data, ...rest } = ctx.body
|
const { data, ...rest } = ctx.body
|
||||||
return {
|
return {
|
||||||
response: data,
|
response: data,
|
||||||
|
|
Loading…
Reference in New Issue