Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(schema-compiler): Fix cubes inheritance #9386

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/cubejs-api-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"graphql-tag": "^2.12.6",
"http-proxy-middleware": "^3.0.0",
"inflection": "^1.12.0",
"joi": "^17.8.3",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"jwk-to-pem": "^2.0.4",
"moment": "^2.24.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cubejs-schema-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"cron-parser": "^4.9.0",
"humps": "^2.0.1",
"inflection": "^1.12.0",
"joi": "^17.8.3",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"lru-cache": "^5.1.1",
"moment-timezone": "^0.5.46",
Expand Down
28 changes: 10 additions & 18 deletions packages/cubejs-schema-compiler/src/compiler/CubeEvaluator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,25 +221,17 @@ export class CubeEvaluator extends CubeSymbols {
}

private prepareHierarchies(cube: any, errorReporter: ErrorReporter): void {
const uniqueHierarchyNames = new Set();
if (Object.keys(cube.hierarchies).length) {
cube.evaluatedHierarchies = Object.entries(cube.hierarchies).map(([name, hierarchy]) => {
if (uniqueHierarchyNames.has(name)) {
errorReporter.error(`Duplicate hierarchy name '${name}' in cube '${cube.name}'`);
}
uniqueHierarchyNames.add(name);

return ({
name,
...(typeof hierarchy === 'object' ? hierarchy : {}),
levels: this.evaluateReferences(
cube.name,
// @ts-ignore
hierarchy.levels,
{ originalSorting: true }
)
});
});
cube.evaluatedHierarchies = Object.entries(cube.hierarchies).map(([name, hierarchy]) => ({
name,
...(typeof hierarchy === 'object' ? hierarchy : {}),
levels: this.evaluateReferences(
cube.name,
// @ts-ignore
hierarchy.levels,
{ originalSorting: true }
)
}));
}

if (cube.isView && (cube.includedMembers || []).length) {
Expand Down
79 changes: 71 additions & 8 deletions packages/cubejs-schema-compiler/src/compiler/CubeSymbols.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@ import type { ErrorReporter } from './ErrorReporter';
interface CubeDefinition {
name: string;
extends?: string;
sql?: string | (() => string);
// eslint-disable-next-line camelcase
sql_table?: string | (() => string);
sqlTable?: string | (() => string);
measures?: Record<string, any>;
dimensions?: Record<string, any>;
segments?: Record<string, any>;
hierarchies?: Record<string, any>;
preAggregations?: Record<string, any>;
// eslint-disable-next-line camelcase
pre_aggregations?: Record<string, any>;
joins?: Record<string, any>;
accessPolicy?: Record<string, any>;
accessPolicy?: any[];
includes?: any;
excludes?: any;
cubes?: any;
Expand All @@ -34,7 +40,7 @@ interface SplitViews {
const FunctionRegex = /function\s+\w+\(([A-Za-z0-9_,]*)|\(([\s\S]*?)\)\s*=>|\(?(\w+)\)?\s*=>/;
export const CONTEXT_SYMBOLS = {
SECURITY_CONTEXT: 'securityContext',
// SECURITY_CONTEXT has been deprecated, however security_context (lowecase)
// SECURITY_CONTEXT has been deprecated, however security_context (lowercase)
// is allowed in RBAC policies for query-time attribute matching
security_context: 'securityContext',
securityContext: 'securityContext',
Expand Down Expand Up @@ -103,10 +109,13 @@ export class CubeSymbols {
}

public createCube(cubeDefinition: CubeDefinition) {
let preAggregations: any;
let joins: any;
let measures: any;
let dimensions: any;
let segments: any;
let hierarchies: any;
let accessPolicy: any;

const cubeObject = Object.assign({
allDefinitions(type: string) {
Expand All @@ -119,6 +128,37 @@ export class CubeSymbols {
return { ...cubeDefinition[type] };
}
},

get preAggregations() {
// For preAggregations order is important, and destructing parents cube pre-aggs first will lead to
// unexpected results, so we can not use common approach with allDefinitions('preAggregations') here.
if (!preAggregations) {
const parentPreAggregations = cubeDefinition.extends ? super.preAggregations : null;
// Unfortunately, cube is not camelized yet at this point :(
const localPreAggregations = cubeDefinition.preAggregations || cubeDefinition.pre_aggregations;

if (parentPreAggregations) {
preAggregations = { ...localPreAggregations, ...parentPreAggregations, ...localPreAggregations };
} else {
preAggregations = { ...localPreAggregations };
}
}
return preAggregations;
},
set preAggregations(v) {
// Dont allow to modify
},

get joins() {
if (!joins) {
joins = this.allDefinitions('joins');
}
return joins;
},
set joins(v) {
// Dont allow to modify
},

get measures() {
if (!measures) {
measures = this.allDefinitions('measures');
Expand Down Expand Up @@ -156,18 +196,41 @@ export class CubeSymbols {
return hierarchies;
},
set hierarchies(v) {
//
// Dont allow to modify
},

get accessPolicy() {
if (!accessPolicy) {
const parentAcls = cubeDefinition.extends ? super.accessPolicy : [];
accessPolicy = [...(parentAcls || []), ...(cubeDefinition.accessPolicy || [])];
}
// Schema validator expects accessPolicy to be not empty if defined
if (accessPolicy.length) {
return accessPolicy;
} else {
return undefined;
}
},
set accessPolicy(v) {
// Dont allow to modify
}
},
cubeDefinition);

if (cubeDefinition.extends) {
const superCube = this.resolveSymbolsCall(cubeDefinition.extends, (name: string) => this.cubeReferenceProxy(name));
Object.setPrototypeOf(
cubeObject,
// eslint-disable-next-line no-underscore-dangle
superCube.__cubeName ? this.getCubeDefinition(superCube.__cubeName) : superCube
);
// eslint-disable-next-line no-underscore-dangle
const parentCube = superCube.__cubeName ? this.getCubeDefinition(superCube.__cubeName) : superCube;
Object.setPrototypeOf(cubeObject, parentCube);

// We have 2 different properties that are mutually exclusive: `sqlTable` & `sql`
// And if in extending cube one of them is defined - we need to hide the other from parent cube definition
// Unfortunately, cube is not camelized yet at this point :(
if ((cubeDefinition.sqlTable || cubeDefinition.sql_table) && parentCube.sql) {
cubeObject.sql = undefined;
} else if (cubeDefinition.sql && (parentCube.sqlTable || parentCube.sql_table)) {
cubeObject.sqlTable = undefined;
}
}

return cubeObject;
Expand Down
Loading
Loading