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
|
<?php
/*
Copyright Ampache.org
All Rights Reserved
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License v2
as published by the Free Software Foundation.
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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
define('NO_SESSION','1');
$path = dirname(__FILE__);
$prefix = realpath($path . '/../');
require_once $prefix . '/lib/init.php';
ob_end_flush();
$catclean = 0; //All off by default
$catverify = 0;
$catadd = 0;
if (count($_SERVER['argv']) == 0) {
$operations_string = "\n\t- All Catalog Operations";
}
if (count($_SERVER['argv']) > 0) {
for ($x = 1; $x < count($_SERVER['argv']); $x++) {
if ($_SERVER['argv'][$x] == "-c") {
$operations_string .= "\n\t- Catalog Clean";
$catclean = 1;
}
elseif ($_SERVER['argv'][$x] == "-v") {
$operations_string .= "\n\t- Catalog Verify";
$catverify = 1;
}
elseif ($_SERVER['argv'][$x] == "-a") {
$operations_string .= "\n\t- Catalog Add";
$catadd = 1;
}
elseif ($_SERVER['argv'][$x] == "-g") {
$operations_string .= "\n\t- Catalog Art Gather";
$artadd = 1;
}
else {
if ($where) $where .= " OR ";
$where .= "name LIKE '%" . Dba::escape(preg_replace("/[^a-z0-9\. -]/i", "", $_SERVER['argv'][$x])) . "%'";
}
}
}
if (count($_SERVER['argv']) != 0 AND $artadd != 1 && $catclean != 1 && $catverify != 1 && $catadd != 1) {
usage();
exit;
}
if ($artadd == 0 && $catclean == 0 && $catverify == 0 && $catadd == 0) { //didn't pass any clean/verify/add arguments
$catclean = 1; //set them all to on
$catverify = 1;
$catadd = 1;
$artadd = 1;
}
echo "Starting Catalog Operations... $operations_string\n";
if ($where) $where = "($where) AND catalog_type='local'";
else $where = "catalog_type='local'";
$sql = "SELECT id FROM catalog";
if ($where) $sql .= " WHERE $where";
$db_results = Dba::read($sql);
ob_start("ob_html_strip",'1024',true);
while ($row = Dba::fetch_row($db_results)) {
$catalog = new Catalog($row['0']);
echo "Reading: $catalog->name";
ob_flush();
echo "\n";
if ($catclean == 1) {
// Clean out dead files
echo _("- Starting Clean - ");
echo "\n";
$catalog->clean_catalog();
echo "------------------\n\n";
}
if ($catverify == 1) {
// Verify Existing
echo _("- Starting Verify - ");
echo "\n";
$catalog->verify_catalog($row['0']);
echo "-------------------\n\n";
}
if ($catadd == 1) {
// Look for new files
echo _("- Starting Add - ");
echo "\n";
$catalog->add_to_catalog();
echo "----------------\n\n";
}
if ($artadd == 1) {
// Look for album art
echo _('Starting Album Art Search');
echo "\n";
$catalog->get_album_art('',1);
echo "----------------\n\n";
}
} // end foreach
ob_end_flush();
echo "\n";
function ob_html_strip($string) {
$string = preg_replace("/update_txt\('.+'\);update_txt\('(.+)','.+'\);/","$1",$string);
$string = preg_replace("/update_.+/","",$string);
$string = strip_tags($string);
$string = preg_replace("/[\r\n]+[\s\t]*[\r\n]+/","\n",$string);
$string = trim($string);
return $string;
} // ob_html_strip
function usage() {
echo _("- Catalog Update -");
echo "\n";
echo _("Usage: catalog_update.inc [CATALOG NAME] [-c|-v|-a|-g]");
echo "\n\t";
echo _("Default behavior is to do all");
echo "\n-c\t";
echo _('Clean Catalogs');
echo "\n-v\t";
echo _('Verify Catalogs');
echo "\n-a\t";
echo _('Add to Catalogs');
echo "\n-g\t";
echo _('Gather Art');
echo "\n";
echo "----------------------------------------------------------";
echo "\n";
}
?>
|