@zerosls/clm-sdk 1.1.9 → 2.0.0

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.
@@ -1,4 +1,3 @@
1
- // core/api-client.ts
2
1
  import { SdkConfig, SdkEventType, SdkEvents } from "../types/sdk";
3
2
  import { PaginatedResponse, RequestOptions } from "../types/common";
4
3
  import { EventEmitter } from "./event-emitter";
@@ -13,7 +12,6 @@ import {
13
12
 
14
13
  export class ApiClient {
15
14
  private baseUrl: string;
16
- private fallbackBaseUrl: string; // ✅ URL de respaldo
17
15
  private organization: string;
18
16
  private token: string | null = null;
19
17
  private eventEmitter: EventEmitter;
@@ -24,8 +22,6 @@ export class ApiClient {
24
22
 
25
23
  constructor(config: SdkConfig, eventEmitter: EventEmitter) {
26
24
  this.baseUrl = config.baseUrl;
27
- this.fallbackBaseUrl =
28
- config.fallbackBaseUrl || "http://216.250.117.119/ZeroServicesQA/api/v1";
29
25
  this.organization = config.organization;
30
26
  this.token = config.token || null;
31
27
  this.eventEmitter = eventEmitter;
@@ -126,185 +122,6 @@ export class ApiClient {
126
122
  }
127
123
  }
128
124
 
129
- /*private async request<T>(
130
- method: string,
131
- endpoint: string,
132
- data?: any,
133
- params?: Record<string, any>,
134
- options: RequestOptions = {}
135
- ): Promise<T> {
136
- // ✅ Primer intento con baseUrl normal
137
- const primaryUrl = buildUrl(this.baseUrl, endpoint, params);
138
-
139
- const base: HeadersInit = buildHeaders(this.token, {
140
- "X-Organization": this.organization,
141
- ...(options.headers || {}),
142
- });
143
-
144
- const headers = new Headers(base);
145
-
146
- // ✅ Obtener token legacy
147
- const legacyToken =
148
- (window as any).__LEGACY_TOKEN__ ||
149
- sessionStorage.getItem("legacy_token") ||
150
- null;
151
-
152
- if (legacyToken) {
153
- headers.set("Authorization", `Bearer ${legacyToken}`);
154
- if (this.debug) {
155
- console.log("🔐 Using legacy token for:", endpoint);
156
- }
157
- } else if (this.token) {
158
- if (this.debug) {
159
- console.log("🔐 Using v1 token for:", endpoint);
160
- }
161
- } else {
162
- console.warn("⚠️ No token available for endpoint:", endpoint);
163
- }
164
-
165
- const useCache = this.cacheEnabled && options.useCache !== false;
166
- if (useCache && method === "GET") {
167
- const cacheKey = generateCacheKey(method, primaryUrl, data);
168
- const cachedData = this.cache.get<T>(cacheKey);
169
- if (cachedData) {
170
- if (this.debug) {
171
- console.log(`[SDK-Cache] Hit: ${cacheKey}`);
172
- }
173
- return cachedData;
174
- }
175
- }
176
-
177
- this.eventEmitter.emit("beforeRequest", {
178
- url: primaryUrl,
179
- method,
180
- data,
181
- });
182
-
183
- try {
184
- const fetchOptions: RequestInit = {
185
- method,
186
- headers,
187
- credentials: "include",
188
- };
189
-
190
- if (data && method !== "GET") {
191
- fetchOptions.body = JSON.stringify(data);
192
- if (this.debug) {
193
- console.log(`📤 ${method} Body:`, data);
194
- }
195
- }
196
-
197
- if (this.debug) {
198
- console.log(`🌐 ${method} ${primaryUrl}`);
199
- }
200
-
201
- // ✅ Primer intento
202
- const response = await fetch(primaryUrl, fetchOptions);
203
-
204
- // ✅ Si es 404, intentar con fallback URL
205
- if (response.status === 404) {
206
- console.warn(`⚠️ 404 en ${primaryUrl}, intentando con fallback...`);
207
-
208
- const fallbackUrl = buildUrl(this.fallbackBaseUrl, endpoint, params);
209
-
210
- if (this.debug) {
211
- console.log(`🔄 Retry: ${method} ${fallbackUrl}`);
212
- }
213
-
214
- // ✅ Segundo intento con fallback
215
- const fallbackResponse = await fetch(fallbackUrl, fetchOptions);
216
-
217
- if (!fallbackResponse.ok) {
218
- let errorData;
219
- try {
220
- errorData = await fallbackResponse.json();
221
- } catch {
222
- errorData = { message: fallbackResponse.statusText };
223
- }
224
-
225
- console.error(`❌ Fallback también falló ${fallbackResponse.status}:`, errorData);
226
-
227
- if (fallbackResponse.status === 401) {
228
- this.eventEmitter.emit("authError", {
229
- statusCode: 401,
230
- message: errorData.message || "Authentication required",
231
- });
232
- }
233
-
234
- return errorData as T;
235
- }
236
-
237
- // ✅ Fallback exitoso
238
- const fallbackData = await parseResponse<T>(fallbackResponse);
239
-
240
- console.log(`✅ Fallback exitoso para: ${endpoint}`);
241
-
242
- this.eventEmitter.emit("afterRequest", {
243
- url: fallbackUrl,
244
- method,
245
- response: fallbackData,
246
- });
247
-
248
- return fallbackData;
249
- }
250
-
251
- // ✅ Otros errores (no 404)
252
- if (!response.ok) {
253
- let errorData;
254
- try {
255
- errorData = await response.json();
256
- } catch {
257
- errorData = { message: response.statusText };
258
- }
259
-
260
- console.error(`❌ ${method} ${response.status}:`, errorData);
261
-
262
- if (response.status === 401) {
263
- this.eventEmitter.emit("authError", {
264
- statusCode: 401,
265
- message: errorData.message || "Authentication required",
266
- });
267
- }
268
-
269
- return errorData as T;
270
- }
271
-
272
- // ✅ Respuesta exitosa del primer intento
273
- const responseData = await parseResponse<T>(response);
274
-
275
- if (useCache && method === "GET") {
276
- const cacheKey = generateCacheKey(method, primaryUrl, data);
277
- const cacheTime = options.cacheTime || undefined;
278
- this.cache.set(cacheKey, responseData, cacheTime);
279
-
280
- if (this.debug) {
281
- console.log(`[SDK-Cache] Set: ${cacheKey}`);
282
- }
283
- }
284
-
285
- this.eventEmitter.emit("afterRequest", {
286
- url: primaryUrl,
287
- method,
288
- response: responseData,
289
- });
290
-
291
- return responseData;
292
- } catch (error) {
293
- this.eventEmitter.emit("requestError", {
294
- url: primaryUrl,
295
- method,
296
- error,
297
- });
298
-
299
- if (error instanceof ApiError) {
300
- throw error;
301
- }
302
-
303
- throw new ApiError((error as Error).message || "Network error", 0, {
304
- originalError: error,
305
- });
306
- }
307
- }*/
308
125
  private async request<T>(
309
126
  method: string,
310
127
  endpoint: string,
@@ -312,49 +129,38 @@ export class ApiClient {
312
129
  params?: Record<string, any>,
313
130
  options: RequestOptions = {}
314
131
  ): Promise<T> {
315
- const primaryUrl = buildUrl(this.baseUrl, endpoint, params);
132
+ const url = buildUrl(this.baseUrl, endpoint, params);
316
133
 
317
- const baseHeaders: HeadersInit = buildHeaders(this.token, {
134
+ const base: HeadersInit = buildHeaders(this.token, {
318
135
  "X-Organization": this.organization,
319
136
  ...(options.headers || {}),
320
137
  });
321
138
 
322
- // Función helper para debug de headers
323
- const headersToObject = (headers: Headers): Record<string, string> => {
324
- const obj: Record<string, string> = {};
325
- headers.forEach((value, key) => {
326
- obj[key] = value;
327
- });
328
- return obj;
329
- };
139
+ const headers = new Headers(base);
330
140
 
331
- const createHeaders = (): Headers => {
332
- const headers = new Headers(baseHeaders);
141
+ const legacyPattern = /(^|\/)legacy(\/|$)/i;
142
+ const isLegacyEndpoint = legacyPattern.test(endpoint);
143
+ const isLegacyLogin = /(^|\/)legacy\/login$/i.test(endpoint);
333
144
 
145
+ if (isLegacyEndpoint && !isLegacyLogin) {
334
146
  const legacyToken =
335
- (window as any).__LEGACY_TOKEN__ ||
336
- sessionStorage.getItem("legacy_token") ||
147
+ (typeof window !== "undefined" && (window as any).__LEGACY_TOKEN__) ||
148
+ (typeof sessionStorage !== "undefined" &&
149
+ sessionStorage.getItem("legacy_token")) ||
337
150
  null;
338
151
 
339
152
  if (legacyToken) {
340
153
  headers.set("Authorization", `Bearer ${legacyToken}`);
341
- if (this.debug) {
342
- console.log("🔐 Using legacy token for:", endpoint);
343
- }
344
- } else if (this.token) {
345
- if (this.debug) {
346
- console.log("🔐 Using v1 token for:", endpoint);
347
- }
348
- } else {
349
- console.warn("⚠️ No token available for endpoint:", endpoint);
350
154
  }
155
+ }
351
156
 
352
- return headers;
353
- };
157
+ if (!isLegacyEndpoint && !this.token) {
158
+ headers.delete("Authorization");
159
+ }
354
160
 
355
161
  const useCache = this.cacheEnabled && options.useCache !== false;
356
162
  if (useCache && method === "GET") {
357
- const cacheKey = generateCacheKey(method, primaryUrl, data);
163
+ const cacheKey = generateCacheKey(method, url, data);
358
164
  const cachedData = this.cache.get<T>(cacheKey);
359
165
  if (cachedData) {
360
166
  if (this.debug) {
@@ -365,105 +171,25 @@ export class ApiClient {
365
171
  }
366
172
 
367
173
  this.eventEmitter.emit("beforeRequest", {
368
- url: primaryUrl,
174
+ url,
369
175
  method,
370
176
  data,
371
177
  });
372
178
 
373
179
  try {
374
- let body: string | undefined;
375
- if (data && method !== "GET") {
376
- body = JSON.stringify(data);
377
- if (this.debug) {
378
- console.log(`📤 ${method} Body:`, data);
379
- }
380
- }
381
-
382
- // ✅ Primer intento
383
- const headers1 = createHeaders();
384
- const fetchOptions1: RequestInit = {
180
+ const fetchOptions: RequestInit = {
385
181
  method,
386
- headers: headers1,
387
- credentials: "include",
388
- ...(body && { body }),
182
+ headers,
183
+ credentials: this.credentials,
389
184
  };
390
185
 
391
- if (this.debug) {
392
- console.log(`🌐 ${method} ${primaryUrl}`);
393
- console.log("📋 Headers:", headersToObject(headers1)); // ✅ CORREGIDO
394
- }
395
-
396
- const response = await fetch(primaryUrl, fetchOptions1);
397
-
398
- if (response.status === 404) {
399
- console.warn(`⚠️ 404 en ${primaryUrl}, intentando con fallback...`);
400
-
401
- const fallbackUrl = buildUrl(this.fallbackBaseUrl, endpoint, params);
402
-
403
- if (this.debug) {
404
- console.log(`🔄 Retry: ${method} ${fallbackUrl}`);
405
- }
406
-
407
- // ✅ Segundo intento
408
- const headers2 = createHeaders();
409
- const fetchOptions2: RequestInit = {
410
- method,
411
- headers: headers2,
412
- credentials: "include",
413
- ...(body && { body }),
414
- };
415
-
416
- if (this.debug) {
417
- console.log("📋 Fallback Headers:", headersToObject(headers2)); // ✅ CORREGIDO
418
- }
419
-
420
- const fallbackResponse = await fetch(fallbackUrl, fetchOptions2);
421
-
422
- if (fallbackResponse.status === 204) {
423
- console.log(`✅ Fallback exitoso (204 No Content): ${endpoint}`);
424
- return {} as T;
425
- }
426
-
427
- if (!fallbackResponse.ok) {
428
- let errorData;
429
- try {
430
- errorData = await fallbackResponse.json();
431
- } catch {
432
- errorData = { message: fallbackResponse.statusText };
433
- }
434
-
435
- console.error(
436
- `❌ Fallback falló ${fallbackResponse.status}:`,
437
- errorData
438
- );
439
-
440
- if (fallbackResponse.status === 401) {
441
- this.eventEmitter.emit("authError", {
442
- statusCode: 401,
443
- message: errorData.message || "Authentication required",
444
- });
445
- }
446
-
447
- return errorData as T;
448
- }
449
-
450
- const fallbackData = await parseResponse<T>(fallbackResponse);
451
-
452
- console.log(`✅ Fallback exitoso: ${endpoint}`);
453
-
454
- this.eventEmitter.emit("afterRequest", {
455
- url: fallbackUrl,
456
- method,
457
- response: fallbackData,
458
- });
459
-
460
- return fallbackData;
186
+ if (data && method !== "GET") {
187
+ fetchOptions.body = JSON.stringify(data);
188
+ console.log(`📤 ${method} Body:`, data);
461
189
  }
462
190
 
463
- if (response.status === 204) {
464
- console.log(`✅ Request exitoso (204 No Content): ${endpoint}`);
465
- return {} as T;
466
- }
191
+ console.log(`🌐 ${method} ${url}`, fetchOptions);
192
+ const response = await fetch(url, fetchOptions);
467
193
 
468
194
  if (!response.ok) {
469
195
  let errorData;
@@ -488,7 +214,7 @@ export class ApiClient {
488
214
  const responseData = await parseResponse<T>(response);
489
215
 
490
216
  if (useCache && method === "GET") {
491
- const cacheKey = generateCacheKey(method, primaryUrl, data);
217
+ const cacheKey = generateCacheKey(method, url, data);
492
218
  const cacheTime = options.cacheTime || undefined;
493
219
  this.cache.set(cacheKey, responseData, cacheTime);
494
220
 
@@ -498,7 +224,7 @@ export class ApiClient {
498
224
  }
499
225
 
500
226
  this.eventEmitter.emit("afterRequest", {
501
- url: primaryUrl,
227
+ url,
502
228
  method,
503
229
  response: responseData,
504
230
  });
@@ -506,7 +232,7 @@ export class ApiClient {
506
232
  return responseData;
507
233
  } catch (error) {
508
234
  this.eventEmitter.emit("requestError", {
509
- url: primaryUrl,
235
+ url,
510
236
  method,
511
237
  error,
512
238
  });
package/src/index.ts CHANGED
@@ -15,14 +15,12 @@ import { LogsApi } from "./modules/v1/_logs/logs-api";
15
15
  // Legacy
16
16
  import { AreasApi } from "./modules/legacy/areas/areas-api";
17
17
  import { ClassificationTypesApi } from "./modules/legacy/classificationtypes/classificationtypes-api";
18
- import { LegacyApiClient } from "./core/legacy-api-client";
19
18
 
20
19
  /**
21
20
  * Main SDK for consuming CLM API
22
21
  */
23
22
  export class ClmSdk {
24
23
  private apiClient: ApiClient;
25
- private legacyClient: LegacyApiClient;
26
24
  private eventEmitter: EventEmitter;
27
25
  private cacheInstance: Cache;
28
26
 
@@ -47,10 +45,6 @@ export class ClmSdk {
47
45
  this.cacheInstance = new Cache(fullConfig.cache?.ttl);
48
46
  this.apiClient = new ApiClient(fullConfig, this.eventEmitter);
49
47
 
50
- this.legacyClient = new LegacyApiClient(
51
- "http://216.250.117.119/ZeroServicesQA/api/v1"
52
- );
53
-
54
48
  // Initialize modules v1
55
49
  this.auth = new AuthApi(this.apiClient);
56
50
  this.users = new UsersApi(this.apiClient);
@@ -63,13 +57,6 @@ export class ClmSdk {
63
57
  this.classificationTypes = new ClassificationTypesApi(this.apiClient);
64
58
  }
65
59
 
66
- async legacyLogin(userName: string, password: string) {
67
- return await this.legacyClient.login(userName, password);
68
- }
69
-
70
- legacyLogout(): void {
71
- this.legacyClient.logout();
72
- }
73
60
 
74
61
  /**
75
62
  * Access to events system
@@ -100,6 +87,5 @@ export * from "./modules/v1/notifications/types";
100
87
  export * from "./modules/v1/_logs/types";
101
88
 
102
89
  // Export legacy types
103
- export * from "./core/legacy-api-client";
104
90
  export * from "./modules/legacy/areas/types";
105
91
  export * from "./modules/legacy/classificationtypes/types";
@@ -10,7 +10,7 @@ import {
10
10
 
11
11
  export class ClassificationTypesApi {
12
12
  private apiClient: ApiClient;
13
- private readonly basePath = "/catalog/clasificationtype";
13
+ private readonly basePath = "/legacy/catalog/clasificationtype";
14
14
 
15
15
  constructor(apiClient: ApiClient) {
16
16
  this.apiClient = apiClient;
@@ -1,7 +1,8 @@
1
- // auth-api.ts
2
- import { ApiClient } from "../../../core/api-client";
1
+ import { ApiClient } from "../../../core/api-client";
3
2
  import { LoginCredentials, LoginResponse, RefreshTokenRequest } from "./types";
4
3
 
4
+ type LoginMode = "new" | "legacy";
5
+
5
6
  export class AuthApi {
6
7
  private apiClient: ApiClient;
7
8
 
@@ -9,67 +10,90 @@ export class AuthApi {
9
10
  this.apiClient = apiClient;
10
11
  }
11
12
 
12
- /**
13
- * Login con POST JSON (evita el modal del navegador).
14
- * El servidor setea cookie HttpOnly (zero_token).
15
- */
16
- async login(credentials: LoginCredentials): Promise<{ ok: boolean }> {
17
- try {
18
- const response = await fetch(`${this.apiClient['baseUrl']}/auth/login`, {
19
- method: 'POST',
20
- headers: {
21
- 'Content-Type': 'application/json',
22
- 'X-Organization': this.apiClient['organization'] || 'default-org'
23
- },
24
- credentials: 'include', // ← Importante para cookies
25
- body: JSON.stringify({
26
- email: credentials.email,
27
- password: credentials.password
28
- })
29
- });
30
-
31
- if (!response.ok) {
32
- if (response.status === 401) {
33
- throw new Error('Invalid credentials');
13
+ async login(
14
+ credentials: LoginCredentials,
15
+ mode: LoginMode = "new"
16
+ ): Promise<{ ok: boolean }> {
17
+ const path = mode === "legacy" ? "/legacy/login" : "/auth/login";
18
+
19
+ const response = await fetch(`${this.apiClient["baseUrl"]}${path}`, {
20
+ method: "POST",
21
+ headers: {
22
+ "Content-Type": "application/json",
23
+ "X-Organization": this.apiClient["organization"] || "default-org",
24
+ },
25
+ credentials: "include",
26
+ body: JSON.stringify({
27
+ email: credentials.email,
28
+ password: credentials.password,
29
+ }),
30
+ });
31
+
32
+ if (!response.ok) {
33
+ if (response.status === 401) throw new Error("Invalid credentials");
34
+ throw new Error(`Login failed: ${response.status}`);
35
+ }
36
+
37
+ const data: any = await response.json().catch(() => null);
38
+
39
+ // ✅ Si es legacy, guarda Bearer token para siguientes llamadas legacy
40
+ if (mode === "legacy") {
41
+ const legacyToken = data?.dataResult?.token || data?.token;
42
+
43
+ if (legacyToken) {
44
+ if (typeof sessionStorage !== "undefined") {
45
+ sessionStorage.setItem("legacy_token", legacyToken);
46
+ }
47
+ if (typeof window !== "undefined") {
48
+ (window as any).__LEGACY_TOKEN__ = legacyToken;
34
49
  }
35
- throw new Error(`Login failed: ${response.status}`);
36
50
  }
51
+ }
37
52
 
38
- const data = await response.json();
39
-
40
- // No guardar token en memoria, solo usar cookie
41
- this.apiClient.setToken(null);
42
-
43
- console.log('✅ Login exitoso, cookie establecida');
44
- return { ok: true };
53
+ // Nuevo: cookie HttpOnly, no guardes token en memoria del SDK
54
+ this.apiClient.setToken(null);
45
55
 
46
- } catch (error) {
47
- console.error('❌ SDK Login error:', error);
48
- throw error;
49
- }
56
+ return { ok: true };
50
57
  }
51
58
 
52
59
  async refreshToken(request?: RefreshTokenRequest): Promise<LoginResponse> {
53
- const response = await this.apiClient.post<LoginResponse>("/auth/refresh", request);
54
- if ((response as any)?.token) this.apiClient.setToken((response as any).token);
60
+ const response = await this.apiClient.post<LoginResponse>(
61
+ "/auth/refresh",
62
+ request
63
+ );
64
+ if ((response as any)?.token)
65
+ this.apiClient.setToken((response as any).token);
55
66
  return response;
56
67
  }
57
68
 
58
69
  async logout(): Promise<void> {
59
70
  try {
60
71
  await this.apiClient.post<void>("/auth/logout");
61
- } catch (error) {
62
- console.error("Error during logout:", error);
63
72
  } finally {
73
+ // limpia token nuevo
64
74
  this.apiClient.setToken(null);
75
+
76
+ // limpia legacy token
77
+ if (typeof sessionStorage !== "undefined") {
78
+ sessionStorage.removeItem("legacy_token");
79
+ }
80
+ if (typeof window !== "undefined") {
81
+ delete (window as any).__LEGACY_TOKEN__;
82
+ }
65
83
  }
66
84
  }
67
85
 
68
86
  isAuthenticated(): boolean {
69
- return this.apiClient.getToken() !== null;
87
+ const hasToken = this.apiClient.getToken() !== null;
88
+ const hasLegacy =
89
+ (typeof sessionStorage !== "undefined" &&
90
+ !!sessionStorage.getItem("legacy_token")) ||
91
+ (typeof window !== "undefined" && !!(window as any).__LEGACY_TOKEN__);
92
+
93
+ return hasToken || hasLegacy;
70
94
  }
71
95
 
72
96
  setToken(token: string | null): void {
73
97
  this.apiClient.setToken(token);
74
98
  }
75
- }
99
+ }
package/src/types/sdk.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  export interface SdkConfig {
2
2
  baseUrl: string;
3
- fallbackBaseUrl?: string;
4
3
  organization: string;
5
4
  token?: string | null;
6
5
  cache?: {
@@ -1,26 +0,0 @@
1
- export interface LegacyLoginRequest {
2
- userName: string;
3
- password: string;
4
- }
5
- export interface LegacyLoginResponse {
6
- dataResult: {
7
- token: string;
8
- userType: string;
9
- userId: string;
10
- userName: string;
11
- area: string;
12
- id_Area: number;
13
- id_Role: string;
14
- };
15
- statusResponse: {
16
- code: number;
17
- success: boolean;
18
- message: string;
19
- };
20
- }
21
- export declare class LegacyApiClient {
22
- private baseUrl;
23
- constructor(baseUrl: string);
24
- login(userName: string, password: string): Promise<LegacyLoginResponse>;
25
- logout(): void;
26
- }
@@ -1,35 +0,0 @@
1
- export class LegacyApiClient {
2
- constructor(baseUrl) {
3
- this.baseUrl = baseUrl;
4
- }
5
- async login(userName, password) {
6
- var _a, _b;
7
- const url = `${this.baseUrl}/auth/login`;
8
- const response = await fetch(url, {
9
- method: 'POST',
10
- headers: { 'Content-Type': 'application/json' },
11
- credentials: 'include',
12
- body: JSON.stringify({ userName, password }),
13
- });
14
- if (!response.ok) {
15
- const errorData = await response.json().catch(() => ({
16
- statusResponse: {
17
- code: response.status,
18
- success: false,
19
- message: response.statusText
20
- }
21
- }));
22
- throw new Error(((_a = errorData.statusResponse) === null || _a === void 0 ? void 0 : _a.message) || 'Legacy login failed');
23
- }
24
- const data = await response.json();
25
- if ((_b = data.dataResult) === null || _b === void 0 ? void 0 : _b.token) {
26
- sessionStorage.setItem('legacy_token', data.dataResult.token);
27
- window.__LEGACY_TOKEN__ = data.dataResult.token;
28
- }
29
- return data;
30
- }
31
- logout() {
32
- sessionStorage.removeItem('legacy_token');
33
- delete window.__LEGACY_TOKEN__;
34
- }
35
- }