-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindexingapi.ts
168 lines (158 loc) · 4.65 KB
/
indexingapi.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import axios from 'axios';
import { AxiosResponse } from 'axios';
import { base64 } from './util';
import { SearchResponse } from './apifetch';
interface ApiResponse {
status: number;
text: string;
}
export interface IndexingDocument {
id?: string;
url?: string;
title?: string;
main_content?: string;
custom_fields?: Record<string, string | number>;
}
const getHeaders = (sitekey: string, privatekey: string): Record<string, string> => {
return {
'Authorization': 'Basic ' + base64(sitekey + ':' + privatekey),
'Content-Type': 'application/json'
};
};
/**
* Fetch document
*/
const getDocument = (
apiHostname: string,
sitekey: string,
privatekey: string,
id: string
): Promise<SearchResponse> => {
return new Promise((resolve, reject) => {
axios
.get(`https://${apiHostname}/v2/indices/${sitekey}/documents/${id}`, {
headers: getHeaders(sitekey, privatekey)
})
.then((response: AxiosResponse) => {
if (response.status === 200) {
resolve(response.data as SearchResponse);
} else {
reject(new Error(JSON.stringify({ status: response.status, text: response.statusText })));
}
})
.catch((error) => {
reject(new Error(JSON.stringify({ status: 400, text: error as string })));
});
});
};
/**
* Add document
*/
const saveDocument = (
apiHostname: string,
sitekey: string,
privatekey: string,
document: IndexingDocument
): Promise<ApiResponse> => {
const isPut = Boolean(document.id || document.url);
return new Promise((resolve, reject) => {
axios({
url: `https://${apiHostname}/v2/indices/${sitekey}/documents/`,
method: isPut ? 'put' : 'post',
headers: getHeaders(sitekey, privatekey),
data: document
})
.then((response: AxiosResponse) => {
if (response.status === 202) {
resolve({ status: response.status, text: response.statusText });
} else {
reject(new Error(JSON.stringify({ status: response.status, text: response.statusText })));
}
})
.catch((error) => {
reject(new Error(JSON.stringify({ status: 400, text: error as string })));
});
});
};
/**
* Batch add documents
*/
const saveDocumentsBatch = (
apiHostname: string,
sitekey: string,
privatekey: string,
documents: { documents: IndexingDocument[] }
): Promise<ApiResponse> => {
return new Promise((resolve, reject) => {
axios({
method: 'put',
url: `https://${apiHostname}/v2/indices/${sitekey}/documents:batch`,
headers: getHeaders(sitekey, privatekey),
data: documents
})
.then((response: AxiosResponse) => {
if (response.status === 202) {
resolve({ status: response.status, text: response.statusText });
} else {
reject(new Error(JSON.stringify({ status: response.status, text: response.statusText })));
}
})
.catch((error) => {
reject(new Error(JSON.stringify({ status: 400, text: error as string })));
});
});
};
/**
* Delete document
*/
const deleteDocument = (
apiHostname: string,
sitekey: string,
privatekey: string,
id: string
): Promise<ApiResponse> => {
return new Promise((resolve, reject) => {
axios
.delete(`https://${apiHostname}/v2/indices/${sitekey}/documents/${id}`, {
headers: getHeaders(sitekey, privatekey)
})
.then((response: AxiosResponse) => {
if (response.status === 202) {
resolve({ status: response.status, text: response.statusText });
} else {
reject(new Error(JSON.stringify({ status: response.status, text: response.statusText })));
}
})
.catch((error) => {
reject(new Error(JSON.stringify({ status: 400, text: error as string })));
});
});
};
/**
* Batch delete documents
*/
const deleteDocumentsBatch = (
apiHostname: string,
sitekey: string,
privatekey: string,
batch: { documents: string[] }
): Promise<ApiResponse> => {
return new Promise((resolve, reject) => {
axios
.delete(`https://${apiHostname}/v2/indices/${sitekey}/documents:batch`, {
headers: getHeaders(sitekey, privatekey),
data: batch
})
.then((response: AxiosResponse) => {
if (response.status === 202) {
resolve({ status: response.status, text: response.statusText });
} else {
reject(new Error(JSON.stringify({ status: response.status, text: response.statusText })));
}
})
.catch((error) => {
reject(new Error(JSON.stringify({ status: 400, text: error as string })));
});
});
};
export { getDocument, saveDocument, saveDocumentsBatch, deleteDocument, deleteDocumentsBatch };