forked from omeka/plugin-CollectionTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CollectionTreePlugin.php
455 lines (406 loc) · 14.6 KB
/
CollectionTreePlugin.php
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<?php
/**
* Collection Tree
*
* @copyright Copyright 2007-2012 Roy Rosenzweig Center for History and New Media
* @license http://www.gnu.org/licenses/gpl-3.0.txt GNU GPLv3
*/
/**
* The Collection Tree plugin.
*
* @package Omeka\Plugins\CollectionTree
*/
class CollectionTreePlugin extends Omeka_Plugin_AbstractPlugin
{
/**
* @var array Hooks for the plugin.
*/
protected $_hooks = array(
'install',
'uninstall',
'initialize',
'upgrade',
'config_form',
'config',
'before_save_collection',
'after_save_collection',
'after_delete_collection',
'collections_browse_sql',
'items_browse_sql',
'admin_items_search',
'public_items_search',
'admin_collections_show',
'public_collections_show',
);
/**
* @var array Filters for the plugin.
*/
protected $_filters = array(
'admin_navigation_main',
'public_navigation_main',
'admin_collections_form_tabs',
'items_browse_params',
'collections_select_options',
);
/**
* @var array Options and their default values.
*/
protected $_options = array(
'collection_tree_alpha_order' => 0,
'collection_tree_browse_only_root' => 0,
'collection_tree_show_subcollections' => 0,
'collection_tree_search_descendant' => 0,
);
/**
* Install the plugin.
*
* One collection can have AT MOST ONE parent collection. One collection can
* have ZERO OR MORE child collections.
*/
public function hookInstall()
{
// collection_id must be unique to satisfy the AT MOST ONE parent
// collection constraint.
$sql = "
CREATE TABLE IF NOT EXISTS `{$this->_db->CollectionTree}` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_collection_id` int(10) unsigned NOT NULL,
`collection_id` int(10) unsigned NOT NULL,
`name` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `collection_id` (`collection_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;";
$this->_db->query($sql);
$this->_installOptions();
// Save all collections in the collection_trees table.
$collectionTable = $this->_db->getTable('Collection');
$collections = $this->_db->fetchAll("SELECT id FROM {$this->_db->Collection}");
foreach ($collections as $collection) {
$collectionObj = $collectionTable->find($collection['id']);
$collectionTree = new CollectionTree;
$collectionTree->parent_collection_id = 0;
$collectionTree->collection_id = $collection['id'];
$collectionTree->name = metadata($collectionObj, array('Dublin Core', 'Title'));
$collectionTree->save();
}
}
/**
* Uninstall the plugin.
*/
public function hookUninstall()
{
$sql = "DROP TABLE IF EXISTS {$this->_db->CollectionTree}";
$this->_db->query($sql);
$this->_uninstallOptions();
}
/**
* Initialize the plugin.
*/
public function hookInitialize()
{
// Add translation.
add_translation_source(dirname(__FILE__) . '/languages');
}
/**
* Upgrade from earlier versions.
*/
public function hookUpgrade($args)
{
// Prior to Omeka 2.0, collection names were stored in the collections
// table; now they are stored as Dublin Core Title. This upgrade
// compensates for this by moving the collection names to the
// collection_trees table.
if (version_compare($args['old_version'], '2.0', '<')) {
// Add the name column to the collection_trees table.
$sql = "ALTER TABLE {$this->_db->CollectionTree} ADD `name` TEXT NULL";
$this->_db->query($sql);
// Assign names to their corresponding collection_tree rows.
$collectionTreeTable = $this->_db->getTable('CollectionTree');
$collectionTable = $this->_db->getTable('Collection');
$collections = $this->_db->fetchAll("SELECT id FROM {$this->_db->Collection}");
foreach ($collections as $collection) {
$collectionTree = $collectionTreeTable->findByCollectionId($collection['id']);
if (!$collectionTree) {
$collectionTree = new CollectionTree;
$collectionTree->collection_id = $collection['id'];
$collectionTree->parent_collection_id = 0;
}
$collectionObj = $collectionTable->find($collection['id']);
$collectionTree->name = metadata($collectionObj, array('Dublin Core', 'Title'));
$collectionTree->save();
}
}
}
/**
* Display the config form.
*/
public function hookConfigForm($args)
{
$view = get_view();
echo $view->partial('plugins/collection-tree-config-form.php');
}
/**
* Handle the config form.
*/
public function hookConfig($args)
{
$post = $args['post'];
foreach ($this->_options as $optionKey => $optionValue) {
if (isset($post[$optionKey])) {
set_option($optionKey, $post[$optionKey]);
}
}
}
public function hookBeforeSaveCollection($args)
{
$collection = $args['record'];
$collectionTree = $this->_db->getTable('CollectionTree')->findByCollectionId($collection->id);
if (!$collectionTree) {
return;
}
// Only validate the relationship during a form submission.
if (isset($args['post']['collection_tree_parent_collection_id'])) {
$collectionTree->parent_collection_id = $args['post']['collection_tree_parent_collection_id'];
if (!$collectionTree->isValid()) {
$collection->addErrorsFrom($collectionTree);
}
}
}
/**
* Save the parent/child relationship.
*/
public function hookAfterSaveCollection($args)
{
$collection = $args['record'];
$collectionTree = $this->_db->getTable('CollectionTree')->findByCollectionId($collection->id);
if (!$collectionTree) {
$collectionTree = new CollectionTree;
$collectionTree->collection_id = $collection->id;
$collectionTree->parent_collection_id = 0;
}
// Only save the relationship during a form submission.
if (isset($args['post']['collection_tree_parent_collection_id'])) {
$collectionTree->parent_collection_id = $args['post']['collection_tree_parent_collection_id'];
}
$collectionTree->name = metadata($args['record'], array('Dublin Core', 'Title'));
// Fail silently if the record does not validate.
$collectionTree->save();
}
/**
* Handle collection deletions.
*
* Deleting a collection runs the risk of orphaning a child branch. To
* prevent this, move child collections to the root level. It is the
* responsibility of the administrator to reassign the child branches to the
* appropriate parent collection.
*/
public function hookAfterDeleteCollection($args)
{
$collection = $args['record'];
$collectionTreeTable = $this->_db->getTable('CollectionTree');
// Delete the relationship with the parent collection.
$collectionTree = $collectionTreeTable->findByCollectionId($collection->id);
if ($collectionTree) {
$collectionTree->delete();
}
// Move child collections to root level by deleting their relationships.
$collectionTrees = $collectionTreeTable->findByParentCollectionId($collection->id);
foreach ($collectionTrees as $collectionTree) {
$collectionTree->parent_collection_id = 0;
$collectionTree->save();
}
}
/**
* Hook for collections browse: omit all child collections from the collection
* browse.
*/
public function hookCollectionsBrowseSql($args)
{
if (!is_admin_theme()) {
if (!get_option('collection_tree_browse_only_root')) {
return;
}
$select = $args['select'];
$sql = "
collections.id NOT IN (
SELECT collection_trees.collection_id
FROM {$this->_db->CollectionTree} collection_trees
WHERE collection_trees.parent_collection_id != 0
)";
$select->where($sql);
}
}
/**
* Hook for items browse: search in collection's children and selected one.
*
* @param Omeka_Db_Select $select
* @param array $params
*/
public function hookItemsBrowseSql($args)
{
$params = $args['params'];
if (empty($params['descendant_or_self'])) {
return;
}
$collection = $params['descendant_or_self'] instanceof Collection
// Collection can be an object when not called from search form.
? $params['descendant_or_self']->id
// Else this should be an integer.
: (integer) $params['descendant_or_self'];
if (empty($collection)) {
return;
}
$select = $args['select'];
$collections = $this->_db->getTable('CollectionTree')
->getDescendantOrSelfCollections($collection);
$collections = array_keys($collections);
$select->joinInner(
array('collection_tree_collections' => $this->_db->Collection),
'items.collection_id = collection_tree_collections.id',
array());
// There are descendants.
if (count($collections) > 1) {
$select->where('collection_tree_collections.id IN (?)', $collections);
}
// There is only the collection itself or no collection.
else {
$select->where('collection_tree_collections.id = ?', reset($collections));
}
}
/**
* Hook for admin advanced search.
*
* @return string HTML
*/
public function hookAdminItemsSearch($args)
{
echo $this->_itemsSearch($args);
}
/**
* Hook for public advanced search.
*
* @return string HTML
*/
public function hookPublicItemsSearch($args)
{
echo $this->_itemsSearch($args);
}
/**
* Append items search checkbox to the advanced search page.
*
* @return string HTML
*/
protected function _itemsSearch($args)
{
return '<div class="field">
<div class="two columns alpha">
<label for="subcollections">' . __('Expand to subcollections') . '</label>
</div>
<div class="five columns omega inputs">
' . $args['view']->formCheckbox('subcollections', null, array('checked' => (bool) get_option('collection_tree_search_descendant'))) . '
</div>
</div>';
}
/**
* Display the collection's parent collection and child collections.
*/
public function hookAdminCollectionsShow($args)
{
$this->_appendToCollectionsShow($args['collection']);
}
/**
* Display the collection's parent collection and child collections.
*/
public function hookPublicCollectionsShow($args)
{
$this->_appendToCollectionsShow($args['collection']);
}
protected function _appendToCollectionsShow($collection)
{
$collectionTree = $this->_db->getTable('CollectionTree')->getCollectionTree($collection->id);
echo get_view()->partial(
'collections/collection-tree-list.php',
array('collection_tree' => $collectionTree)
);
}
/**
* Add the collection tree page to the admin navigation.
*/
public function filterAdminNavigationMain($nav)
{
$nav[] = array('label' => __('Collection Tree'), 'uri' => url('collection-tree'));
return $nav;
}
/**
* Add the collection tree page to the public navigation.
*/
public function filterPublicNavigationMain($nav)
{
$nav[] = array('label' => __('Collection Tree'), 'uri' => url('collection-tree'));
return $nav;
}
/**
* Display the parent collection form.
*/
public function filterAdminCollectionsFormTabs($tabs, $args)
{
$collection = $args['collection'];
$collectionTreeTable = $this->_db->getTable('CollectionTree');
$options = $collectionTreeTable->findPairsForSelectForm();
$options = array('0' => __('No parent collection')) + $options;
$collectionTree = $collectionTreeTable->findByCollectionId($collection->id);
if ($collectionTree) {
$parentCollectionId = $collectionTree->parent_collection_id;
} else {
$parentCollectionId = 0;
}
$tabs['Parent Collection'] = get_view()->partial(
'collections/collection-tree-parent-form.php',
array('options' => $options, 'parent_collection_id' => $parentCollectionId)
);
return $tabs;
}
/**
* Filter items browse params to broaden the search to subcollections.
*
* @param array $params
* @return array
*/
public function filterItemsBrowseParams($params)
{
// Check if this is a direct query (not from advanced search).
if (!is_admin_theme()
&& !isset($params['subcollections'])
&& get_option('collection_tree_show_subcollections')
) {
$params['subcollections'] = 1;
}
if (!empty($params['subcollections'])) {
$collection = 0;
if (!empty($params['collection_id'])) {
$collection = $params['collection_id'];
$params['collection_id'] = '';
}
if (!empty($params['collection'])) {
$collection = $params['collection'];
$params['collection'] = '';
}
if ($collection) {
$params['descendant_or_self'] = $collection;
}
}
return $params;
}
/**
* Manage search options for collections.
*
* @param array Search options for collections.
* @return array Filtered search options for collections.
*/
public function filterCollectionsSelectOptions($options)
{
$treeOptions = $this->_db->getTable('CollectionTree')->findPairsForSelectForm();
// Keep only chosen collections, in case another filter removed some.
return array_intersect_key($treeOptions, $options);
}
}