Merge branch 'v3-ui' into error-on-bulkimporting-relationship-fields
This commit is contained in:
commit
ee9a39acf5
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
|
||||||
"version": "2.33.12",
|
"version": "2.33.13",
|
||||||
"npmClient": "yarn",
|
"npmClient": "yarn",
|
||||||
"packages": [
|
"packages": [
|
||||||
"packages/*",
|
"packages/*",
|
||||||
|
|
|
@ -529,7 +529,7 @@ class InternalBuilder {
|
||||||
if (!matchesTableName) {
|
if (!matchesTableName) {
|
||||||
updatedKey = filterKey.replace(
|
updatedKey = filterKey.replace(
|
||||||
new RegExp(`^${relationship.column}.`),
|
new RegExp(`^${relationship.column}.`),
|
||||||
`${aliases![relationship.tableName]}.`
|
`${aliases?.[relationship.tableName] || relationship.tableName}.`
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
updatedKey = filterKey
|
updatedKey = filterKey
|
||||||
|
@ -1091,7 +1091,14 @@ class InternalBuilder {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
query = query.count(`* as ${aggregation.name}`)
|
if (this.client === SqlClient.ORACLE) {
|
||||||
|
const field = this.convertClobs(`${tableName}.${aggregation.field}`)
|
||||||
|
query = query.select(
|
||||||
|
this.knex.raw(`COUNT(??) as ??`, [field, aggregation.name])
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
query = query.count(`${aggregation.field} as ${aggregation.name}`)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const fieldSchema = this.getFieldSchema(aggregation.field)
|
const fieldSchema = this.getFieldSchema(aggregation.field)
|
||||||
|
@ -1579,7 +1586,7 @@ class InternalBuilder {
|
||||||
query = this.addFilters(query, filters, { relationship: true })
|
query = this.addFilters(query, filters, { relationship: true })
|
||||||
|
|
||||||
// handle relationships with a CTE for all others
|
// handle relationships with a CTE for all others
|
||||||
if (relationships?.length) {
|
if (relationships?.length && aggregations.length === 0) {
|
||||||
const mainTable =
|
const mainTable =
|
||||||
this.query.tableAliases?.[this.query.endpoint.entityId] ||
|
this.query.tableAliases?.[this.query.endpoint.entityId] ||
|
||||||
this.query.endpoint.entityId
|
this.query.endpoint.entityId
|
||||||
|
@ -1594,11 +1601,9 @@ class InternalBuilder {
|
||||||
// add JSON aggregations attached to the CTE
|
// add JSON aggregations attached to the CTE
|
||||||
return this.addJsonRelationships(cte, tableName, relationships)
|
return this.addJsonRelationships(cte, tableName, relationships)
|
||||||
}
|
}
|
||||||
// no relationships found - return query
|
|
||||||
else {
|
|
||||||
return query
|
return query
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
update(opts: QueryOptions): Knex.QueryBuilder {
|
update(opts: QueryOptions): Knex.QueryBuilder {
|
||||||
const { body, filters } = this.query
|
const { body, filters } = this.query
|
||||||
|
|
|
@ -406,7 +406,7 @@
|
||||||
allowSelectRows={!readonly}
|
allowSelectRows={!readonly}
|
||||||
{customRenderers}
|
{customRenderers}
|
||||||
loading={!$fetch.loaded || !groupsLoaded}
|
loading={!$fetch.loaded || !groupsLoaded}
|
||||||
defaultSortColumn={"__selectable"}
|
defaultSortColumn={"access"}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
|
|
|
@ -8,6 +8,6 @@
|
||||||
"../string-templates"
|
"../string-templates"
|
||||||
],
|
],
|
||||||
"ext": "js,ts,json,svelte",
|
"ext": "js,ts,json,svelte",
|
||||||
"ignore": ["**/*.spec.ts", "**/*.spec.js", "../*/dist/**/*"],
|
"ignore": ["**/*.spec.ts", "**/*.spec.js", "../*/dist/**/*", "client/**/*", "builder/**/*"],
|
||||||
"exec": "yarn build && node --no-node-snapshot ./dist/index.js"
|
"exec": "yarn build && node --no-node-snapshot ./dist/index.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -682,7 +682,19 @@ export class ExternalRequest<T extends Operation> {
|
||||||
filters = this.prepareFilters(id, filters || {}, table)
|
filters = this.prepareFilters(id, filters || {}, table)
|
||||||
const relationships = buildExternalRelationships(table, this.tables)
|
const relationships = buildExternalRelationships(table, this.tables)
|
||||||
|
|
||||||
|
let aggregations: Aggregation[] = []
|
||||||
|
if (sdk.views.isView(this.source)) {
|
||||||
|
const calculationFields = helpers.views.calculationFields(this.source)
|
||||||
|
for (const [key, field] of Object.entries(calculationFields)) {
|
||||||
|
aggregations.push({
|
||||||
|
...field,
|
||||||
|
name: key,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const incRelationships =
|
const incRelationships =
|
||||||
|
aggregations.length === 0 &&
|
||||||
config.includeSqlRelationships === IncludeRelationship.INCLUDE
|
config.includeSqlRelationships === IncludeRelationship.INCLUDE
|
||||||
|
|
||||||
// clean up row on ingress using schema
|
// clean up row on ingress using schema
|
||||||
|
@ -709,17 +721,6 @@ export class ExternalRequest<T extends Operation> {
|
||||||
throw "Deletion must be filtered"
|
throw "Deletion must be filtered"
|
||||||
}
|
}
|
||||||
|
|
||||||
let aggregations: Aggregation[] = []
|
|
||||||
if (sdk.views.isView(this.source)) {
|
|
||||||
const calculationFields = helpers.views.calculationFields(this.source)
|
|
||||||
for (const [key, field] of Object.entries(calculationFields)) {
|
|
||||||
aggregations.push({
|
|
||||||
...field,
|
|
||||||
name: key,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let json: QueryJson = {
|
let json: QueryJson = {
|
||||||
endpoint: {
|
endpoint: {
|
||||||
datasourceId: this.datasource._id!,
|
datasourceId: this.datasource._id!,
|
||||||
|
|
|
@ -145,6 +145,16 @@ const requiresMigration = async (ctx: Ctx) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const serveApp = async function (ctx: UserCtx) {
|
export const serveApp = async function (ctx: UserCtx) {
|
||||||
|
if (ctx.url.includes("apple-touch-icon.png")) {
|
||||||
|
ctx.redirect("/builder/bblogo.png")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// no app ID found, cannot serve - return message instead
|
||||||
|
if (!context.getAppId()) {
|
||||||
|
ctx.body = "No content found - requires app ID"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const needMigrations = await requiresMigration(ctx)
|
const needMigrations = await requiresMigration(ctx)
|
||||||
|
|
||||||
const bbHeaderEmbed =
|
const bbHeaderEmbed =
|
||||||
|
|
|
@ -12,6 +12,8 @@ import {
|
||||||
RelationSchemaField,
|
RelationSchemaField,
|
||||||
ViewFieldMetadata,
|
ViewFieldMetadata,
|
||||||
CalculationType,
|
CalculationType,
|
||||||
|
CountDistinctCalculationFieldMetadata,
|
||||||
|
CountCalculationFieldMetadata,
|
||||||
} from "@budibase/types"
|
} from "@budibase/types"
|
||||||
import { builderSocket, gridSocket } from "../../../websockets"
|
import { builderSocket, gridSocket } from "../../../websockets"
|
||||||
import { helpers } from "@budibase/shared-core"
|
import { helpers } from "@budibase/shared-core"
|
||||||
|
@ -22,7 +24,8 @@ function stripUnknownFields(
|
||||||
if (helpers.views.isCalculationField(field)) {
|
if (helpers.views.isCalculationField(field)) {
|
||||||
if (field.calculationType === CalculationType.COUNT) {
|
if (field.calculationType === CalculationType.COUNT) {
|
||||||
if ("distinct" in field && field.distinct) {
|
if ("distinct" in field && field.distinct) {
|
||||||
return {
|
const strippedField: RequiredKeys<CountDistinctCalculationFieldMetadata> =
|
||||||
|
{
|
||||||
order: field.order,
|
order: field.order,
|
||||||
width: field.width,
|
width: field.width,
|
||||||
visible: field.visible,
|
visible: field.visible,
|
||||||
|
@ -33,16 +36,19 @@ function stripUnknownFields(
|
||||||
field: field.field,
|
field: field.field,
|
||||||
columns: field.columns,
|
columns: field.columns,
|
||||||
}
|
}
|
||||||
|
return strippedField
|
||||||
} else {
|
} else {
|
||||||
return {
|
const strippedField: RequiredKeys<CountCalculationFieldMetadata> = {
|
||||||
order: field.order,
|
order: field.order,
|
||||||
width: field.width,
|
width: field.width,
|
||||||
visible: field.visible,
|
visible: field.visible,
|
||||||
readonly: field.readonly,
|
readonly: field.readonly,
|
||||||
icon: field.icon,
|
icon: field.icon,
|
||||||
calculationType: field.calculationType,
|
calculationType: field.calculationType,
|
||||||
|
field: field.field,
|
||||||
columns: field.columns,
|
columns: field.columns,
|
||||||
}
|
}
|
||||||
|
return strippedField
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const strippedField: RequiredKeys<ViewCalculationFieldMetadata> = {
|
const strippedField: RequiredKeys<ViewCalculationFieldMetadata> = {
|
||||||
|
|
|
@ -152,4 +152,22 @@ describe("/static", () => {
|
||||||
expect(res.body.builderPreview).toBe(true)
|
expect(res.body.builderPreview).toBe(true)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
describe("/", () => {
|
||||||
|
it("should move permanently from base call (public call)", async () => {
|
||||||
|
const res = await request.get(`/`)
|
||||||
|
expect(res.status).toEqual(301)
|
||||||
|
expect(res.text).toEqual(
|
||||||
|
`Redirecting to <a href="/builder">/builder</a>.`
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
it("should not error when trying to get 'apple-touch-icon.png' (public call)", async () => {
|
||||||
|
const res = await request.get(`/apple-touch-icon.png`)
|
||||||
|
expect(res.status).toEqual(302)
|
||||||
|
expect(res.text).toEqual(
|
||||||
|
`Redirecting to <a href="/builder/bblogo.png">/builder/bblogo.png</a>.`
|
||||||
|
)
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -693,6 +693,12 @@ describe.each([
|
||||||
calculationType: CalculationType.COUNT,
|
calculationType: CalculationType.COUNT,
|
||||||
field: "Price",
|
field: "Price",
|
||||||
},
|
},
|
||||||
|
countDistinct: {
|
||||||
|
visible: true,
|
||||||
|
calculationType: CalculationType.COUNT,
|
||||||
|
distinct: true,
|
||||||
|
field: "Price",
|
||||||
|
},
|
||||||
min: {
|
min: {
|
||||||
visible: true,
|
visible: true,
|
||||||
calculationType: CalculationType.MIN,
|
calculationType: CalculationType.MIN,
|
||||||
|
@ -708,11 +714,6 @@ describe.each([
|
||||||
calculationType: CalculationType.AVG,
|
calculationType: CalculationType.AVG,
|
||||||
field: "Price",
|
field: "Price",
|
||||||
},
|
},
|
||||||
sum2: {
|
|
||||||
visible: true,
|
|
||||||
calculationType: CalculationType.SUM,
|
|
||||||
field: "Price",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -763,10 +764,12 @@ describe.each([
|
||||||
count: {
|
count: {
|
||||||
visible: true,
|
visible: true,
|
||||||
calculationType: CalculationType.COUNT,
|
calculationType: CalculationType.COUNT,
|
||||||
|
field: "Price",
|
||||||
},
|
},
|
||||||
count2: {
|
count2: {
|
||||||
visible: true,
|
visible: true,
|
||||||
calculationType: CalculationType.COUNT,
|
calculationType: CalculationType.COUNT,
|
||||||
|
field: "Price",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -774,7 +777,7 @@ describe.each([
|
||||||
status: 400,
|
status: 400,
|
||||||
body: {
|
body: {
|
||||||
message:
|
message:
|
||||||
'Duplicate calculation on field "*", calculation type "count"',
|
'Duplicate calculation on field "Price", calculation type "count"',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -805,7 +808,7 @@ describe.each([
|
||||||
status: 400,
|
status: 400,
|
||||||
body: {
|
body: {
|
||||||
message:
|
message:
|
||||||
'Duplicate calculation on field "Price", calculation type "count"',
|
'Duplicate calculation on field "Price", calculation type "count distinct"',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -820,6 +823,7 @@ describe.each([
|
||||||
count: {
|
count: {
|
||||||
visible: true,
|
visible: true,
|
||||||
calculationType: CalculationType.COUNT,
|
calculationType: CalculationType.COUNT,
|
||||||
|
field: "Price",
|
||||||
},
|
},
|
||||||
count2: {
|
count2: {
|
||||||
visible: true,
|
visible: true,
|
||||||
|
@ -831,6 +835,26 @@ describe.each([
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it("does not confuse counts on different fields in the duplicate check", async () => {
|
||||||
|
await config.api.viewV2.create({
|
||||||
|
tableId: table._id!,
|
||||||
|
name: generator.guid(),
|
||||||
|
type: ViewV2Type.CALCULATION,
|
||||||
|
schema: {
|
||||||
|
count: {
|
||||||
|
visible: true,
|
||||||
|
calculationType: CalculationType.COUNT,
|
||||||
|
field: "Price",
|
||||||
|
},
|
||||||
|
count2: {
|
||||||
|
visible: true,
|
||||||
|
calculationType: CalculationType.COUNT,
|
||||||
|
field: "Category",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
!isLucene &&
|
!isLucene &&
|
||||||
it("does not get confused when a calculation field shadows a basic one", async () => {
|
it("does not get confused when a calculation field shadows a basic one", async () => {
|
||||||
const table = await config.api.table.save(
|
const table = await config.api.table.save(
|
||||||
|
@ -1607,6 +1631,7 @@ describe.each([
|
||||||
view.schema!.count = {
|
view.schema!.count = {
|
||||||
visible: true,
|
visible: true,
|
||||||
calculationType: CalculationType.COUNT,
|
calculationType: CalculationType.COUNT,
|
||||||
|
field: "age",
|
||||||
}
|
}
|
||||||
await config.api.viewV2.update(view)
|
await config.api.viewV2.update(view)
|
||||||
|
|
||||||
|
@ -3659,6 +3684,153 @@ describe.each([
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it("should be able to filter on relationships", async () => {
|
||||||
|
const companies = await config.api.table.save(
|
||||||
|
saveTableRequest({
|
||||||
|
schema: {
|
||||||
|
name: {
|
||||||
|
name: "name",
|
||||||
|
type: FieldType.STRING,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
const employees = await config.api.table.save(
|
||||||
|
saveTableRequest({
|
||||||
|
schema: {
|
||||||
|
age: {
|
||||||
|
type: FieldType.NUMBER,
|
||||||
|
name: "age",
|
||||||
|
},
|
||||||
|
name: {
|
||||||
|
type: FieldType.STRING,
|
||||||
|
name: "name",
|
||||||
|
},
|
||||||
|
company: {
|
||||||
|
type: FieldType.LINK,
|
||||||
|
name: "company",
|
||||||
|
tableId: companies._id!,
|
||||||
|
relationshipType: RelationshipType.ONE_TO_MANY,
|
||||||
|
fieldName: "company",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
const view = await config.api.viewV2.create({
|
||||||
|
tableId: employees._id!,
|
||||||
|
name: generator.guid(),
|
||||||
|
type: ViewV2Type.CALCULATION,
|
||||||
|
queryUI: {
|
||||||
|
groups: [
|
||||||
|
{
|
||||||
|
filters: [
|
||||||
|
{
|
||||||
|
operator: BasicOperator.EQUAL,
|
||||||
|
field: "company.name",
|
||||||
|
value: "Aperture Science Laboratories",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
schema: {
|
||||||
|
sum: {
|
||||||
|
visible: true,
|
||||||
|
calculationType: CalculationType.SUM,
|
||||||
|
field: "age",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
const apertureScience = await config.api.row.save(
|
||||||
|
companies._id!,
|
||||||
|
{
|
||||||
|
name: "Aperture Science Laboratories",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
const blackMesa = await config.api.row.save(companies._id!, {
|
||||||
|
name: "Black Mesa",
|
||||||
|
})
|
||||||
|
|
||||||
|
await Promise.all([
|
||||||
|
config.api.row.save(employees._id!, {
|
||||||
|
name: "Alice",
|
||||||
|
age: 25,
|
||||||
|
company: apertureScience._id,
|
||||||
|
}),
|
||||||
|
config.api.row.save(employees._id!, {
|
||||||
|
name: "Bob",
|
||||||
|
age: 30,
|
||||||
|
company: apertureScience._id,
|
||||||
|
}),
|
||||||
|
config.api.row.save(employees._id!, {
|
||||||
|
name: "Charly",
|
||||||
|
age: 27,
|
||||||
|
company: blackMesa._id,
|
||||||
|
}),
|
||||||
|
config.api.row.save(employees._id!, {
|
||||||
|
name: "Danny",
|
||||||
|
age: 15,
|
||||||
|
company: blackMesa._id,
|
||||||
|
}),
|
||||||
|
])
|
||||||
|
|
||||||
|
const { rows } = await config.api.viewV2.search(view.id, {
|
||||||
|
query: {},
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(rows).toHaveLength(1)
|
||||||
|
expect(rows[0].sum).toEqual(55)
|
||||||
|
})
|
||||||
|
|
||||||
|
it("should be able to count non-numeric fields", async () => {
|
||||||
|
const table = await config.api.table.save(
|
||||||
|
saveTableRequest({
|
||||||
|
schema: {
|
||||||
|
firstName: {
|
||||||
|
type: FieldType.STRING,
|
||||||
|
name: "firstName",
|
||||||
|
},
|
||||||
|
lastName: {
|
||||||
|
type: FieldType.STRING,
|
||||||
|
name: "lastName",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
)
|
||||||
|
|
||||||
|
const view = await config.api.viewV2.create({
|
||||||
|
tableId: table._id!,
|
||||||
|
name: generator.guid(),
|
||||||
|
type: ViewV2Type.CALCULATION,
|
||||||
|
schema: {
|
||||||
|
count: {
|
||||||
|
visible: true,
|
||||||
|
calculationType: CalculationType.COUNT,
|
||||||
|
field: "firstName",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
await config.api.row.bulkImport(table._id!, {
|
||||||
|
rows: [
|
||||||
|
{ firstName: "Jane", lastName: "Smith" },
|
||||||
|
{ firstName: "Jane", lastName: "Doe" },
|
||||||
|
{ firstName: "Alice", lastName: "Smith" },
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
const { rows } = await config.api.viewV2.search(view.id, {
|
||||||
|
query: {},
|
||||||
|
})
|
||||||
|
|
||||||
|
expect(rows).toHaveLength(1)
|
||||||
|
expect(rows[0].count).toEqual(3)
|
||||||
|
})
|
||||||
|
|
||||||
it("should be able to filter rows on the view itself", async () => {
|
it("should be able to filter rows on the view itself", async () => {
|
||||||
const table = await config.api.table.save(
|
const table = await config.api.table.save(
|
||||||
saveTableRequest({
|
saveTableRequest({
|
||||||
|
|
|
@ -25,10 +25,12 @@ export async function fetch(status: AppStatus, user: ContextUser) {
|
||||||
const all = status === AppStatus.ALL
|
const all = status === AppStatus.ALL
|
||||||
let apps = (await dbCore.getAllApps({ dev, all })) as App[]
|
let apps = (await dbCore.getAllApps({ dev, all })) as App[]
|
||||||
|
|
||||||
const enrichedUser = await groups.enrichUserRolesFromGroups({
|
// need to type this correctly - add roles back in to convert from ContextUser to User
|
||||||
|
const completeUser: User = {
|
||||||
...user,
|
...user,
|
||||||
roles: user.roles || {},
|
roles: user?.roles || {},
|
||||||
})
|
}
|
||||||
|
const enrichedUser = await groups.enrichUserRolesFromGroups(completeUser)
|
||||||
apps = filterAppList(enrichedUser, apps)
|
apps = filterAppList(enrichedUser, apps)
|
||||||
|
|
||||||
const appIds = apps
|
const appIds = apps
|
||||||
|
|
|
@ -351,6 +351,7 @@ export async function search(
|
||||||
aggregations.push({
|
aggregations.push({
|
||||||
name: key,
|
name: key,
|
||||||
calculationType: field.calculationType,
|
calculationType: field.calculationType,
|
||||||
|
field: mapToUserColumn(field.field),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -61,12 +61,68 @@ export function isView(view: any): view is ViewV2 {
|
||||||
return view.id && docIds.isViewId(view.id) && view.version === 2
|
return view.id && docIds.isViewId(view.id) && view.version === 2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function guardDuplicateCalculationFields(view: Omit<ViewV2, "id" | "version">) {
|
||||||
|
const seen: Record<string, Record<CalculationType, boolean>> = {}
|
||||||
|
const calculationFields = helpers.views.calculationFields(view)
|
||||||
|
for (const name of Object.keys(calculationFields)) {
|
||||||
|
const schema = calculationFields[name]
|
||||||
|
const isCount = schema.calculationType === CalculationType.COUNT
|
||||||
|
const isDistinct = "distinct" in schema
|
||||||
|
|
||||||
|
if (isCount && isDistinct) {
|
||||||
|
// We do these separately.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (seen[schema.field]?.[schema.calculationType]) {
|
||||||
|
throw new HTTPError(
|
||||||
|
`Duplicate calculation on field "${schema.field}", calculation type "${schema.calculationType}"`,
|
||||||
|
400
|
||||||
|
)
|
||||||
|
}
|
||||||
|
seen[schema.field] ??= {} as Record<CalculationType, boolean>
|
||||||
|
seen[schema.field][schema.calculationType] = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function guardDuplicateCountDistinctFields(
|
||||||
|
view: Omit<ViewV2, "id" | "version">
|
||||||
|
) {
|
||||||
|
const seen: Record<string, Record<CalculationType, boolean>> = {}
|
||||||
|
const calculationFields = helpers.views.calculationFields(view)
|
||||||
|
for (const name of Object.keys(calculationFields)) {
|
||||||
|
const schema = calculationFields[name]
|
||||||
|
const isCount = schema.calculationType === CalculationType.COUNT
|
||||||
|
if (!isCount) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
const isDistinct = "distinct" in schema
|
||||||
|
if (!isDistinct) {
|
||||||
|
// We do these separately.
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
if (seen[schema.field]?.[schema.calculationType]) {
|
||||||
|
throw new HTTPError(
|
||||||
|
`Duplicate calculation on field "${schema.field}", calculation type "${schema.calculationType} distinct"`,
|
||||||
|
400
|
||||||
|
)
|
||||||
|
}
|
||||||
|
seen[schema.field] ??= {} as Record<CalculationType, boolean>
|
||||||
|
seen[schema.field][schema.calculationType] = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async function guardCalculationViewSchema(
|
async function guardCalculationViewSchema(
|
||||||
table: Table,
|
table: Table,
|
||||||
view: Omit<ViewV2, "id" | "version">
|
view: Omit<ViewV2, "id" | "version">
|
||||||
) {
|
) {
|
||||||
const calculationFields = helpers.views.calculationFields(view)
|
const calculationFields = helpers.views.calculationFields(view)
|
||||||
|
|
||||||
|
guardDuplicateCalculationFields(view)
|
||||||
|
guardDuplicateCountDistinctFields(view)
|
||||||
|
|
||||||
if (Object.keys(calculationFields).length > 5) {
|
if (Object.keys(calculationFields).length > 5) {
|
||||||
throw new HTTPError(
|
throw new HTTPError(
|
||||||
"Calculation views can only have a maximum of 5 fields",
|
"Calculation views can only have a maximum of 5 fields",
|
||||||
|
@ -74,29 +130,8 @@ async function guardCalculationViewSchema(
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const seen: Record<string, Record<CalculationType, boolean>> = {}
|
|
||||||
|
|
||||||
for (const name of Object.keys(calculationFields)) {
|
for (const name of Object.keys(calculationFields)) {
|
||||||
const schema = calculationFields[name]
|
const schema = calculationFields[name]
|
||||||
const isCount = schema.calculationType === CalculationType.COUNT
|
|
||||||
const isDistinct = isCount && "distinct" in schema && schema.distinct
|
|
||||||
|
|
||||||
const field = isCount && !isDistinct ? "*" : schema.field
|
|
||||||
if (seen[field]?.[schema.calculationType]) {
|
|
||||||
throw new HTTPError(
|
|
||||||
`Duplicate calculation on field "${field}", calculation type "${schema.calculationType}"`,
|
|
||||||
400
|
|
||||||
)
|
|
||||||
}
|
|
||||||
seen[field] ??= {} as Record<CalculationType, boolean>
|
|
||||||
seen[field][schema.calculationType] = true
|
|
||||||
|
|
||||||
// Count fields that aren't distinct don't need to reference another field,
|
|
||||||
// so we don't validate it.
|
|
||||||
if (isCount && !isDistinct) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!schema.field) {
|
if (!schema.field) {
|
||||||
throw new HTTPError(
|
throw new HTTPError(
|
||||||
`Calculation field "${name}" is missing a "field" property`,
|
`Calculation field "${name}" is missing a "field" property`,
|
||||||
|
@ -112,6 +147,7 @@ async function guardCalculationViewSchema(
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const isCount = schema.calculationType === CalculationType.COUNT
|
||||||
if (!isCount && !isNumeric(targetSchema.type)) {
|
if (!isCount && !isNumeric(targetSchema.type)) {
|
||||||
throw new HTTPError(
|
throw new HTTPError(
|
||||||
`Calculation field "${name}" references field "${schema.field}" which is not a numeric field`,
|
`Calculation field "${name}" references field "${schema.field}" which is not a numeric field`,
|
||||||
|
|
|
@ -54,12 +54,12 @@ export interface NumericCalculationFieldMetadata
|
||||||
|
|
||||||
export interface CountCalculationFieldMetadata extends BasicViewFieldMetadata {
|
export interface CountCalculationFieldMetadata extends BasicViewFieldMetadata {
|
||||||
calculationType: CalculationType.COUNT
|
calculationType: CalculationType.COUNT
|
||||||
|
field: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CountDistinctCalculationFieldMetadata
|
export interface CountDistinctCalculationFieldMetadata
|
||||||
extends CountCalculationFieldMetadata {
|
extends CountCalculationFieldMetadata {
|
||||||
distinct: true
|
distinct: true
|
||||||
field: string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ViewCalculationFieldMetadata =
|
export type ViewCalculationFieldMetadata =
|
||||||
|
|
|
@ -18,11 +18,11 @@ export interface NumericAggregation extends BaseAggregation {
|
||||||
|
|
||||||
export interface CountAggregation extends BaseAggregation {
|
export interface CountAggregation extends BaseAggregation {
|
||||||
calculationType: CalculationType.COUNT
|
calculationType: CalculationType.COUNT
|
||||||
|
field: string
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CountDistinctAggregation extends CountAggregation {
|
export interface CountDistinctAggregation extends CountAggregation {
|
||||||
distinct: true
|
distinct: true
|
||||||
field: string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Aggregation =
|
export type Aggregation =
|
||||||
|
|
|
@ -312,16 +312,21 @@ export const tenantUserLookup = async (ctx: any) => {
|
||||||
* So the account holder may not be found until further pagination has occurred
|
* So the account holder may not be found until further pagination has occurred
|
||||||
*/
|
*/
|
||||||
export const accountHolderLookup = async (ctx: Ctx) => {
|
export const accountHolderLookup = async (ctx: Ctx) => {
|
||||||
|
try {
|
||||||
const users = await userSdk.core.getAllUsers()
|
const users = await userSdk.core.getAllUsers()
|
||||||
const response = await userSdk.core.getExistingAccounts(
|
const response = await userSdk.core.getExistingAccounts(
|
||||||
users.map(u => u.email)
|
users.map(u => u.email)
|
||||||
)
|
)
|
||||||
const holder = response[0]
|
const holder = response[0]
|
||||||
if (!holder) {
|
if (!holder) {
|
||||||
|
ctx.body = null
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
holder._id = users.find(u => u.email === holder.email)?._id
|
holder._id = users.find(u => u.email === holder.email)?._id
|
||||||
ctx.body = holder
|
ctx.body = holder
|
||||||
|
} catch (e) {
|
||||||
|
ctx.body = null
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue