forked from resource-watch/resource-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidget.js
264 lines (244 loc) · 9.31 KB
/
widget.js
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
import WRISerializer from 'wri-json-api-serializer';
// utils
import { WRIAPI } from 'utils/axios';
import { logger } from 'utils/logs';
/**
* Fetch widgets according to params.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#how-to-obtain-all-widgets|here}
* @param {Object} params - params sent to the API.
* @param {Object} headers - headers used in the request
* @param {boolean} _meta - flag indicating whether meta information should be
* included in the response or not
*/
export const fetchWidgets = (params = {}, headers = {}, _meta = false) => {
logger.info('fetches widgets');
return WRIAPI.get('widget', {
headers: {
...WRIAPI.defaults.headers,
// TO-DO: forces the API to not cache, this should be removed at some point
'Upgrade-Insecure-Requests': 1,
...headers
},
params: {
env: process.env.API_ENV,
application: process.env.APPLICATIONS,
...params
},
transformResponse: [].concat(
WRIAPI.defaults.transformResponse,
(({ data, meta }) => ({ widgets: data, meta }))
)
})
.then((response) => {
const { status, statusText, data } = response;
const { widgets, meta } = data;
if (status >= 300) {
logger.error('Error fetching widgets:', `${status}: ${statusText}`);
throw new Error(statusText);
}
if (_meta) {
return {
widgets: WRISerializer({ data: widgets }),
meta
};
}
return WRISerializer({ data: widgets });
})
.catch((response) => {
const { status, statusText } = response;
logger.error(`Error fetching widgets: ${status}: ${statusText}`);
throw new Error(`Error fetching widgets: ${status}: ${statusText}`);
});
};
/**
* Fetches data for a specific widget.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#how-obtain-a-single-widget|here}
* @param {String} id - widget id.
* @param {Object} params - params sent to the API.
*/
export const fetchWidget = (id, params = {}) => {
if (!id) throw Error('The widget id is mandatory to perform this request (fetchWidget).');
logger.info(`Fetch widget: ${id}`);
return WRIAPI.get(`widget/${id}`, {
headers: {
...WRIAPI.defaults.headers,
// TO-DO: forces the API to not cache, this should be removed at some point
'Upgrade-Insecure-Requests': 1
},
params: {
...params,
env: process.env.API_ENV,
application: process.env.APPLICATIONS
}
})
.then((response) => {
const { status, statusText, data } = response;
if (status >= 300) {
if (status === 404) {
logger.debug(`Widget '${id}' not found, ${status}: ${statusText}`);
} else {
logger.error(`Error fetching widget: ${id}: ${status}: ${statusText}`);
}
throw new Error(statusText);
}
return WRISerializer(data);
})
.catch(({ response }) => {
const { status, statusText } = response;
logger.error(`Error fetching widget ${id}: ${status}: ${statusText}`);
throw new Error(`Error fetching widget ${id}: ${status}: ${statusText}`);
});
};
/**
* Deletes a specified widget.
* This fetch needs authentication.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#delete-a-widget|here}
* @param {String} widgetId - widget ID to be deleted.
* @param {String} datasetId - dataset ID.
* @param {String} token - user's token.
*/
export const deleteWidget = (widgetId, datasetId, token) => {
logger.info(`Delete widget: ${widgetId}`);
return WRIAPI.delete(`dataset/${datasetId}/widget/${widgetId}`, {
headers: {
...WRIAPI.defaults.headers,
Authorization: token
}
})
.then((response) => {
const { status, statusText } = response;
if (status >= 300) {
if (status === 404) {
logger.debug(`Widget '${widgetId}' not found, ${status}: ${statusText}`);
} else {
logger.error(`Error deleting widget: ${widgetId}: ${status}: ${statusText}`);
}
throw new Error(statusText);
}
return response;
})
.catch(({ response }) => {
const { status, statusText } = response;
logger.error(`Error deleting widget ${widgetId}: ${status}: ${statusText}`);
throw new Error(`Error deleting widget ${widgetId}: ${status}: ${statusText}`);
});
};
/**
* Updates data for the widget provided.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#update-a-widget|here}
* @param {Object} widget - widget data.
* @param {string} token - user's token.
*/
export const updateWidget = (widget, token) => {
logger.info(`Update widget: ${widget.id}`);
return WRIAPI.patch(`widget/${widget.id}`, widget, { headers: { Authorization: token } })
.then(response => WRISerializer(response.data))
.catch(({ response }) => {
const { status, statusText } = response;
logger.error(`Error updating widget ${widget.id}: ${status}: ${statusText}`);
throw new Error(`Error updating widget ${widget.id}: ${status}: ${statusText}`);
});
};
/**
* Creates a new widget.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#create-a-widget|here}
* @param {Object} widget - widget data.
* @param {string} datasetId - Dataset ID the widget belongs to.
* @param {string} token - user's token.
*/
export const createWidget = (widget, datasetId, token) => {
logger.info('Create widget');
return WRIAPI.post(`dataset/${datasetId}/widget`,
{
application: process.env.APPLICATIONS.split(','),
env: process.env.API_ENV,
...widget
},
{ headers: { Authorization: token } })
.then(response => WRISerializer(response.data))
.catch(({ response }) => {
const { status, statusText } = response;
logger.error(`Error creating widget ${status}: ${statusText}`);
throw new Error(`Error creating widget ${status}: ${statusText}`);
});
};
/**
* Fetches the metadata associated to the widget provided.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#getting-metadata|here}
* @param {string} widgetId - widget data.
* @param {string} datasetId - Dataset ID the widget belongs to.
* @param {string} token - user's token.
* @param {Object} params - request parameters.
*/
export const fetchWidgetMetadata = (widgetId, datasetId, token, params = {}) => {
logger.info(`Update widget metadata: ${widgetId}`);
return WRIAPI.fetch(`dataset/${datasetId}/widget/${widgetId}/metadata`,
{
headers: { Authorization: token },
params: {
application: process.env.APPLICATIONS,
env: process.env.API_ENV,
...params
}
})
.then(response => WRISerializer(response.data))
.catch(({ response }) => {
const { status, statusText } = response;
logger.error(`Error fetching widget metadata ${widgetId}: ${status}: ${statusText}`);
throw new Error(`Error fetching widget metadata ${widgetId}: ${status}: ${statusText}`);
});
};
/**
* Updates the metadata for the widget provided.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#updating-a-metadata|here}
* @param {Object} widget - widget data.
* @param {string} datasetId - Dataset ID the widget belongs to.
* @param {Object} metadata - metadata to be updated.
* @param {string} token - user's token.
*/
export const updateWidgetMetadata = (widgetId, datasetId, metadata, token) => {
logger.info(`Update widget metadata: ${widgetId}`);
return WRIAPI.patch(`dataset/${datasetId}/widget/${widgetId}/metadata`,
metadata,
{ headers: { Authorization: token } })
.then(response => WRISerializer(response.data))
.catch(({ response }) => {
const { status, statusText } = response;
logger.error(`Error updating widget metadata ${widgetId}: ${status}: ${statusText}`);
throw new Error(`Error updating widget metadata ${widgetId}: ${status}: ${statusText}`);
});
};
/**
* Creates the metadata for the widget provided.
* Check out the API docs for this endpoint {@link https://resource-watch.github.io/doc-api/index-rw.html#creating-a-metadata-object|here}
* @param {string} widgetId - widget id.
* @param {string} datasetId - Dataset ID the widget belongs to.
* @param {Object} metadata - metadata to be updated.
* @param {string} token - user's token.
*/
export const createWidgetMetadata = (widgetId, datasetId, metadata, token) => {
logger.info(`Update widget metadata: ${widgetId}`);
return WRIAPI.post(`dataset/${datasetId}/widget/${widgetId}/metadata`,
{
...metadata,
application: process.env.APPLICATIONS,
env: process.env.API_ENV
},
{ headers: { Authorization: token } })
.then(response => WRISerializer(response.data))
.catch(({ response }) => {
const { status, statusText } = response;
logger.error(`Error creating widget metadata ${widgetId}: ${status}: ${statusText}`);
throw new Error(`Error creating widget metadata ${widgetId}: ${status}: ${statusText}`);
});
};
export default {
fetchWidgets,
fetchWidget,
updateWidget,
createWidget,
fetchWidgetMetadata,
updateWidgetMetadata,
createWidgetMetadata,
deleteWidget
};