forked from opencultureconsulting/simple-oai-pmh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.php
143 lines (139 loc) · 4.48 KB
/
update.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
<?php
/**
* Simple OAI-PMH 2.0 Data Provider
* Copyright (C) 2017 Sebastian Meyer <[email protected]>
*
* This program 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/>.
*/
// Make this script only executable via commandline interface!
if (php_sapi_name() !== 'cli') {
exit;
}
require __DIR__.'/Configuration/Main.php';
/**
* Format output string
*
* @param string $text
* @param string $format 'green' or 'red'
*
* @return string
*/
function format($text, $format = '') {
switch ($format) {
case 'green':
$text = "\033[0;92m$text\033[0m";
break;
case 'red':
$text = "\033[1;91m$text\033[0m";
break;
default:
break;
}
return $text;
}
// Check mandatory cli arguments
if (empty($argc) || $argc != 3) {
echo "Usage:\n";
echo " php update.php [sourceDir] [metadataPrefix]\n";
echo "\n";
echo "Example:\n";
echo " php update.php /tmp/import oai_dc\n";
echo "\n";
exit;
}
list(, $sourceDir, $metadataPrefix) = $argv;
// Check metadataPrefix
if (empty($config['metadataPrefix'][$metadataPrefix])) {
echo "Error: metadataPrefix $metadataPrefix not defined in oai2config.php\n";
exit;
}
// Check sourceDir permissions
if (!is_dir($sourceDir) || !is_readable($sourceDir)) {
echo "Error: $sourceDir not readable\n";
exit;
}
$sourceDir = rtrim($sourceDir, '/').'/';
// Prepend script's path if dataDir is not an absolute path
$dataDir = rtrim($config['dataDirectory'], '/').'/'.$metadataPrefix.'/';
if (strpos($dataDir, '/') !== 0) {
$dataDir = __DIR__.'/'.$dataDir;
}
// Check dataDir permissions
if (!is_dir($dataDir) || !is_writable($dataDir)) {
echo "Error: $dataDir not writable\n";
exit;
}
// Alright, let's start!
echo "Updating $dataDir from $sourceDir\n";
$todo = [];
$error = false;
$oldFiles = glob($dataDir.'*.xml');
foreach ($oldFiles as $oldFile) {
$todo[pathinfo($oldFile, PATHINFO_FILENAME)] = 'delete';
}
$newFiles = glob($sourceDir.'*.xml');
foreach ($newFiles as $newFile) {
$todo[pathinfo($newFile, PATHINFO_FILENAME)] = 'update';
}
$files = [
'added' => 0,
'updated' => 0,
'deleted' => 0,
'total' => count($newFiles)
];
foreach ($todo as $identifier => $task) {
echo " Checking record $identifier ... ";
if ($task === 'update') {
if (!file_exists($dataDir.$identifier.'.xml')) {
// Add file
if (copy($sourceDir.$identifier.'.xml', $dataDir.$identifier.'.xml')) {
echo format('added', 'green')."\n";
$files['added']++;
} else {
echo format('addition failed', 'red')."\n";
$error = true;
}
} elseif (md5_file($sourceDir.$identifier.'.xml') !== md5_file($dataDir.$identifier.'.xml')) {
// Replace file
if (copy($sourceDir.$identifier.'.xml', $dataDir.$identifier.'.xml')) {
echo format('updated', 'green')."\n";
$files['updated']++;
} else {
echo format('update failed', 'red')."\n";
$error = true;
}
} else {
echo "unchanged\n";
}
} elseif ($task === 'delete') {
if (filesize($dataDir.$identifier.'.xml') !== 0) {
// Truncate file
if (fclose(fopen($dataDir.$identifier.'.xml', 'w'))) {
echo format('deleted', 'green')."\n";
$files['deleted']++;
} else {
echo format('deletion failed', 'red')."\n";
$error = true;
}
} else {
echo "unchanged\n";
}
}
}
echo 'Summary: '.$files['added'].' added, '.$files['updated'].' updated, '.$files['deleted'].' deleted. Total records served: '.$files['total']."\n";
if ($error) {
echo "Update completed, but errors occurred. Please check the logs!\n";
} else {
echo "Update successfully completed!\n";
}