@mondaydotcomorg/monday-authorization 3.3.0-feature-bashanye-navigate-can-action-in-scope-to-graph-9ad5fa5 → 3.3.0-feature-bashanye-navigate-can-action-in-scope-to-graph-752f21a
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/DEBUG.md +203 -0
- package/dist/authorization-service.d.ts.map +1 -1
- package/dist/authorization-service.js +9 -0
- package/dist/clients/graph-api.client.d.ts.map +1 -1
- package/dist/clients/graph-api.client.js +21 -1
- package/dist/clients/platform-api.client.d.ts.map +1 -1
- package/dist/clients/platform-api.client.js +24 -1
- package/dist/esm/authorization-service.d.ts.map +1 -1
- package/dist/esm/authorization-service.mjs +9 -0
- package/dist/esm/clients/graph-api.client.d.ts.map +1 -1
- package/dist/esm/clients/graph-api.client.mjs +22 -2
- package/dist/esm/clients/platform-api.client.d.ts.map +1 -1
- package/dist/esm/clients/platform-api.client.mjs +25 -2
- package/dist/esm/utils/authorization.utils.d.ts.map +1 -1
- package/dist/esm/utils/authorization.utils.mjs +12 -0
- package/dist/utils/authorization.utils.d.ts.map +1 -1
- package/dist/utils/authorization.utils.js +12 -0
- package/package.json +7 -2
- package/src/attributions-service.ts +92 -0
- package/src/authorization-attributes-service.ts +234 -0
- package/src/authorization-internal-service.ts +129 -0
- package/src/authorization-middleware.ts +51 -0
- package/src/authorization-service.ts +384 -0
- package/src/clients/graph-api.client.ts +164 -0
- package/src/clients/platform-api.client.ts +151 -0
- package/src/constants/sns.ts +5 -0
- package/src/constants.ts +22 -0
- package/src/index.ts +46 -0
- package/src/prometheus-service.ts +147 -0
- package/src/roles-service.ts +125 -0
- package/src/testKit/index.ts +69 -0
- package/src/types/authorization-attributes-contracts.ts +33 -0
- package/src/types/express.ts +8 -0
- package/src/types/general.ts +32 -0
- package/src/types/graph-api.types.ts +19 -0
- package/src/types/roles.ts +42 -0
- package/src/types/scoped-actions-contracts.ts +48 -0
- package/src/utils/authorization.utils.ts +66 -0
package/DEBUG.md
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
# Debugging @mondaydotcomorg/monday-authorization
|
|
2
|
+
|
|
3
|
+
This guide explains how to debug the monday-authorization package when it's installed as a dependency in your project.
|
|
4
|
+
|
|
5
|
+
## 🔧 Setup for Debugging
|
|
6
|
+
|
|
7
|
+
### 1. Install the Package with Source Files
|
|
8
|
+
|
|
9
|
+
When you install the package, it includes both compiled JavaScript and TypeScript source files:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install @mondaydotcomorg/monday-authorization
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
The package includes:
|
|
16
|
+
|
|
17
|
+
- `dist/` - Compiled JavaScript with source maps
|
|
18
|
+
- `src/` - Original TypeScript source files
|
|
19
|
+
|
|
20
|
+
### 2. Configure Your Debugger
|
|
21
|
+
|
|
22
|
+
#### VS Code Launch Configuration
|
|
23
|
+
|
|
24
|
+
Create a `.vscode/launch.json` file in your project:
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"version": "0.2.0",
|
|
29
|
+
"configurations": [
|
|
30
|
+
{
|
|
31
|
+
"name": "Debug Authorization Package",
|
|
32
|
+
"type": "node",
|
|
33
|
+
"request": "launch",
|
|
34
|
+
"program": "${workspaceFolder}/your-main-file.js",
|
|
35
|
+
"sourceMaps": true,
|
|
36
|
+
"resolveSourceMapLocations": [
|
|
37
|
+
"${workspaceFolder}/**",
|
|
38
|
+
"!**/node_modules/**",
|
|
39
|
+
"**/node_modules/@mondaydotcomorg/monday-authorization/**"
|
|
40
|
+
],
|
|
41
|
+
"skipFiles": ["<node_internals>/**", "node_modules/**"],
|
|
42
|
+
"outFiles": ["${workspaceFolder}/node_modules/@mondaydotcomorg/monday-authorization/dist/**/*.js"]
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
#### WebStorm/IntelliJ IDEA
|
|
49
|
+
|
|
50
|
+
1. Go to `Run` → `Edit Configurations`
|
|
51
|
+
2. Add a new `Node.js` configuration
|
|
52
|
+
3. Set the JavaScript file to your main application file
|
|
53
|
+
4. In the debugger settings, ensure source maps are enabled
|
|
54
|
+
|
|
55
|
+
### 3. Enable Debug Logging
|
|
56
|
+
|
|
57
|
+
The package includes comprehensive debug logging. To see debug logs:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# Set environment variable
|
|
61
|
+
export LOG_LEVEL=debug
|
|
62
|
+
|
|
63
|
+
# Or in your application
|
|
64
|
+
process.env.LOG_LEVEL = 'debug';
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### 4. Breakpoints in Source Files
|
|
68
|
+
|
|
69
|
+
You can set breakpoints directly in the TypeScript source files:
|
|
70
|
+
|
|
71
|
+
1. Open the source file: `node_modules/@mondaydotcomorg/monday-authorization/src/`
|
|
72
|
+
2. Set breakpoints in the TypeScript code
|
|
73
|
+
3. Your debugger should map them to the running JavaScript
|
|
74
|
+
|
|
75
|
+
## 🔍 Debug Log Categories
|
|
76
|
+
|
|
77
|
+
The package logs debug information with these tags:
|
|
78
|
+
|
|
79
|
+
### Authorization Service (`authorization-service`)
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
🔍 canActionInScopeMultiple called { accountId, userId, scopedActionsCount }
|
|
83
|
+
📍 Graph API routing feature flag: ENABLED/DISABLED
|
|
84
|
+
🎯 Attempting Graph API authorization
|
|
85
|
+
✅ Graph API authorization successful
|
|
86
|
+
❌ Graph API authorization failed, falling back to Platform API
|
|
87
|
+
🔄 Using Platform API directly (Graph API FF disabled)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Graph API Client (`graph-api-client`)
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
🔍 Graph API Debug: Starting request { scopedActionsCount, appName, path, timeout, bodyPayloadKeys }
|
|
94
|
+
✅ Graph API Debug: Request successful { responseKeys, scopedActionsCount }
|
|
95
|
+
❌ Graph API Debug: Request failed { error, status, scopedActionsCount }
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
### Platform API Client (`platform-api-client`)
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
🔍 Platform API Debug: Starting request { profile, userId, scopedActionsCount, appName, path }
|
|
102
|
+
✅ Platform API Debug: Request successful { hasResult, resultCount }
|
|
103
|
+
❌ Platform API Debug: Request failed { error, status, profile, userId }
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### Authorization Utils (`authorization-utils`)
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
🔍 Utils Debug: Converting scope to resource { scopeKeys, scopeValues }
|
|
110
|
+
🔍 Utils Debug: Mapped to workspace/board/pulse/etc { resourceId }
|
|
111
|
+
❌ Utils Debug: Unsupported scope provided { scope }
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## 🐛 Common Debugging Scenarios
|
|
115
|
+
|
|
116
|
+
### Graph API 500 Errors
|
|
117
|
+
|
|
118
|
+
When you see Graph API failures, the logs will show:
|
|
119
|
+
|
|
120
|
+
1. ✅ Feature flag status (enabled/disabled)
|
|
121
|
+
2. 🎯 API attempt (Graph API first)
|
|
122
|
+
3. ❌ Failure details (error message, status code)
|
|
123
|
+
4. 🔄 Fallback trigger (automatic switch to Platform API)
|
|
124
|
+
5. ✅ Fallback success (Platform API response)
|
|
125
|
+
|
|
126
|
+
### Scope Mapping Issues
|
|
127
|
+
|
|
128
|
+
Debug logs show how scopes are converted to resources:
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
🔍 Utils Debug: Converting scope to resource { scopeKeys: ['boardId'], scopeValues: [123] }
|
|
132
|
+
🔍 Utils Debug: Mapped to board { resourceId: 123 }
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### Authorization Flow
|
|
136
|
+
|
|
137
|
+
Complete flow visibility:
|
|
138
|
+
|
|
139
|
+
1. **Entry**: `canActionInScopeMultiple called`
|
|
140
|
+
2. **Decision**: Feature flag check
|
|
141
|
+
3. **Attempt**: API selection and request
|
|
142
|
+
4. **Result**: Success/failure with details
|
|
143
|
+
5. **Fallback**: Automatic recovery if needed
|
|
144
|
+
|
|
145
|
+
## 📊 Source Maps
|
|
146
|
+
|
|
147
|
+
The package includes source maps for both:
|
|
148
|
+
|
|
149
|
+
- `dist/index.js.map` - Main CommonJS build
|
|
150
|
+
- `dist/esm/index.mjs.map` - ESM build
|
|
151
|
+
|
|
152
|
+
These allow your debugger to map the running JavaScript back to the original TypeScript source.
|
|
153
|
+
|
|
154
|
+
## 🔧 Advanced Debugging
|
|
155
|
+
|
|
156
|
+
### Custom Logger Configuration
|
|
157
|
+
|
|
158
|
+
```typescript
|
|
159
|
+
import { logger } from '@mondaydotcomorg/monday-authorization/src/authorization-internal-service';
|
|
160
|
+
|
|
161
|
+
// Configure custom logging
|
|
162
|
+
logger.level = 'debug';
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
### Inspecting Authorization Objects
|
|
166
|
+
|
|
167
|
+
```typescript
|
|
168
|
+
// Add this to your code to inspect authorization calls
|
|
169
|
+
import { AuthorizationService } from '@mondaydotcomorg/monday-authorization';
|
|
170
|
+
|
|
171
|
+
// Monkey patch for debugging
|
|
172
|
+
const originalCanActionInScopeMultiple = AuthorizationService.canActionInScopeMultiple;
|
|
173
|
+
AuthorizationService.canActionInScopeMultiple = async (...args) => {
|
|
174
|
+
console.log('🔍 Authorization call:', args);
|
|
175
|
+
const result = await originalCanActionInScopeMultiple.apply(AuthorizationService, args);
|
|
176
|
+
console.log('✅ Authorization result:', result);
|
|
177
|
+
return result;
|
|
178
|
+
};
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
## 📝 Troubleshooting
|
|
182
|
+
|
|
183
|
+
### Breakpoints Not Working
|
|
184
|
+
|
|
185
|
+
1. Ensure source maps are enabled in your debugger
|
|
186
|
+
2. Check that `node_modules/@mondaydotcomorg/monday-authorization/src/` files are accessible
|
|
187
|
+
3. Verify the source map files exist in `dist/`
|
|
188
|
+
|
|
189
|
+
### Logs Not Showing
|
|
190
|
+
|
|
191
|
+
1. Set `LOG_LEVEL=debug` environment variable
|
|
192
|
+
2. Check that your logger configuration includes debug level
|
|
193
|
+
3. Look for logs with tags: `authorization-service`, `graph-api-client`, `platform-api-client`, `authorization-utils`
|
|
194
|
+
|
|
195
|
+
### Source Files Not Found
|
|
196
|
+
|
|
197
|
+
1. Clear node_modules and reinstall the package
|
|
198
|
+
2. Ensure the package version includes source files
|
|
199
|
+
3. Check that `src/` directory exists in `node_modules/@mondaydotcomorg/monday-authorization/`
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
With these debugging capabilities, you can fully inspect and understand the authorization flow in your applications! 🚀
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authorization-service.d.ts","sourceRoot":"","sources":["../src/authorization-service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAAmB,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE7F,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,0BAA0B,EAC1B,YAAY,EACb,MAAM,kCAAkC,CAAC;AAe1C,MAAM,WAAW,iBAAiB;IAChC,YAAY,EAAE,OAAO,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,mBAAmB,CAAC,EAAE,mBAAmB,EAAE,CAAC;CAC7C;AAED,wBAAgB,sBAAsB,CAAC,wBAAwB,EAAE,kBAAkB,QAElF;AAMD,qBAAa,oBAAoB;IAC/B,MAAM,CAAC,WAAW,CAAC,MAAC;IACpB,MAAM,CAAC,sCAAsC,CAAC,EAAE,MAAM,CAAC;IACvD,MAAM,CAAC,YAAY,CAAC,EAAE,YAAY,CAAC;IAEnC;;;OAGG;WACU,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,QAAQ,EAAE,EACrB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,iBAAiB,CAAC;WAEhB,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,2BAA2B,EAAE,mBAAmB,EAAE,GACjD,OAAO,CAAC,iBAAiB,CAAC;IAY7B;;;OAGG;WACU,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE;QAAE,eAAe,CAAC,EAAE,OAAO,CAAA;KAAO,GAC1C,OAAO,CAAC,OAAO,CAAC;mBAkBE,6BAA6B;IAclD,OAAO,CAAC,MAAM,CAAC,gBAAgB;WAIlB,gBAAgB,CAC3B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,YAAY,GAClB,OAAO,CAAC,kBAAkB,CAAC;IAM9B,OAAO,CAAC,MAAM,CAAC,UAAU;WAsBZ,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"authorization-service.d.ts","sourceRoot":"","sources":["../src/authorization-service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAAmB,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE7F,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,0BAA0B,EAC1B,YAAY,EACb,MAAM,kCAAkC,CAAC;AAe1C,MAAM,WAAW,iBAAiB;IAChC,YAAY,EAAE,OAAO,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,mBAAmB,CAAC,EAAE,mBAAmB,EAAE,CAAC;CAC7C;AAED,wBAAgB,sBAAsB,CAAC,wBAAwB,EAAE,kBAAkB,QAElF;AAMD,qBAAa,oBAAoB;IAC/B,MAAM,CAAC,WAAW,CAAC,MAAC;IACpB,MAAM,CAAC,sCAAsC,CAAC,EAAE,MAAM,CAAC;IACvD,MAAM,CAAC,YAAY,CAAC,EAAE,YAAY,CAAC;IAEnC;;;OAGG;WACU,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,QAAQ,EAAE,EACrB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,iBAAiB,CAAC;WAEhB,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,2BAA2B,EAAE,mBAAmB,EAAE,GACjD,OAAO,CAAC,iBAAiB,CAAC;IAY7B;;;OAGG;WACU,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE;QAAE,eAAe,CAAC,EAAE,OAAO,CAAA;KAAO,GAC1C,OAAO,CAAC,OAAO,CAAC;mBAkBE,6BAA6B;IAclD,OAAO,CAAC,MAAM,CAAC,gBAAgB;WAIlB,gBAAgB,CAC3B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,YAAY,GAClB,OAAO,CAAC,kBAAkB,CAAC;IAM9B,OAAO,CAAC,MAAM,CAAC,UAAU;WAsBZ,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;mBA6FnB,oBAAoB;mBAUpB,oBAAoB;CAoF1C;AAED,wBAAgB,cAAc,CAC5B,MAAM,KAAA,EACN,sCAAsC,GAAE,MAAiD,QAY1F;AAED,wBAAsB,eAAe,kBAMpC;AAED,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,QAAQ,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,mBAAmB,CAepG"}
|
|
@@ -89,15 +89,19 @@ class AuthorizationService {
|
|
|
89
89
|
return attributionsService.PlatformProfile.INTERNAL;
|
|
90
90
|
}
|
|
91
91
|
static async canActionInScopeMultiple(accountId, userId, scopedActions) {
|
|
92
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId, scopedActionsCount: scopedActions.length }, 'canActionInScopeMultiple called');
|
|
92
93
|
const shouldNavigateToGraph = Boolean(this.igniteClient?.isReleased(NAVIGATE_CAN_ACTION_IN_SCOPE_TO_GRAPH_FF, { accountId, userId }));
|
|
94
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId, shouldNavigateToGraph }, `Graph API routing feature flag: ${shouldNavigateToGraph ? 'ENABLED' : 'DISABLED'}`);
|
|
93
95
|
const internalAuthToken = authorizationInternalService.AuthorizationInternalService.generateInternalAuthToken(accountId, userId);
|
|
94
96
|
const startTime = perf_hooks.performance.now();
|
|
95
97
|
let scopedActionResponseObjects;
|
|
96
98
|
let usedGraphApi = false;
|
|
97
99
|
if (shouldNavigateToGraph) {
|
|
100
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId }, 'Attempting Graph API authorization');
|
|
98
101
|
try {
|
|
99
102
|
scopedActionResponseObjects = await clients_graphApi_client.GraphApiClient.checkPermissions(internalAuthToken, scopedActions);
|
|
100
103
|
usedGraphApi = true;
|
|
104
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId, resultCount: scopedActionResponseObjects.length }, 'Graph API authorization successful');
|
|
101
105
|
}
|
|
102
106
|
catch (error) {
|
|
103
107
|
// Fallback to Platform API if Graph API fails
|
|
@@ -107,13 +111,18 @@ class AuthorizationService {
|
|
|
107
111
|
accountId,
|
|
108
112
|
userId,
|
|
109
113
|
}, 'Graph API authorization failed, falling back to Platform API');
|
|
114
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId }, 'Starting Platform API fallback');
|
|
110
115
|
const profile = this.getProfile(accountId, userId);
|
|
116
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId, profile }, 'Retrieved Platform API profile for fallback');
|
|
111
117
|
scopedActionResponseObjects = await clients_platformApi_client.PlatformApiClient.checkPermissions(profile, internalAuthToken, userId, scopedActions);
|
|
112
118
|
usedGraphApi = false;
|
|
119
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId, resultCount: scopedActionResponseObjects.length }, 'Platform API fallback successful');
|
|
113
120
|
}
|
|
114
121
|
}
|
|
115
122
|
else {
|
|
123
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId }, 'Using Platform API directly (Graph API FF disabled)');
|
|
116
124
|
const profile = this.getProfile(accountId, userId);
|
|
125
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-service', accountId, userId, profile }, 'Retrieved Platform API profile');
|
|
117
126
|
scopedActionResponseObjects = await clients_platformApi_client.PlatformApiClient.checkPermissions(profile, internalAuthToken, userId, scopedActions);
|
|
118
127
|
usedGraphApi = false;
|
|
119
128
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graph-api.client.d.ts","sourceRoot":"","sources":["../../src/clients/graph-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAsB,MAAM,mCAAmC,CAAC;AAGjH,OAAO,EACL,iBAAiB,EACjB,sBAAsB,EAIvB,MAAM,0BAA0B,CAAC;AAMlC;;GAEG;AACH,qBAAa,cAAc;IACzB;;OAEG;IACH,MAAM,CAAC,gBAAgB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,iBAAiB;IAyBzE;;OAEG;WACU,gBAAgB,CAC3B,iBAAiB,EAAE,MAAM,EACzB,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"graph-api.client.d.ts","sourceRoot":"","sources":["../../src/clients/graph-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAsB,MAAM,mCAAmC,CAAC;AAGjH,OAAO,EACL,iBAAiB,EACjB,sBAAsB,EAIvB,MAAM,0BAA0B,CAAC;AAMlC;;GAEG;AACH,qBAAa,cAAc;IACzB;;OAEG;IACH,MAAM,CAAC,gBAAgB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,iBAAiB;IAyBzE;;OAEG;WACU,gBAAgB,CAC3B,iBAAiB,EAAE,MAAM,EACzB,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,sBAAsB,CAAC;IA0ElC;;OAEG;IACH,MAAM,CAAC,WAAW,CAChB,aAAa,EAAE,YAAY,EAAE,EAC7B,aAAa,EAAE,sBAAsB,GACpC,0BAA0B,EAAE;IAkB/B;;OAEG;WACU,gBAAgB,CAC3B,iBAAiB,EAAE,MAAM,EACzB,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;CAIzC"}
|
|
@@ -44,6 +44,15 @@ class GraphApiClient {
|
|
|
44
44
|
const httpClient = tridentBackendApi.Api.getPart('httpClient');
|
|
45
45
|
const attributionHeaders = attributionsService.getAttributionsFromApi();
|
|
46
46
|
const bodyPayload = this.buildRequestBody(scopedActions);
|
|
47
|
+
authorizationInternalService.logger.debug({
|
|
48
|
+
tag: 'graph-api-client',
|
|
49
|
+
scopedActionsCount: scopedActions.length,
|
|
50
|
+
appName: 'authorization-graph',
|
|
51
|
+
path: CAN_ACTION_IN_SCOPE_GRAPH_PATH,
|
|
52
|
+
timeout: authorizationInternalService.AuthorizationInternalService.getRequestTimeout(),
|
|
53
|
+
retryPolicy: authorizationInternalService.AuthorizationInternalService.getRetriesPolicy(),
|
|
54
|
+
bodyPayloadKeys: Object.keys(bodyPayload),
|
|
55
|
+
}, '🔍 Graph API Debug: Starting request');
|
|
47
56
|
try {
|
|
48
57
|
const response = await httpClient.fetch({
|
|
49
58
|
url: {
|
|
@@ -52,7 +61,7 @@ class GraphApiClient {
|
|
|
52
61
|
},
|
|
53
62
|
method: 'POST',
|
|
54
63
|
headers: {
|
|
55
|
-
Authorization: internalAuthToken,
|
|
64
|
+
Authorization: internalAuthToken.substring(0, 20) + '...', // Mask token for security
|
|
56
65
|
'Content-Type': 'application/json',
|
|
57
66
|
...attributionHeaders,
|
|
58
67
|
},
|
|
@@ -61,10 +70,21 @@ class GraphApiClient {
|
|
|
61
70
|
timeout: authorizationInternalService.AuthorizationInternalService.getRequestTimeout(),
|
|
62
71
|
retryPolicy: authorizationInternalService.AuthorizationInternalService.getRetriesPolicy(),
|
|
63
72
|
});
|
|
73
|
+
authorizationInternalService.logger.debug({
|
|
74
|
+
tag: 'graph-api-client',
|
|
75
|
+
responseKeys: Object.keys(response),
|
|
76
|
+
scopedActionsCount: scopedActions.length,
|
|
77
|
+
}, '✅ Graph API Debug: Request successful');
|
|
64
78
|
prometheusService.setGraphAvailability(true);
|
|
65
79
|
return response;
|
|
66
80
|
}
|
|
67
81
|
catch (err) {
|
|
82
|
+
authorizationInternalService.logger.debug({
|
|
83
|
+
tag: 'graph-api-client',
|
|
84
|
+
error: err instanceof Error ? err.message : String(err),
|
|
85
|
+
status: err instanceof mondayFetchApi.HttpFetcherError ? err.status : 'unknown',
|
|
86
|
+
scopedActionsCount: scopedActions.length,
|
|
87
|
+
}, '❌ Graph API Debug: Request failed');
|
|
68
88
|
prometheusService.setGraphAvailability(false);
|
|
69
89
|
if (err instanceof mondayFetchApi.HttpFetcherError) {
|
|
70
90
|
authorizationInternalService.AuthorizationInternalService.throwOnHttpError(err.status, 'canActionInScopeMultiple');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform-api.client.d.ts","sourceRoot":"","sources":["../../src/clients/platform-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE7F,OAAO,EAA0B,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAOlF,KAAK,2BAA2B,GAAG,IAAI,CAAC,YAAY,EAAE,OAAO,CAAC,GAAG;IAC/D,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B,CAAC;AAEF,UAAU,0BAA0B;IAClC,MAAM,EAAE,0BAA0B,EAAE,CAAC;CACtC;AAED;;GAEG;AACH,qBAAa,iBAAiB;IAC5B;;OAEG;IACH,MAAM,CAAC,mBAAmB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,2BAA2B,EAAE;IAOxF;;OAEG;WACU,gBAAgB,CAC3B,OAAO,EAAE,eAAe,EACxB,iBAAiB,EAAE,MAAM,EACzB,MAAM,EAAE,MAAM,EACd,oBAAoB,EAAE,2BAA2B,EAAE,GAClD,OAAO,CAAC,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"platform-api.client.d.ts","sourceRoot":"","sources":["../../src/clients/platform-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE7F,OAAO,EAA0B,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAOlF,KAAK,2BAA2B,GAAG,IAAI,CAAC,YAAY,EAAE,OAAO,CAAC,GAAG;IAC/D,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B,CAAC;AAEF,UAAU,0BAA0B;IAClC,MAAM,EAAE,0BAA0B,EAAE,CAAC;CACtC;AAED;;GAEG;AACH,qBAAa,iBAAiB;IAC5B;;OAEG;IACH,MAAM,CAAC,mBAAmB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,2BAA2B,EAAE;IAOxF;;OAEG;WACU,gBAAgB,CAC3B,OAAO,EAAE,eAAe,EACxB,iBAAiB,EAAE,MAAM,EACzB,MAAM,EAAE,MAAM,EACd,oBAAoB,EAAE,2BAA2B,EAAE,GAClD,OAAO,CAAC,0BAA0B,CAAC;IA2EtC;;OAEG;IACH,MAAM,CAAC,WAAW,CAAC,QAAQ,EAAE,0BAA0B,GAAG,0BAA0B,EAAE;IAkBtF;;OAEG;WACU,gBAAgB,CAC3B,OAAO,EAAE,eAAe,EACxB,iBAAiB,EAAE,MAAM,EACzB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;CAKzC"}
|
|
@@ -27,6 +27,16 @@ class PlatformApiClient {
|
|
|
27
27
|
static async fetchPermissions(profile, internalAuthToken, userId, scopedActionsPayload) {
|
|
28
28
|
const attributionHeaders = attributionsService.getAttributionsFromApi();
|
|
29
29
|
const httpClient = tridentBackendApi.Api.getPart('httpClient');
|
|
30
|
+
authorizationInternalService.logger.debug({
|
|
31
|
+
tag: 'platform-api-client',
|
|
32
|
+
profile,
|
|
33
|
+
userId,
|
|
34
|
+
scopedActionsCount: scopedActionsPayload.length,
|
|
35
|
+
appName: 'platform',
|
|
36
|
+
path: PLATFORM_CAN_ACTIONS_IN_SCOPES_PATH,
|
|
37
|
+
timeout: authorizationInternalService.AuthorizationInternalService.getRequestTimeout(),
|
|
38
|
+
retryPolicy: authorizationInternalService.AuthorizationInternalService.getRetriesPolicy(),
|
|
39
|
+
}, '🔍 Platform API Debug: Starting request');
|
|
30
40
|
try {
|
|
31
41
|
const response = await httpClient.fetch({
|
|
32
42
|
url: {
|
|
@@ -36,7 +46,7 @@ class PlatformApiClient {
|
|
|
36
46
|
},
|
|
37
47
|
method: 'POST',
|
|
38
48
|
headers: {
|
|
39
|
-
Authorization: internalAuthToken,
|
|
49
|
+
Authorization: internalAuthToken.substring(0, 20) + '...', // Mask token for security
|
|
40
50
|
'Content-Type': 'application/json',
|
|
41
51
|
...attributionHeaders,
|
|
42
52
|
},
|
|
@@ -45,9 +55,22 @@ class PlatformApiClient {
|
|
|
45
55
|
timeout: authorizationInternalService.AuthorizationInternalService.getRequestTimeout(),
|
|
46
56
|
retryPolicy: authorizationInternalService.AuthorizationInternalService.getRetriesPolicy(),
|
|
47
57
|
});
|
|
58
|
+
authorizationInternalService.logger.debug({
|
|
59
|
+
tag: 'platform-api-client',
|
|
60
|
+
hasResult: !!response.result,
|
|
61
|
+
resultCount: response.result?.length || 0,
|
|
62
|
+
}, '✅ Platform API Debug: Request successful');
|
|
48
63
|
return response;
|
|
49
64
|
}
|
|
50
65
|
catch (err) {
|
|
66
|
+
authorizationInternalService.logger.debug({
|
|
67
|
+
tag: 'platform-api-client',
|
|
68
|
+
error: err instanceof Error ? err.message : String(err),
|
|
69
|
+
status: err instanceof mondayFetchApi.HttpFetcherError ? err.status : 'unknown',
|
|
70
|
+
profile,
|
|
71
|
+
userId,
|
|
72
|
+
scopedActionsCount: scopedActionsPayload.length,
|
|
73
|
+
}, '❌ Platform API Debug: Request failed');
|
|
51
74
|
if (err instanceof mondayFetchApi.HttpFetcherError) {
|
|
52
75
|
authorizationInternalService.AuthorizationInternalService.throwOnHttpError(err.status, 'canActionInScopeMultiple');
|
|
53
76
|
prometheusService.incrementAuthorizationError(utils_authorization_utils.scopeToResource(utils_authorization_utils.toCamelCase(scopedActionsPayload[0].scope)).resourceType, scopedActionsPayload[0].action, err.status);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authorization-service.d.ts","sourceRoot":"","sources":["../../src/authorization-service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAAmB,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE7F,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,0BAA0B,EAC1B,YAAY,EACb,MAAM,kCAAkC,CAAC;AAe1C,MAAM,WAAW,iBAAiB;IAChC,YAAY,EAAE,OAAO,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,mBAAmB,CAAC,EAAE,mBAAmB,EAAE,CAAC;CAC7C;AAED,wBAAgB,sBAAsB,CAAC,wBAAwB,EAAE,kBAAkB,QAElF;AAMD,qBAAa,oBAAoB;IAC/B,MAAM,CAAC,WAAW,CAAC,MAAC;IACpB,MAAM,CAAC,sCAAsC,CAAC,EAAE,MAAM,CAAC;IACvD,MAAM,CAAC,YAAY,CAAC,EAAE,YAAY,CAAC;IAEnC;;;OAGG;WACU,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,QAAQ,EAAE,EACrB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,iBAAiB,CAAC;WAEhB,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,2BAA2B,EAAE,mBAAmB,EAAE,GACjD,OAAO,CAAC,iBAAiB,CAAC;IAY7B;;;OAGG;WACU,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE;QAAE,eAAe,CAAC,EAAE,OAAO,CAAA;KAAO,GAC1C,OAAO,CAAC,OAAO,CAAC;mBAkBE,6BAA6B;IAclD,OAAO,CAAC,MAAM,CAAC,gBAAgB;WAIlB,gBAAgB,CAC3B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,YAAY,GAClB,OAAO,CAAC,kBAAkB,CAAC;IAM9B,OAAO,CAAC,MAAM,CAAC,UAAU;WAsBZ,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"authorization-service.d.ts","sourceRoot":"","sources":["../../src/authorization-service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAGnE,OAAO,EAAmB,YAAY,EAAE,MAAM,6BAA6B,CAAC;AAC5E,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE7F,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,0BAA0B,EAC1B,YAAY,EACb,MAAM,kCAAkC,CAAC;AAe1C,MAAM,WAAW,iBAAiB;IAChC,YAAY,EAAE,OAAO,CAAC;IACtB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,mBAAmB,CAAC,EAAE,mBAAmB,EAAE,CAAC;CAC7C;AAED,wBAAgB,sBAAsB,CAAC,wBAAwB,EAAE,kBAAkB,QAElF;AAMD,qBAAa,oBAAoB;IAC/B,MAAM,CAAC,WAAW,CAAC,MAAC;IACpB,MAAM,CAAC,sCAAsC,CAAC,EAAE,MAAM,CAAC;IACvD,MAAM,CAAC,YAAY,CAAC,EAAE,YAAY,CAAC;IAEnC;;;OAGG;WACU,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,QAAQ,EAAE,EACrB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,iBAAiB,CAAC;WAEhB,YAAY,CACvB,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,2BAA2B,EAAE,mBAAmB,EAAE,GACjD,OAAO,CAAC,iBAAiB,CAAC;IAY7B;;;OAGG;WACU,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,EACnB,OAAO,GAAE;QAAE,eAAe,CAAC,EAAE,OAAO,CAAA;KAAO,GAC1C,OAAO,CAAC,OAAO,CAAC;mBAkBE,6BAA6B;IAclD,OAAO,CAAC,MAAM,CAAC,gBAAgB;WAIlB,gBAAgB,CAC3B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,YAAY,GAClB,OAAO,CAAC,kBAAkB,CAAC;IAM9B,OAAO,CAAC,MAAM,CAAC,UAAU;WAsBZ,wBAAwB,CACnC,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;mBA6FnB,oBAAoB;mBAUpB,oBAAoB;CAoF1C;AAED,wBAAgB,cAAc,CAC5B,MAAM,KAAA,EACN,sCAAsC,GAAE,MAAiD,QAY1F;AAED,wBAAsB,eAAe,kBAMpC;AAED,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,QAAQ,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,mBAAmB,CAepG"}
|
|
@@ -87,15 +87,19 @@ class AuthorizationService {
|
|
|
87
87
|
return PlatformProfile.INTERNAL;
|
|
88
88
|
}
|
|
89
89
|
static async canActionInScopeMultiple(accountId, userId, scopedActions) {
|
|
90
|
+
logger.debug({ tag: 'authorization-service', accountId, userId, scopedActionsCount: scopedActions.length }, 'canActionInScopeMultiple called');
|
|
90
91
|
const shouldNavigateToGraph = Boolean(this.igniteClient?.isReleased(NAVIGATE_CAN_ACTION_IN_SCOPE_TO_GRAPH_FF, { accountId, userId }));
|
|
92
|
+
logger.debug({ tag: 'authorization-service', accountId, userId, shouldNavigateToGraph }, `Graph API routing feature flag: ${shouldNavigateToGraph ? 'ENABLED' : 'DISABLED'}`);
|
|
91
93
|
const internalAuthToken = AuthorizationInternalService.generateInternalAuthToken(accountId, userId);
|
|
92
94
|
const startTime = performance.now();
|
|
93
95
|
let scopedActionResponseObjects;
|
|
94
96
|
let usedGraphApi = false;
|
|
95
97
|
if (shouldNavigateToGraph) {
|
|
98
|
+
logger.debug({ tag: 'authorization-service', accountId, userId }, 'Attempting Graph API authorization');
|
|
96
99
|
try {
|
|
97
100
|
scopedActionResponseObjects = await GraphApiClient.checkPermissions(internalAuthToken, scopedActions);
|
|
98
101
|
usedGraphApi = true;
|
|
102
|
+
logger.debug({ tag: 'authorization-service', accountId, userId, resultCount: scopedActionResponseObjects.length }, 'Graph API authorization successful');
|
|
99
103
|
}
|
|
100
104
|
catch (error) {
|
|
101
105
|
// Fallback to Platform API if Graph API fails
|
|
@@ -105,13 +109,18 @@ class AuthorizationService {
|
|
|
105
109
|
accountId,
|
|
106
110
|
userId,
|
|
107
111
|
}, 'Graph API authorization failed, falling back to Platform API');
|
|
112
|
+
logger.debug({ tag: 'authorization-service', accountId, userId }, 'Starting Platform API fallback');
|
|
108
113
|
const profile = this.getProfile(accountId, userId);
|
|
114
|
+
logger.debug({ tag: 'authorization-service', accountId, userId, profile }, 'Retrieved Platform API profile for fallback');
|
|
109
115
|
scopedActionResponseObjects = await PlatformApiClient.checkPermissions(profile, internalAuthToken, userId, scopedActions);
|
|
110
116
|
usedGraphApi = false;
|
|
117
|
+
logger.debug({ tag: 'authorization-service', accountId, userId, resultCount: scopedActionResponseObjects.length }, 'Platform API fallback successful');
|
|
111
118
|
}
|
|
112
119
|
}
|
|
113
120
|
else {
|
|
121
|
+
logger.debug({ tag: 'authorization-service', accountId, userId }, 'Using Platform API directly (Graph API FF disabled)');
|
|
114
122
|
const profile = this.getProfile(accountId, userId);
|
|
123
|
+
logger.debug({ tag: 'authorization-service', accountId, userId, profile }, 'Retrieved Platform API profile');
|
|
115
124
|
scopedActionResponseObjects = await PlatformApiClient.checkPermissions(profile, internalAuthToken, userId, scopedActions);
|
|
116
125
|
usedGraphApi = false;
|
|
117
126
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graph-api.client.d.ts","sourceRoot":"","sources":["../../../src/clients/graph-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAsB,MAAM,mCAAmC,CAAC;AAGjH,OAAO,EACL,iBAAiB,EACjB,sBAAsB,EAIvB,MAAM,0BAA0B,CAAC;AAMlC;;GAEG;AACH,qBAAa,cAAc;IACzB;;OAEG;IACH,MAAM,CAAC,gBAAgB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,iBAAiB;IAyBzE;;OAEG;WACU,gBAAgB,CAC3B,iBAAiB,EAAE,MAAM,EACzB,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"graph-api.client.d.ts","sourceRoot":"","sources":["../../../src/clients/graph-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAsB,MAAM,mCAAmC,CAAC;AAGjH,OAAO,EACL,iBAAiB,EACjB,sBAAsB,EAIvB,MAAM,0BAA0B,CAAC;AAMlC;;GAEG;AACH,qBAAa,cAAc;IACzB;;OAEG;IACH,MAAM,CAAC,gBAAgB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,iBAAiB;IAyBzE;;OAEG;WACU,gBAAgB,CAC3B,iBAAiB,EAAE,MAAM,EACzB,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,sBAAsB,CAAC;IA0ElC;;OAEG;IACH,MAAM,CAAC,WAAW,CAChB,aAAa,EAAE,YAAY,EAAE,EAC7B,aAAa,EAAE,sBAAsB,GACpC,0BAA0B,EAAE;IAkB/B;;OAEG;WACU,gBAAgB,CAC3B,iBAAiB,EAAE,MAAM,EACzB,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;CAIzC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Api } from '@mondaydotcomorg/trident-backend-api';
|
|
2
2
|
import { HttpFetcherError } from '@mondaydotcomorg/monday-fetch-api';
|
|
3
|
-
import { AuthorizationInternalService } from '../authorization-internal-service.mjs';
|
|
3
|
+
import { logger, AuthorizationInternalService } from '../authorization-internal-service.mjs';
|
|
4
4
|
import { getAttributionsFromApi } from '../attributions-service.mjs';
|
|
5
5
|
import { scopeToResource } from '../utils/authorization.utils.mjs';
|
|
6
6
|
import { setGraphAvailability, incrementAuthorizationError } from '../prometheus-service.mjs';
|
|
@@ -42,6 +42,15 @@ class GraphApiClient {
|
|
|
42
42
|
const httpClient = Api.getPart('httpClient');
|
|
43
43
|
const attributionHeaders = getAttributionsFromApi();
|
|
44
44
|
const bodyPayload = this.buildRequestBody(scopedActions);
|
|
45
|
+
logger.debug({
|
|
46
|
+
tag: 'graph-api-client',
|
|
47
|
+
scopedActionsCount: scopedActions.length,
|
|
48
|
+
appName: 'authorization-graph',
|
|
49
|
+
path: CAN_ACTION_IN_SCOPE_GRAPH_PATH,
|
|
50
|
+
timeout: AuthorizationInternalService.getRequestTimeout(),
|
|
51
|
+
retryPolicy: AuthorizationInternalService.getRetriesPolicy(),
|
|
52
|
+
bodyPayloadKeys: Object.keys(bodyPayload),
|
|
53
|
+
}, '🔍 Graph API Debug: Starting request');
|
|
45
54
|
try {
|
|
46
55
|
const response = await httpClient.fetch({
|
|
47
56
|
url: {
|
|
@@ -50,7 +59,7 @@ class GraphApiClient {
|
|
|
50
59
|
},
|
|
51
60
|
method: 'POST',
|
|
52
61
|
headers: {
|
|
53
|
-
Authorization: internalAuthToken,
|
|
62
|
+
Authorization: internalAuthToken.substring(0, 20) + '...', // Mask token for security
|
|
54
63
|
'Content-Type': 'application/json',
|
|
55
64
|
...attributionHeaders,
|
|
56
65
|
},
|
|
@@ -59,10 +68,21 @@ class GraphApiClient {
|
|
|
59
68
|
timeout: AuthorizationInternalService.getRequestTimeout(),
|
|
60
69
|
retryPolicy: AuthorizationInternalService.getRetriesPolicy(),
|
|
61
70
|
});
|
|
71
|
+
logger.debug({
|
|
72
|
+
tag: 'graph-api-client',
|
|
73
|
+
responseKeys: Object.keys(response),
|
|
74
|
+
scopedActionsCount: scopedActions.length,
|
|
75
|
+
}, '✅ Graph API Debug: Request successful');
|
|
62
76
|
setGraphAvailability(true);
|
|
63
77
|
return response;
|
|
64
78
|
}
|
|
65
79
|
catch (err) {
|
|
80
|
+
logger.debug({
|
|
81
|
+
tag: 'graph-api-client',
|
|
82
|
+
error: err instanceof Error ? err.message : String(err),
|
|
83
|
+
status: err instanceof HttpFetcherError ? err.status : 'unknown',
|
|
84
|
+
scopedActionsCount: scopedActions.length,
|
|
85
|
+
}, '❌ Graph API Debug: Request failed');
|
|
66
86
|
setGraphAvailability(false);
|
|
67
87
|
if (err instanceof HttpFetcherError) {
|
|
68
88
|
AuthorizationInternalService.throwOnHttpError(err.status, 'canActionInScopeMultiple');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform-api.client.d.ts","sourceRoot":"","sources":["../../../src/clients/platform-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE7F,OAAO,EAA0B,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAOlF,KAAK,2BAA2B,GAAG,IAAI,CAAC,YAAY,EAAE,OAAO,CAAC,GAAG;IAC/D,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B,CAAC;AAEF,UAAU,0BAA0B;IAClC,MAAM,EAAE,0BAA0B,EAAE,CAAC;CACtC;AAED;;GAEG;AACH,qBAAa,iBAAiB;IAC5B;;OAEG;IACH,MAAM,CAAC,mBAAmB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,2BAA2B,EAAE;IAOxF;;OAEG;WACU,gBAAgB,CAC3B,OAAO,EAAE,eAAe,EACxB,iBAAiB,EAAE,MAAM,EACzB,MAAM,EAAE,MAAM,EACd,oBAAoB,EAAE,2BAA2B,EAAE,GAClD,OAAO,CAAC,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"platform-api.client.d.ts","sourceRoot":"","sources":["../../../src/clients/platform-api.client.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAE7F,OAAO,EAA0B,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAOlF,KAAK,2BAA2B,GAAG,IAAI,CAAC,YAAY,EAAE,OAAO,CAAC,GAAG;IAC/D,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B,CAAC;AAEF,UAAU,0BAA0B;IAClC,MAAM,EAAE,0BAA0B,EAAE,CAAC;CACtC;AAED;;GAEG;AACH,qBAAa,iBAAiB;IAC5B;;OAEG;IACH,MAAM,CAAC,mBAAmB,CAAC,aAAa,EAAE,YAAY,EAAE,GAAG,2BAA2B,EAAE;IAOxF;;OAEG;WACU,gBAAgB,CAC3B,OAAO,EAAE,eAAe,EACxB,iBAAiB,EAAE,MAAM,EACzB,MAAM,EAAE,MAAM,EACd,oBAAoB,EAAE,2BAA2B,EAAE,GAClD,OAAO,CAAC,0BAA0B,CAAC;IA2EtC;;OAEG;IACH,MAAM,CAAC,WAAW,CAAC,QAAQ,EAAE,0BAA0B,GAAG,0BAA0B,EAAE;IAkBtF;;OAEG;WACU,gBAAgB,CAC3B,OAAO,EAAE,eAAe,EACxB,iBAAiB,EAAE,MAAM,EACzB,MAAM,EAAE,MAAM,EACd,aAAa,EAAE,YAAY,EAAE,GAC5B,OAAO,CAAC,0BAA0B,EAAE,CAAC;CAKzC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Api } from '@mondaydotcomorg/trident-backend-api';
|
|
2
2
|
import { HttpFetcherError } from '@mondaydotcomorg/monday-fetch-api';
|
|
3
|
-
import {
|
|
3
|
+
import { logger, AuthorizationInternalService } from '../authorization-internal-service.mjs';
|
|
4
4
|
import { getAttributionsFromApi } from '../attributions-service.mjs';
|
|
5
5
|
import { toSnakeCase, scopeToResource, toCamelCase } from '../utils/authorization.utils.mjs';
|
|
6
6
|
import { incrementAuthorizationError } from '../prometheus-service.mjs';
|
|
@@ -25,6 +25,16 @@ class PlatformApiClient {
|
|
|
25
25
|
static async fetchPermissions(profile, internalAuthToken, userId, scopedActionsPayload) {
|
|
26
26
|
const attributionHeaders = getAttributionsFromApi();
|
|
27
27
|
const httpClient = Api.getPart('httpClient');
|
|
28
|
+
logger.debug({
|
|
29
|
+
tag: 'platform-api-client',
|
|
30
|
+
profile,
|
|
31
|
+
userId,
|
|
32
|
+
scopedActionsCount: scopedActionsPayload.length,
|
|
33
|
+
appName: 'platform',
|
|
34
|
+
path: PLATFORM_CAN_ACTIONS_IN_SCOPES_PATH,
|
|
35
|
+
timeout: AuthorizationInternalService.getRequestTimeout(),
|
|
36
|
+
retryPolicy: AuthorizationInternalService.getRetriesPolicy(),
|
|
37
|
+
}, '🔍 Platform API Debug: Starting request');
|
|
28
38
|
try {
|
|
29
39
|
const response = await httpClient.fetch({
|
|
30
40
|
url: {
|
|
@@ -34,7 +44,7 @@ class PlatformApiClient {
|
|
|
34
44
|
},
|
|
35
45
|
method: 'POST',
|
|
36
46
|
headers: {
|
|
37
|
-
Authorization: internalAuthToken,
|
|
47
|
+
Authorization: internalAuthToken.substring(0, 20) + '...', // Mask token for security
|
|
38
48
|
'Content-Type': 'application/json',
|
|
39
49
|
...attributionHeaders,
|
|
40
50
|
},
|
|
@@ -43,9 +53,22 @@ class PlatformApiClient {
|
|
|
43
53
|
timeout: AuthorizationInternalService.getRequestTimeout(),
|
|
44
54
|
retryPolicy: AuthorizationInternalService.getRetriesPolicy(),
|
|
45
55
|
});
|
|
56
|
+
logger.debug({
|
|
57
|
+
tag: 'platform-api-client',
|
|
58
|
+
hasResult: !!response.result,
|
|
59
|
+
resultCount: response.result?.length || 0,
|
|
60
|
+
}, '✅ Platform API Debug: Request successful');
|
|
46
61
|
return response;
|
|
47
62
|
}
|
|
48
63
|
catch (err) {
|
|
64
|
+
logger.debug({
|
|
65
|
+
tag: 'platform-api-client',
|
|
66
|
+
error: err instanceof Error ? err.message : String(err),
|
|
67
|
+
status: err instanceof HttpFetcherError ? err.status : 'unknown',
|
|
68
|
+
profile,
|
|
69
|
+
userId,
|
|
70
|
+
scopedActionsCount: scopedActionsPayload.length,
|
|
71
|
+
}, '❌ Platform API Debug: Request failed');
|
|
49
72
|
if (err instanceof HttpFetcherError) {
|
|
50
73
|
AuthorizationInternalService.throwOnHttpError(err.status, 'canActionInScopeMultiple');
|
|
51
74
|
incrementAuthorizationError(scopeToResource(toCamelCase(scopedActionsPayload[0].scope)).resourceType, scopedActionsPayload[0].action, err.status);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authorization.utils.d.ts","sourceRoot":"","sources":["../../../src/utils/authorization.utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"authorization.utils.d.ts","sourceRoot":"","sources":["../../../src/utils/authorization.utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGpE,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,GAAG,CAAC,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;AACpH,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,CAAC,SAAS,MAAM,GAC3C;KAAG,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,SAAS,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GAC9E,CAAC,CAAC;AAEN;;GAEG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG;IAAE,YAAY,EAAE,YAAY,CAAC;IAAC,UAAU,EAAE,UAAU,CAAA;CAAE,CAoC3G;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,CAAC,SAAS,MAAM,EAAE,GAAG,EAAE,CAAC,GAAG,aAAa,CAAC,CAAC,CAAC,CAEtE;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,CAAC,SAAS,MAAM,EAAE,GAAG,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAEzE"}
|
|
@@ -1,26 +1,38 @@
|
|
|
1
1
|
import snakeCase from 'lodash/snakeCase.js';
|
|
2
2
|
import camelCase from 'lodash/camelCase.js';
|
|
3
3
|
import mapKeys from 'lodash/mapKeys.js';
|
|
4
|
+
import { logger } from '../authorization-internal-service.mjs';
|
|
4
5
|
|
|
5
6
|
/**
|
|
6
7
|
* Converts a scope object to resource type and resource ID
|
|
7
8
|
*/
|
|
8
9
|
function scopeToResource(scope) {
|
|
10
|
+
logger.debug({
|
|
11
|
+
tag: 'authorization-utils',
|
|
12
|
+
scopeKeys: Object.keys(scope),
|
|
13
|
+
scopeValues: Object.values(scope),
|
|
14
|
+
}, '🔍 Utils Debug: Converting scope to resource');
|
|
9
15
|
if ('workspaceId' in scope) {
|
|
16
|
+
logger.debug({ tag: 'authorization-utils', resourceId: scope.workspaceId }, '🔍 Utils Debug: Mapped to workspace');
|
|
10
17
|
return { resourceType: 'workspace', resourceId: scope.workspaceId };
|
|
11
18
|
}
|
|
12
19
|
if ('boardId' in scope) {
|
|
20
|
+
logger.debug({ tag: 'authorization-utils', resourceId: scope.boardId }, '🔍 Utils Debug: Mapped to board');
|
|
13
21
|
return { resourceType: 'board', resourceId: scope.boardId };
|
|
14
22
|
}
|
|
15
23
|
if ('pulseId' in scope) {
|
|
24
|
+
logger.debug({ tag: 'authorization-utils', resourceId: scope.pulseId }, '🔍 Utils Debug: Mapped to pulse');
|
|
16
25
|
return { resourceType: 'pulse', resourceId: scope.pulseId };
|
|
17
26
|
}
|
|
18
27
|
if ('accountProductId' in scope) {
|
|
28
|
+
logger.debug({ tag: 'authorization-utils', resourceId: scope.accountProductId }, '🔍 Utils Debug: Mapped to account_product');
|
|
19
29
|
return { resourceType: 'account_product', resourceId: scope.accountProductId };
|
|
20
30
|
}
|
|
21
31
|
if ('accountId' in scope) {
|
|
32
|
+
logger.debug({ tag: 'authorization-utils', resourceId: scope.accountId }, '🔍 Utils Debug: Mapped to account');
|
|
22
33
|
return { resourceType: 'account', resourceId: scope.accountId };
|
|
23
34
|
}
|
|
35
|
+
logger.debug({ tag: 'authorization-utils', scope }, '❌ Utils Debug: Unsupported scope provided');
|
|
24
36
|
throw new Error('Unsupported scope provided');
|
|
25
37
|
}
|
|
26
38
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authorization.utils.d.ts","sourceRoot":"","sources":["../../src/utils/authorization.utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"authorization.utils.d.ts","sourceRoot":"","sources":["../../src/utils/authorization.utils.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,mCAAmC,CAAC;AACjE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGpE,MAAM,MAAM,SAAS,CAAC,CAAC,SAAS,MAAM,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,IAAI,MAAM,CAAC,EAAE,GAAG,GAAG,CAAC,GAAG,UAAU,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;AACpH,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,CAAC,SAAS,MAAM,GAC3C;KAAG,CAAC,IAAI,MAAM,CAAC,IAAI,CAAC,SAAS,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;CAAE,GAC9E,CAAC,CAAC;AAEN;;GAEG;AACH,wBAAgB,eAAe,CAAC,KAAK,EAAE,YAAY,GAAG;IAAE,YAAY,EAAE,YAAY,CAAC;IAAC,UAAU,EAAE,UAAU,CAAA;CAAE,CAoC3G;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,CAAC,SAAS,MAAM,EAAE,GAAG,EAAE,CAAC,GAAG,aAAa,CAAC,CAAC,CAAC,CAEtE;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,CAAC,SAAS,MAAM,EAAE,GAAG,EAAE,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAEzE"}
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
3
3
|
const snakeCase = require('lodash/snakeCase.js');
|
|
4
4
|
const camelCase = require('lodash/camelCase.js');
|
|
5
5
|
const mapKeys = require('lodash/mapKeys.js');
|
|
6
|
+
const authorizationInternalService = require('../authorization-internal-service.js');
|
|
6
7
|
|
|
7
8
|
const _interopDefault = e => e && e.__esModule ? e : { default: e };
|
|
8
9
|
|
|
@@ -14,21 +15,32 @@ const mapKeys__default = /*#__PURE__*/_interopDefault(mapKeys);
|
|
|
14
15
|
* Converts a scope object to resource type and resource ID
|
|
15
16
|
*/
|
|
16
17
|
function scopeToResource(scope) {
|
|
18
|
+
authorizationInternalService.logger.debug({
|
|
19
|
+
tag: 'authorization-utils',
|
|
20
|
+
scopeKeys: Object.keys(scope),
|
|
21
|
+
scopeValues: Object.values(scope),
|
|
22
|
+
}, '🔍 Utils Debug: Converting scope to resource');
|
|
17
23
|
if ('workspaceId' in scope) {
|
|
24
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-utils', resourceId: scope.workspaceId }, '🔍 Utils Debug: Mapped to workspace');
|
|
18
25
|
return { resourceType: 'workspace', resourceId: scope.workspaceId };
|
|
19
26
|
}
|
|
20
27
|
if ('boardId' in scope) {
|
|
28
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-utils', resourceId: scope.boardId }, '🔍 Utils Debug: Mapped to board');
|
|
21
29
|
return { resourceType: 'board', resourceId: scope.boardId };
|
|
22
30
|
}
|
|
23
31
|
if ('pulseId' in scope) {
|
|
32
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-utils', resourceId: scope.pulseId }, '🔍 Utils Debug: Mapped to pulse');
|
|
24
33
|
return { resourceType: 'pulse', resourceId: scope.pulseId };
|
|
25
34
|
}
|
|
26
35
|
if ('accountProductId' in scope) {
|
|
36
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-utils', resourceId: scope.accountProductId }, '🔍 Utils Debug: Mapped to account_product');
|
|
27
37
|
return { resourceType: 'account_product', resourceId: scope.accountProductId };
|
|
28
38
|
}
|
|
29
39
|
if ('accountId' in scope) {
|
|
40
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-utils', resourceId: scope.accountId }, '🔍 Utils Debug: Mapped to account');
|
|
30
41
|
return { resourceType: 'account', resourceId: scope.accountId };
|
|
31
42
|
}
|
|
43
|
+
authorizationInternalService.logger.debug({ tag: 'authorization-utils', scope }, '❌ Utils Debug: Unsupported scope provided');
|
|
32
44
|
throw new Error('Unsupported scope provided');
|
|
33
45
|
}
|
|
34
46
|
/**
|