rez_core 2.1.67 → 2.1.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.1.67",
3
+ "version": "2.1.69",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -47,6 +47,7 @@ import { UserRoleMapping } from '../user/entity/user-role-mapping.entity';
47
47
  import { AppMasterService } from './service/app-master.service';
48
48
  import { AppMasterRespository } from './repository/app-master.repository';
49
49
  import { AppMaster } from './entity/app-master.entity';
50
+ import { PopulateMetaService } from './service/populate-meta.service';
50
51
 
51
52
  @Module({
52
53
  imports: [
@@ -79,6 +80,7 @@ import { AppMaster } from './entity/app-master.entity';
79
80
  MasterService,
80
81
  EntityTableRepository,
81
82
  EntityTableService,
83
+ PopulateMetaService,
82
84
  EntityTableColumnRepository,
83
85
  EntityTableColumnService,
84
86
  EntityListService,
@@ -103,6 +105,7 @@ import { AppMaster } from './entity/app-master.entity';
103
105
  EntityListService,
104
106
  EntityValidationService,
105
107
  EntityTableService,
108
+ PopulateMetaService,
106
109
  EntityTableColumnService,
107
110
  MediaDataService,
108
111
  SectionMasterService,
@@ -0,0 +1,54 @@
1
+ import { Injectable } from '@nestjs/common';
2
+ import { DataSource } from 'typeorm';
3
+ import { EntityServiceImpl } from './entity-service-impl.service';
4
+
5
+ @Injectable()
6
+ export class PopulateMetaService {
7
+ constructor(
8
+ private readonly dataSource: DataSource,
9
+ private readonly entityServiceImpl: EntityServiceImpl,
10
+ ) {}
11
+
12
+ async populateMetaData(organization_id: number) {
13
+ // Define metadata tables
14
+ const metadataTables = [
15
+ 'cr_entity_master',
16
+ 'cr_attribute_master',
17
+ 'cr_entity_table',
18
+ 'cr_entity_table_column',
19
+ ];
20
+
21
+ // Fetch and transform all factory data
22
+ for (const table of metadataTables) {
23
+ const factoryData = await this.dataSource.query(
24
+ `SELECT * FROM ${table} WHERE organization_id = -1 AND level_type = 'ORG' AND level_id = -1`,
25
+ );
26
+
27
+ if (!factoryData.length) continue;
28
+
29
+ // Clean and transform data for insertion
30
+ const transformedData = factoryData.map((row) => {
31
+ const { id, created_date, modified_date, ...rest } = row;
32
+ return {
33
+ ...rest,
34
+ organization_id,
35
+ level_type: 'ORG',
36
+ level_id: organization_id,
37
+ };
38
+ });
39
+
40
+ // Perform bulk insert into the same table
41
+ await this.dataSource
42
+ .createQueryBuilder()
43
+ .insert()
44
+ .into(table)
45
+ .values(transformedData)
46
+ .execute();
47
+ }
48
+
49
+ return {
50
+ message: 'Metadata populated successfully',
51
+ status: 'success',
52
+ };
53
+ }
54
+ }
@@ -96,22 +96,31 @@ export class MenuRepository extends Repository<MenuData> {
96
96
  ): Promise<number[]> {
97
97
  const repo = this.dataSource.getRepository(UserRoleMapping);
98
98
 
99
- // if (userId) {
100
- // // Check if user has any role mappings for the given appcode
101
- // const getUserDetails = await this.dataSource.query(
102
- // `
103
- // SELECT * from cr_user where id = ?
104
- // `,
105
- // [userId],
106
- // );
107
-
108
- // if (
109
- // getUserDetails.length > 0 &&
110
- // getUserDetails[0].organization_id === 1
111
- // ) {
112
- // return [6];
113
- // }
114
- // }
99
+ if (userId) {
100
+ // Check if user has any role mappings for the given appcode
101
+ const getUserDetails = await this.dataSource.query(
102
+ `
103
+ SELECT * from cr_user where id = ?
104
+ `,
105
+ [userId],
106
+ );
107
+
108
+ // get user role from urm
109
+
110
+ const getUserUrm = await this.dataSource.query(
111
+ `
112
+ SELECT * from cr_user_role_mapping where user_id = ? and appcode = ?
113
+ `,
114
+ [userId, appcode],
115
+ );
116
+
117
+ if (
118
+ getUserDetails.length > 0 &&
119
+ getUserDetails[0].organization_id === 1
120
+ ) {
121
+ return [Number(getUserUrm[0].role_id)];
122
+ }
123
+ }
115
124
 
116
125
  // 1. Try exact level match
117
126
  let roles = await repo