-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathodoo.ts
115 lines (107 loc) · 3.04 KB
/
odoo.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import * as xmlrpc from 'xmlrpc';
import * as url from 'url';
interface ClientOptions {
host?: string;
path?: string;
port?: number;
url?: string;
cookies?: boolean;
headers?: { [header: string]: string };
basic_auth?: { user: string; pass: string };
method?: string;
}
export interface OdooParams {
uid?: number;
odooUrl: string;
db: string;
username: string;
password: string;
}
export class Odoo {
clientOptions: ClientOptions;
db: string;
uid: number;
user: string;
pass: string;
clientCommun: xmlrpc.Client;
clientObject: xmlrpc.Client;
isSecure: boolean = false;
constructor(odooParams: OdooParams) {
const urlParsed = url.parse(odooParams.odooUrl);
if (urlParsed.protocol === 'https:') {
this.isSecure = false;
}
this.uid = odooParams.uid;
this.db = odooParams.db;
this.user = odooParams.username;
this.pass = odooParams.password;
this.clientOptions = {
port: Number(urlParsed.port),
host: urlParsed.hostname,
basic_auth: { user: odooParams.username, pass: odooParams.password }
};
}
async authenticate() {
if (this.isSecure) {
this.clientOptions.path = '/xmlrpc/2/common';
this.clientCommun = xmlrpc.createSecureClient(this.clientOptions);
// this.clientOptions.path = '/xmlrpc/2/object';
// this.clientObject = xmlrpc.createSecureClient(this.clientOptions);
} else {
this.clientOptions.path = '/xmlrpc/2/common';
this.clientCommun = xmlrpc.createSecureClient(this.clientOptions);
// this.clientOptions.path = '/xmlrpc/2/object';
// this.clientObject = xmlrpc.createClient(this.clientOptions);
}
return new Promise((resolve, reject) => {
this.clientCommun.methodCall(
'authenticate',
[this.db, this.user, this.pass, []],
(err, value) => {
if (!err) {
this.uid = value;
resolve(this.uid);
} else {
reject(err);
}
}
);
});
}
objectConn() {
if (this.isSecure) {
this.clientOptions.path = '/xmlrpc/2/object';
this.clientObject = xmlrpc.createSecureClient(this.clientOptions);
} else {
this.clientOptions.path = '/xmlrpc/2/object';
this.clientObject = xmlrpc.createSecureClient(this.clientOptions);
}
}
async executeKW(inputParams: OdooFilters): Promise<any[]> {
this.objectConn();
const params: Array<any> = [this.db, this.uid, this.pass];
params.push(inputParams.model);
params.push(inputParams.method);
params.push(inputParams.params);
params.push(inputParams.filters);
console.log(JSON.stringify(params));
return new Promise((resolve, reject) => {
this.clientObject.methodCall('execute_kw', params, (err, value) => {
if (!err) {
console.log(err);
resolve(value);
} else {
console.log(err);
reject(err);
}
});
});
}
}
export interface OdooFilters {
model: string;
method: string;
params: any;
filters?: Object;
}
// model, method, params, callback