@machinemetrics/mm-erp-sdk 0.1.8-beta.7 → 0.1.8-beta.9
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/dist/{config-152LkbTv.js → config-cB7h4yvc.js} +2 -2
- package/dist/{config-152LkbTv.js.map → config-cB7h4yvc.js.map} +1 -1
- package/dist/{connector-factory-wivcyMhC.js → connector-factory-CKm74_WZ.js} +2 -2
- package/dist/{connector-factory-wivcyMhC.js.map → connector-factory-CKm74_WZ.js.map} +1 -1
- package/dist/{hashed-cache-manager-BnviJzB7.js → hashed-cache-manager-B1hPBNnF.js} +4 -4
- package/dist/{hashed-cache-manager-BnviJzB7.js.map → hashed-cache-manager-B1hPBNnF.js.map} +1 -1
- package/dist/{index-DNqHWa8F.js → index-DCgheVjV.js} +2 -2
- package/dist/{index-DNqHWa8F.js.map → index-DCgheVjV.js.map} +1 -1
- package/dist/index.d.ts +3 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/{logger-HAWySEbs.js → logger-CBDNtsMq.js} +18 -39
- package/dist/{logger-HAWySEbs.js.map → logger-CBDNtsMq.js.map} +1 -1
- package/dist/mm-erp-sdk.js +6 -223
- package/dist/mm-erp-sdk.js.map +1 -1
- package/dist/services/data-sync-service/jobs/clean-up-expired-cache.js +4 -4
- package/dist/services/data-sync-service/jobs/from-erp.js +4 -4
- package/dist/services/data-sync-service/jobs/retry-failed-labor-tickets.js +3 -3
- package/dist/services/data-sync-service/jobs/run-migrations.js +1 -1
- package/dist/services/data-sync-service/jobs/to-erp.d.ts.map +1 -1
- package/dist/services/data-sync-service/jobs/to-erp.js +3 -3
- package/dist/services/data-sync-service/jobs/to-erp.js.map +1 -1
- package/dist/services/reporting-service/logger.d.ts.map +1 -1
- package/dist/types/erp-types.d.ts +1 -2
- package/dist/types/erp-types.d.ts.map +1 -1
- package/package.json +1 -4
- package/src/index.ts +5 -26
- package/src/services/data-sync-service/jobs/to-erp.ts +1 -2
- package/src/services/reporting-service/logger.ts +21 -42
- package/src/types/erp-types.ts +0 -1
- package/dist/services/psql-erp-service/configuration.d.ts +0 -10
- package/dist/services/psql-erp-service/configuration.d.ts.map +0 -1
- package/dist/services/psql-erp-service/index.d.ts +0 -14
- package/dist/services/psql-erp-service/index.d.ts.map +0 -1
- package/dist/services/psql-erp-service/internal/types/psql-types.d.ts +0 -12
- package/dist/services/psql-erp-service/internal/types/psql-types.d.ts.map +0 -1
- package/dist/services/psql-erp-service/psql-helpers.d.ts +0 -32
- package/dist/services/psql-erp-service/psql-helpers.d.ts.map +0 -1
- package/dist/services/psql-erp-service/psql-service.d.ts +0 -43
- package/dist/services/psql-erp-service/psql-service.d.ts.map +0 -1
- package/src/services/psql-erp-service/configuration.ts +0 -9
- package/src/services/psql-erp-service/index.ts +0 -22
- package/src/services/psql-erp-service/internal/types/psql-types.ts +0 -13
- package/src/services/psql-erp-service/psql-helpers.ts +0 -90
- package/src/services/psql-erp-service/psql-service.ts +0 -240
|
@@ -1,240 +0,0 @@
|
|
|
1
|
-
import { PsqlConfiguration } from "./configuration";
|
|
2
|
-
import { ERPResponse } from "../../types/erp-types";
|
|
3
|
-
import { OdbcErrorResponse } from "./internal/types/psql-types";
|
|
4
|
-
import logger from "../reporting-service/logger";
|
|
5
|
-
|
|
6
|
-
type PagingParams = {
|
|
7
|
-
limit?: number;
|
|
8
|
-
offset?: number;
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* ODBC connection interface for type safety
|
|
13
|
-
*/
|
|
14
|
-
interface OdbcConnection {
|
|
15
|
-
query(sql: string): Promise<any[]>;
|
|
16
|
-
close(): Promise<void>;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* ODBC module interface
|
|
21
|
-
*/
|
|
22
|
-
interface OdbcModule {
|
|
23
|
-
connect(connectionString: string): Promise<OdbcConnection>;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export class PsqlService {
|
|
27
|
-
private config: PsqlConfiguration;
|
|
28
|
-
private static odbcModule: OdbcModule | null = null;
|
|
29
|
-
private static odbcLoadError: Error | null = null;
|
|
30
|
-
|
|
31
|
-
constructor(config: PsqlConfiguration) {
|
|
32
|
-
this.config = config;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* Dynamically load the ODBC module with lazy initialization and caching
|
|
37
|
-
* @throws Error with helpful message if ODBC package is not installed
|
|
38
|
-
*/
|
|
39
|
-
private static async getOdbc(): Promise<OdbcModule> {
|
|
40
|
-
// If we've already tried and failed, throw the cached error
|
|
41
|
-
if (this.odbcLoadError) {
|
|
42
|
-
throw this.odbcLoadError;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
// If already loaded, return cached module
|
|
46
|
-
if (this.odbcModule) {
|
|
47
|
-
return this.odbcModule;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
try {
|
|
51
|
-
// Dynamic import - only loads when actually needed
|
|
52
|
-
// @ts-ignore - odbc is an optional dependency, may not be installed at build time
|
|
53
|
-
const odbcImport = await import("odbc");
|
|
54
|
-
// Handle both default export and named export patterns
|
|
55
|
-
const odbc = odbcImport.default || odbcImport;
|
|
56
|
-
this.odbcModule = odbc as OdbcModule;
|
|
57
|
-
return this.odbcModule;
|
|
58
|
-
} catch (error) {
|
|
59
|
-
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
60
|
-
this.odbcLoadError = new Error(
|
|
61
|
-
`ODBC package is required for PSQL service but is not installed or failed to load.\n` +
|
|
62
|
-
`Install it with: npm install odbc\n` +
|
|
63
|
-
`Also install OS-level dependencies, e.g. on Alpine Linux:\n` +
|
|
64
|
-
` apk add --no-cache unixodbc unixodbc-dev python3 make g++\n` +
|
|
65
|
-
`For other Linux distributions, install unixodbc and unixodbc-dev packages.\n` +
|
|
66
|
-
`Original error: ${errorMessage}`
|
|
67
|
-
);
|
|
68
|
-
throw this.odbcLoadError;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// REMOVED: dispose() method - not needed anymore
|
|
73
|
-
// REMOVED: connection property - not needed anymore
|
|
74
|
-
// REMOVED: openConnection() method - not needed anymore
|
|
75
|
-
// REMOVED: closeConnection() method - not needed anymore
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* Build PSQL ODBC connection string
|
|
79
|
-
* CRITICAL: ServerName must use IP.PORT format (e.g., 10.4.0.11.1583)
|
|
80
|
-
*/
|
|
81
|
-
private buildConnectionString(): string {
|
|
82
|
-
const serverName = `${this.config.host}.${this.config.port}`;
|
|
83
|
-
|
|
84
|
-
return (
|
|
85
|
-
[
|
|
86
|
-
"Driver={Pervasive ODBC Interface}",
|
|
87
|
-
`ServerName=${serverName}`,
|
|
88
|
-
`DBQ=${this.config.database}`,
|
|
89
|
-
`UID=${this.config.username}`,
|
|
90
|
-
`PWD=${this.config.password}`,
|
|
91
|
-
"AutoDoubleQuote=0",
|
|
92
|
-
].join(";") + ";"
|
|
93
|
-
);
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* Execute a query and return the results
|
|
98
|
-
* Creates a fresh connection for each query to avoid handle corruption
|
|
99
|
-
*
|
|
100
|
-
* @param query The SQL query to execute
|
|
101
|
-
* @param params Query parameters (currently unused for PSQL read operations)
|
|
102
|
-
* @param paging Optional paging parameters
|
|
103
|
-
* @returns The entities fetched from the database, along with paging information
|
|
104
|
-
*/
|
|
105
|
-
public async executePreparedStatement(
|
|
106
|
-
query: string,
|
|
107
|
-
params: Record<string, string> = {},
|
|
108
|
-
paging?: PagingParams
|
|
109
|
-
): Promise<ERPResponse | undefined> {
|
|
110
|
-
// Dynamically load ODBC module (will throw helpful error if not installed)
|
|
111
|
-
const odbc = await PsqlService.getOdbc();
|
|
112
|
-
let connection: OdbcConnection | null = null;
|
|
113
|
-
|
|
114
|
-
try {
|
|
115
|
-
// Create fresh connection for THIS query only
|
|
116
|
-
const connStr = this.buildConnectionString();
|
|
117
|
-
logger.debug("Creating fresh PSQL connection for query");
|
|
118
|
-
connection = await odbc.connect(connStr);
|
|
119
|
-
|
|
120
|
-
if (Object.keys(params).length > 0) {
|
|
121
|
-
logger.warn(
|
|
122
|
-
"PsqlService: Query parameters provided but parameter binding not yet implemented. " +
|
|
123
|
-
"Using direct query execution."
|
|
124
|
-
);
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
const records = await connection.query(query);
|
|
128
|
-
const allRecords = PsqlService.recordsetToRecords(records);
|
|
129
|
-
const rowsFetched = allRecords.length;
|
|
130
|
-
|
|
131
|
-
// Apply paging if requested
|
|
132
|
-
const pagedData =
|
|
133
|
-
paging?.offset !== undefined || paging?.limit !== undefined
|
|
134
|
-
? allRecords.slice(
|
|
135
|
-
paging.offset || 0,
|
|
136
|
-
(paging.offset || 0) + (paging.limit || allRecords.length)
|
|
137
|
-
)
|
|
138
|
-
: allRecords;
|
|
139
|
-
|
|
140
|
-
return {
|
|
141
|
-
data: pagedData,
|
|
142
|
-
paging: {
|
|
143
|
-
count: rowsFetched,
|
|
144
|
-
limit: paging?.limit || 0,
|
|
145
|
-
offset: paging?.offset || 0,
|
|
146
|
-
nextPage:
|
|
147
|
-
paging?.limit && (paging.offset || 0) + paging.limit < rowsFetched
|
|
148
|
-
? String((paging.offset || 0) + paging.limit)
|
|
149
|
-
: undefined,
|
|
150
|
-
previousPage: paging?.offset
|
|
151
|
-
? String(Math.max(0, (paging.offset || 0) - (paging.limit || 10)))
|
|
152
|
-
: undefined,
|
|
153
|
-
},
|
|
154
|
-
};
|
|
155
|
-
} catch (error) {
|
|
156
|
-
// If this is an ODBC load error (from getOdbc), re-throw it as-is
|
|
157
|
-
// since it already has a helpful error message
|
|
158
|
-
if (error instanceof Error && error.message.includes("ODBC package is required")) {
|
|
159
|
-
throw error;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
// Otherwise, handle as ODBC runtime error
|
|
163
|
-
const errorInfo = error as OdbcErrorResponse;
|
|
164
|
-
logger.error("Error fetching data from PSQL", {
|
|
165
|
-
error: errorInfo.message,
|
|
166
|
-
odbcErrors: errorInfo.odbcErrors,
|
|
167
|
-
query: query.substring(0, 200), // Log first 200 chars of query
|
|
168
|
-
});
|
|
169
|
-
|
|
170
|
-
throw this.handleOdbcError(errorInfo);
|
|
171
|
-
} finally {
|
|
172
|
-
// CRITICAL: Always close connection, even on error
|
|
173
|
-
if (connection) {
|
|
174
|
-
try {
|
|
175
|
-
await connection.close();
|
|
176
|
-
logger.debug("PSQL connection closed successfully");
|
|
177
|
-
} catch (err) {
|
|
178
|
-
// Don't throw on close errors, just log
|
|
179
|
-
logger.warn("Error closing PSQL connection (non-fatal)", {
|
|
180
|
-
error: err,
|
|
181
|
-
});
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
/**
|
|
188
|
-
* Transform ODBC result set to array of Record<string, string> instances.
|
|
189
|
-
* IMPORTANT: PSQL CHAR fields are often padded with spaces - we trim them
|
|
190
|
-
*/
|
|
191
|
-
public static recordsetToRecords(recordset: any[]): Record<string, string>[] {
|
|
192
|
-
if (!Array.isArray(recordset)) {
|
|
193
|
-
return [];
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
const data: Record<string, string>[] = recordset.map((row) => {
|
|
197
|
-
const transformedRow: Record<string, string> = {};
|
|
198
|
-
Object.keys(row).forEach((key) => {
|
|
199
|
-
const value = row[key];
|
|
200
|
-
transformedRow[key] =
|
|
201
|
-
value !== null && value !== undefined ? String(value).trim() : "";
|
|
202
|
-
});
|
|
203
|
-
return transformedRow;
|
|
204
|
-
});
|
|
205
|
-
|
|
206
|
-
return data;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/**
|
|
210
|
-
* Handle ODBC errors and provide meaningful messages
|
|
211
|
-
*/
|
|
212
|
-
private handleOdbcError(error: OdbcErrorResponse): Error {
|
|
213
|
-
const odbcError = error.odbcErrors?.[0];
|
|
214
|
-
const errorCode = odbcError?.state;
|
|
215
|
-
const message = odbcError?.message || error.message;
|
|
216
|
-
|
|
217
|
-
switch (errorCode) {
|
|
218
|
-
case "08S01":
|
|
219
|
-
return new Error(
|
|
220
|
-
"PSQL connection failed. Check: " +
|
|
221
|
-
"1) PVSW environment variable set to /usr/local/psql/etc/pvsw.ini, " +
|
|
222
|
-
"2) Network connectivity to ports 1583/3351, " +
|
|
223
|
-
"3) ODBC configuration files in /usr/local/psql/etc/ and /etc/. " +
|
|
224
|
-
`Original error: ${message}`
|
|
225
|
-
);
|
|
226
|
-
case "28000":
|
|
227
|
-
return new Error(
|
|
228
|
-
`PSQL authentication failed. Check username/password. Original error: ${message}`
|
|
229
|
-
);
|
|
230
|
-
case "42000":
|
|
231
|
-
return new Error(`PSQL SQL syntax error. Original error: ${message}`);
|
|
232
|
-
case "42S02":
|
|
233
|
-
return new Error(
|
|
234
|
-
`PSQL table or view not found. Check table names in query. Original error: ${message}`
|
|
235
|
-
);
|
|
236
|
-
default:
|
|
237
|
-
return new Error(`PSQL error (${errorCode || "unknown"}): ${message}`);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
}
|