-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathobjectsBatcher.ts
67 lines (58 loc) · 1.56 KB
/
objectsBatcher.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
import { buildObjectsPath } from "./path"
import Connection from "../connection";
import {CommandBase} from "../validation/commandBase";
export default class ObjectsBatcher extends CommandBase {
private consistencyLevel?: string
public objects: any[];
constructor(client: Connection) {
super(client)
this.objects = [];
}
/**
* can be called as:
* - withObjects([obj1, obj2, obj3])
* - withObjects(obj1, obj2, obj3)
* - withObjects(obj1)
* @param {...any} objects
*/
withObjects(...objects: any) {
let objs = objects;
if (objects.length && Array.isArray(objects[0])) {
objs = objects[0];
}
this.objects = [...this.objects, ...objs];
return this;
}
withObject(object: any) {
return this.withObjects(object);
};
withConsistencyLevel = (cl: any) => {
this.consistencyLevel = cl;
return this;
};
payload = () => ({
objects: this.objects,
});
validateObjectCount = () => {
if (this.objects.length == 0) {
this.addError("need at least one object to send a request, add one with .withObject(obj)")
}
};
validate = () => {
this.validateObjectCount();
};
do = () => {
this.validate();
if (this.errors.length > 0) {
return Promise.reject(
new Error("invalid usage: " + this.errors.join(", "))
);
}
let params = new URLSearchParams()
if (this.consistencyLevel) {
params.set("consistency_level", this.consistencyLevel)
}
const path = buildObjectsPath(params);
return this.client.post(path, this.payload());
};
}