-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathislandora_prepare_ingest.install
375 lines (364 loc) · 11.5 KB
/
islandora_prepare_ingest.install
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
<?php
/**
* @file
* Installation hooks.
*
*
* Copyright 2017-2018 Leiden University Library
*
* This file is part of islandora_prepare_ingest.
*
* islandora_prepare_ingest is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* Implements hook_install().
*/
function islandora_prepare_ingest_install() {
drupal_mkdir('public://islandora_prepare_ingest_import');
}
/**
* Implements hook_uninstall().
*/
function islandora_prepare_ingest_uninstall() {
$upload_path = 'public://islandora_prepare_ingest_import';
$removal_files = file_scan_directory($upload_path, '/(.*)/');
foreach ($removal_files as $file) {
@file_delete($file);
}
drupal_rmdir($upload_path);
}
/**
* Implements hook_schema().
*/
function islandora_prepare_ingest_schema() {
$schema = array();
$schema['islandora_prepare_ingest_workflow'] = array(
'description' => 'Holds the prepare ingest workflows.',
'fields' => array(
'id' => array(
'description' => 'The primary key.',
'type' => 'serial',
'not null' => TRUE,
),
'name' => array(
'description' => 'The name of the workflow.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 255,
),
'description' => array(
'description' => 'The description of the workflow.',
'type' => 'text',
'not null' => TRUE,
'length' => 4000,
),
'type' => array(
'description' => 'The type of the workflow, full or partial.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 10,
),
'checked' => array(
'description' => 'If this workflow was checked and approved.',
'type' => 'int',
'not null' => FALSE,
),
),
'primary key' => array('id'),
'unique keys' => array(
'id_unique' => array('id'),
),
'indexes' => array(
'id_index' => array('id'),
),
);
$schema['islandora_prepare_ingest_step'] = array(
'description' => 'Holds one step of a prepare ingest workflow.',
'fields' => array(
'id' => array(
'description' => 'The primary key.',
'type' => 'serial',
'not null' => TRUE,
),
'workflow_id' => array(
'description' => 'The workflow where this step belongs to.',
'type' => 'int',
'not null' => TRUE,
),
'step_name' => array(
'description' => 'The name of the step.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 255,
),
'step_module' => array(
'description' => 'The module where the step resides in.',
'type' => 'text',
'not null' => TRUE,
'length' => 4000,
),
'weight' => array(
'description' => 'The order of the step.',
'type' => 'int',
'not null' => TRUE,
),
),
'primary key' => array('id'),
'unique keys' => array(
'id_unique' => array('id'),
),
'indexes' => array(
'id_index' => array('id'),
'workflow_id_index' => array('workflow_id'),
),
'foreign keys' => array(
'parent_entry' => array(
'table' => 'islandora_prepare_ingest_workflow',
'columns' => array(
'workflow_id' => 'id',
),
),
),
);
$schema['islandora_prepare_ingest_step_config'] = array(
'description' => 'Holds one configuration field of a step of a prepare ingest workflow.',
'fields' => array(
'id' => array(
'description' => 'The primary key.',
'type' => 'serial',
'not null' => TRUE,
),
'step_id' => array(
'description' => 'The step where this config belongs to.',
'type' => 'int',
'not null' => TRUE,
),
'config_key' => array(
'description' => 'The key of the configuration of the step.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 255,
),
'config_value' => array(
'description' => 'The value of the configuration of the step.',
'type' => 'text',
'not null' => TRUE,
'length' => 10000,
),
),
'primary key' => array('id'),
'unique keys' => array(
'id_unique' => array('id'),
),
'indexes' => array(
'id_index' => array('id'),
'step_id_index' => array('step_id'),
),
'foreign keys' => array(
'parent_entry' => array(
'table' => 'islandora_prepare_ingest_step',
'columns' => array(
'step_id' => 'id',
),
),
),
);
$schema['islandora_prepare_ingest_data_cache'] = array(
'description' => 'Holds the cache for all the data that is generated during a workflow run.',
'fields' => array(
'id' => array(
'description' => 'The primary key.',
'type' => 'serial',
'not null' => TRUE,
),
'workflow_id' => array(
'description' => 'The cache is about this workflow.',
'type' => 'int',
'not null' => TRUE,
),
'step_id' => array(
'description' => 'The cache is about this step.',
'type' => 'int',
'not null' => TRUE,
),
'other_id' => array(
'description' => 'Another id to identifiy this cache.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 100,
),
'item_nr' => array(
'description' => 'The cache is about this item nr.',
'type' => 'int',
'not null' => TRUE,
),
'dctimestamp' => array(
'description' => 'The timestamp for this cache entry.',
'type' => 'int',
'not null' => TRUE,
),
'dctype' => array(
'description' => 'The type for this cache entry, is 1 for data and 2 for files.',
'type' => 'int',
'not null' => TRUE,
),
'dckey' => array(
'description' => 'The key of the value of the item nr of the step of type.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 100,
),
'dcvalue' => array(
'description' => 'The value for the key of the item nr of the step of type.',
'type' => 'text',
'not null' => TRUE,
'length' => 65535,
),
),
'primary key' => array('id'),
'unique keys' => array(
'id_unique' => array('id'),
),
'indexes' => array(
'id_index' => array('id'),
'workflow_id_index' => array('workflow_id'),
'workflow_step_other_id_type_index' => array('workflow_id', 'step_id', 'other_id', 'dctype'),
'item_nr_index' => array('item_nr'),
),
'foreign keys' => array(
),
);
$schema['islandora_prepare_ingest_pifs'] = array(
'description' => 'Holds the cache for all the data that is generated during a workflow run.',
'fields' => array(
'id' => array(
'description' => 'The primary key.',
'type' => 'serial',
'not null' => TRUE,
),
'workflow_id' => array(
'description' => 'The pifs cache is about this workflow.',
'type' => 'int',
'not null' => TRUE,
),
'step_id' => array(
'description' => 'The pifs cache is about this step.',
'type' => 'int',
'not null' => TRUE,
),
'other_id' => array(
'description' => 'Another id to identifiy this pifs cache.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 100,
),
'dctimestamp' => array(
'description' => 'The timestamp for this pifs cache entry.',
'type' => 'int',
'not null' => TRUE,
),
'valuetype' => array(
'description' => 'The type for the value of this file cache entry as a bitmask, is 32 for directory, 16 for file, 1 for realpath, 2 for content.',
'type' => 'int',
'not null' => TRUE,
),
'path' => array(
'description' => 'The path of the file or directory.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 1024,
),
'filevalue' => array(
'description' => 'The value of the file, dependent of valuetype: NULL for directories, filepath to real file for valuetype=1 and content for valuetype=2.',
'type' => 'text',
'not null' => NULL,
'length' => 65535,
),
),
'primary key' => array('id'),
'unique keys' => array(
'id_unique' => array('id'),
),
'indexes' => array(
'id_index' => array('id'),
'workflow_id_index' => array('workflow_id'),
'workflow_step_other_id_index' => array('workflow_id', 'step_id', 'other_id'),
'path_index' => array('path'),
),
'foreign keys' => array(
),
);
return $schema;
}
function islandora_prepare_ingest_update_7400() {
if (!db_field_exists('islandora_prepare_ingest_data_cache', 'key') && !db_field_exists('islandora_prepare_ingest_data_cache', 'dckey')) {
$spec = array(
'description' => 'The key of the value of the item nr of the step of type.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 100,
);
db_add_field('islandora_prepare_ingest_data_cache', 'key', $spec);
}
}
function islandora_prepare_ingest_update_7401() {
if (db_field_exists('islandora_prepare_ingest_data_cache', 'timestamp')) {
$spec = array(
'description' => 'The timestamp for this cache entry.',
'type' => 'int',
'not null' => TRUE,
);
db_change_field('islandora_prepare_ingest_data_cache', 'timestamp', 'dctimestamp', $spec);
}
if (db_field_exists('islandora_prepare_ingest_data_cache', 'type')) {
$spec = array(
'description' => 'The type for this cache entry, is 1 for data and 2 for files.',
'type' => 'int',
'not null' => TRUE,
);
db_drop_index('islandora_prepare_ingest_data_cache', 'workflow_step_other_id_type_index');
db_change_field('islandora_prepare_ingest_data_cache', 'type', 'dctype', $spec, array(
'indexes' => array('workflow_step_other_id_type_index' => array('workflow_id', 'step_id', 'other_id', 'dctype'))
));
}
$spec = array(
'description' => 'The key of the value of the item nr of the step of type.',
'type' => 'varchar',
'not null' => TRUE,
'length' => 100,
);
if (db_field_exists('islandora_prepare_ingest_data_cache', 'key')) {
db_change_field('islandora_prepare_ingest_data_cache', 'key', 'dckey', $spec);
}
else {
if (!db_field_exists('islandora_prepare_ingest_data_cache', 'dckey')) {
db_add_field('islandora_prepare_ingest_data_cache', 'dckey', $spec);
}
}
if (db_field_exists('islandora_prepare_ingest_data_cache', 'value')) {
$spec = array(
'description' => 'The value for the key of the item nr of the step of type.',
'type' => 'text',
'not null' => TRUE,
'length' => 65535,
);
db_change_field('islandora_prepare_ingest_data_cache', 'value', 'dcvalue', $spec);
}
}
function islandora_prepare_ingest_update_7402() {
if (!db_table_exists('islandora_prepare_ingest_pifs')) {
db_create_table('islandora_prepare_ingest_pifs', drupal_get_schema_unprocessed('islandora_prepare_ingest', 'islandora_prepare_ingest_pifs'));
}
}