-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdkan_harvest_ckan.module
389 lines (335 loc) · 11.1 KB
/
dkan_harvest_ckan.module
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<?php
/**
* @file
* The module extends the DKAN Harvester and allow the CKAN API harvesting.
*/
/**
* Implements hook_harvest_source_types().
*/
function dkan_harvest_ckan_harvest_source_types() {
return array(
'harvest_ckan_pk_list' => array(
'machine_name' => 'harvest_ckan_pk_list',
'label' => 'CKAN (API 3 package_list)',
'cache callback' => '_dkan_harvest_ckan_cache_pkg',
'migration class' => 'HarvestMigrationCKANPackages',
),
'harvest_ckan' => array(
'machine_name' => 'harvest_ckan',
'label' => 'CKAN (API 3 JSON full catalog)',
'cache callback' => '_dkan_harvest_ckan_cache',
'migration class' => 'HarvestMigrationCKAN',
),
'harvest_ckan_v1' => array(
'machine_name' => 'harvest_ckan_v1',
'label' => 'CKAN (API v1)',
'cache callback' => '_dkan_harvest_ckan_cache_pkg',
'migration class' => 'HarvestMigrationCKANDataset',
),
);
}
/**
* Get the cache from CKAN.
*
* The endpoint should be
* {CKAN-URL}/api/3/actions/current_package_list_with_resources.
*
* @param HarvestSource $source
* The source.
* @param int $harvest_updatetime
* The last uptime.
*
* @return HarvestCache
* The object HarvestCache.
*/
function _dkan_harvest_ckan_cache(HarvestSource $source, $harvest_updatetime) {
// This is needed for remote uri.
$context = stream_context_create(
array(
'http' => array(
'timeout' => 36000,
),
'https' => array(
'timeout' => 36000,
),
)
);
$remote = @file_get_contents($source->uri, 0, $context);
if ($remote) {
$data = drupal_json_decode($remote);
// Filter and save the data gathered from the endpoint.
if ($data) {
$v = _dkan_harvest_ckan_cache_json($data, $source, $harvest_updatetime);
return $v;
}
}
}
/**
* Cache the ckan_json datasets.
*
* @param array $data
* The parsed data from remote url.
* @param HarvestSource $source
* Object of type HarvestSource.
* @param int $harvest_updatetime
* The unix timestamp of the update time.
*
* @return HarvestCache
* The object HarvestCache.
*/
function _dkan_harvest_ckan_cache_json(array $data, HarvestSource $source, $harvest_updatetime) {
$harvestCache = new HarvestCache($source, $harvest_updatetime);
$datasets = $data['result'];
// Filter datasets, only allow datasets that have the filters value.
$filters = $source->filters;
if (!empty($filters)) {
$datasets = array_filter($datasets, function ($dataset) use ($filters, &$harvestCache) {
$dataset_key = $dataset['id'];
// Default action is to DROP the dataset if it does not meet the
// filtering criteria.
$accept = FALSE;
foreach ($filters as $filter => $value) {
if (!empty($dataset[$filter]) && !empty($value) && count(array_intersect((array) $value, (array) $dataset[$filter])) > 0) {
// The value to filter is an array and does intersect with the
// dataset value. ACCEPT.
$accept = TRUE;
}
if ($accept) {
// Dataset have at least one filter that match. No need for more
// proccecing.
break;
}
}
if ($accept) {
// Update the cache result object.
$harvestCache->setCacheEntryFiltered($dataset_key, $dataset['title']);
}
else {
// This dataset will be dropped from here on.
// Add to the processed count.
$harvestCache->setCacheEntryProcessed($dataset_key, $dataset['title']);
}
// Drop the dataset if excluded.
return $accept;
});
}
// Exclude datasets, drop datasets that have the excludes value.
$excludes = $source->excludes;
if (!empty($excludes)) {
$datasets = array_filter($datasets, function ($dataset) use ($excludes, &$harvestCache) {
$dataset_key = $dataset['id'];
// Default action is to accept dataset that does not meet the
// excluding criteria.
$accept = TRUE;
foreach ($excludes as $exclude => $value) {
if (!empty($dataset[$exclude]) && count(array_intersect((array) $value,
(array) $dataset[$exclude])) > 0) {
// The value to exclude is an array and does intersect with the dataset value. Drop.
$accept = FALSE;
}
if (!$accept) {
// Dataset have at least one exclude criterion that matchs.
// No need for more proccecing.
break;
}
}
if (!$accept) {
// Update the cache result object.
// This dataset will be dropped from here on. Add to the processed
// count.
$harvestCache->setCacheEntryExcluded($dataset_key, $dataset['title']);
}
// Drop the dataset if excluded.
return $accept;
});
}
// Override field values.
$overrides = $source->overrides;
$datasets = array_map(function ($dataset) use ($overrides, &$harvestCache) {
foreach ($overrides as $override => $value) {
$dataset[$override] = $value[0];
}
return $dataset;
}, $datasets);
// Set default values for empty fields.
$defaults = $source->defaults;
$datasets = array_map(function ($dataset) use ($defaults, &$harvestCache) {
foreach ($defaults as $default => $value) {
if (!isset($dataset[$default])) {
$dataset[$default] = $value[0];
}
}
return $dataset;
}, $datasets);
// TODO add defaults and overriddes?
foreach ($datasets as $dataset) {
$identifier = $dataset['id'];
$dataset_file = implode('/', array($source->getCacheDir(), $identifier));
$data = drupal_json_encode($dataset);
$cached = @file_put_contents($dataset_file, $data);
if (!$cached) {
$harvestCache->setCacheEntryFailed($identifier, $dataset['title']);
}
else {
// This will reset the failed flag if previously set.
$harvestCache->setCacheEntryProcessed($identifier, $dataset['title']);
}
}
return $harvestCache;
}
/**
* Get the cache from CKAN.
*
* The endpoint should be
* {CKAN-URL}/api/3/actions/current_package_list_with_resources.
*
* @param HarvestSource $source
* The source.
* @param int $harvest_updatetime
* The last uptime.
*
* @return HarvestCache
* The object HarvestCache.
*/
function _dkan_harvest_ckan_cache_pkg(HarvestSource $source, $harvest_updatetime) {
// This is needed for remote uri.
$context = stream_context_create(
array(
'http' => array(
'timeout' => 36000,
),
'https' => array(
'timeout' => 36000,
),
)
);
$remote = @file_get_contents($source->uri, 0, $context);
if ($remote) {
$data = drupal_json_decode($remote);
// Filter and save the data gathered from the endpoint.
if ($data) {
$v = _dkan_harvest_ckan_pk_cache_json($data, $source, $harvest_updatetime);
return $v;
}
}
}
/**
* Cache the ckan_json datasets.
*
* @param array $data
* The parsed data from remote url.
* @param HarvestSource $source
* Object of type HarvestSource.
* @param int $harvest_updatetime
* The unix timestamp of the update time.
*
* @return HarvestCache
* The object HarvestCache.
*/
function _dkan_harvest_ckan_pk_cache_json(array $data, HarvestSource $source, $harvest_updatetime) {
$harvestCache = new HarvestCache($source, $harvest_updatetime);
// CKAN api/3/action/package_list
if(isset($data['result'])){
$datasets = $data['result'];
}
// v.1 - e.g. data.piemonte.it
else if(isset($data[0])){
$datasets = $data;
}
// Filter datasets, only allow datasets that have the filters value.
$filters = $source->filters;
if (!empty($filters)) {
$datasets = array_filter($datasets, function ($dataset) use ($filters, &$harvestCache) {
$dataset_key = $dataset_title = $dataset;
// Default action is to DROP the dataset if it does not meet the
// filtering criteria.
$accept = FALSE;
foreach ($filters as $filter => $value) {
if (!empty($dataset[$filter]) && !empty($value) && count(array_intersect((array) $value, (array) $dataset[$filter])) > 0) {
// The value to filter is an array and does intersect with the
// dataset value. ACCEPT.
$accept = TRUE;
}
if ($accept) {
// Dataset have at least one filter that match. No need for more
// proccecing.
break;
}
}
if ($accept) {
// Update the cache result object.
$harvestCache->setCacheEntryFiltered($dataset_key, $dataset_title);
}
else {
// This dataset will be dropped from here on.
// Add to the processed count.
$harvestCache->setCacheEntryProcessed($dataset_key, $dataset_title);
}
// Drop the dataset if excluded.
return $accept;
});
}
// Exclude datasets, drop datasets that have the excludes value.
$excludes = $source->excludes;
if (!empty($excludes)) {
$datasets = array_filter($datasets, function ($dataset) use ($excludes, &$harvestCache) {
$dataset_key = $dataset['id'];
// Default action is to accept dataset that does not meet the
// excluding criteria.
$accept = TRUE;
foreach ($excludes as $exclude => $value) {
if (!empty($dataset[$exclude]) && count(array_intersect((array) $value,
(array) $dataset[$exclude])) > 0) {
// The value to exclude is an array and does intersect with the dataset value. Drop.
$accept = FALSE;
}
if (!$accept) {
// Dataset have at least one exclude criterion that matchs.
// No need for more proccecing.
break;
}
}
if (!$accept) {
// Update the cache result object.
// This dataset will be dropped from here on. Add to the processed
// count.
$harvestCache->setCacheEntryExcluded($dataset_key, $dataset_title);
}
// Drop the dataset if excluded.
return $accept;
});
}
// Override field values.
$overrides = $source->overrides;
$datasets = array_map(function ($dataset) use ($overrides, &$harvestCache) {
foreach ($overrides as $override => $value) {
$dataset[$override] = $value[0];
}
return $dataset;
}, $datasets);
// Set default values for empty fields.
$defaults = $source->defaults;
$datasets = array_map(function ($dataset) use ($defaults, &$harvestCache) {
foreach ($defaults as $default => $value) {
if (!isset($dataset[$default])) {
$dataset[$default] = $value[0];
}
}
return $dataset;
}, $datasets);
// TODO add defaults and overriddes?
foreach ($datasets as $dataset) {
$identifier = $dataset;
$dataset_file = implode('/', array($source->getCacheDir(), $identifier));
$data = drupal_json_encode($dataset);
$cached = @file_put_contents($dataset_file, $data);
if (!$cached) {
$harvestCache->setCacheEntryFailed($identifier, $identifier);
}
else {
// This will reset the failed flag if previously set.
$harvestCache->setCacheEntryProcessed($identifier, $identifier);
}
}
return $harvestCache;
}