summaryrefslogtreecommitdiffstats
path: root/admin/catalog.php
blob: c9b470ffe6b31299ff62e5d4beb9fdb5abddb3a3 (plain)
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
<?php
/*

 Copyright (c) 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.

*/


require_once '../lib/init.php';

if (!Access::check('interface','100')) {
	access_denied();
	exit; 
}

show_header(); 

/* Big switch statement to handle various actions */
switch ($_REQUEST['action']) {
	case 'fixed':
		delete_flagged($flag);
		$type = 'show_flagged_songs';
		include(conf('prefix') . '/templates/flag.inc');
	break;
	case 'add_to_all_catalogs':
		$catalog = new Catalog();
		$_REQUEST['catalogs'] = $catalog->get_catalog_ids();
	case 'add_to_catalog':
		toggle_visible('ajax-loading'); 
		ob_end_flush(); 
	    	if (Config::get('demo_mode')) { break; }
		if ($_REQUEST['catalogs'] ) {
			foreach ($_REQUEST['catalogs'] as $catalog_id) {
				$catalog = new Catalog($catalog_id);
				$catalog->add_to_catalog();
			}
	       	}
		$url 	= Config::get('web_path') . '/admin/index.php';
		$title 	= _('Catalog Updated');
		$body	= '';
		show_confirmation($title,$body,$url);
		toggle_visible('ajax-loading'); 
	break;
	case 'update_all_catalogs':
		$_REQUEST['catalogs'] = Catalog::get_catalog_ids();
	case 'update_catalog':
		toggle_visible('ajax-loading'); 
		ob_end_flush(); 
	    	/* If they are in demo mode stop here */
	        if (Config::get('demo_mode')) { break; }

		if (isset($_REQUEST['catalogs'])) {
			foreach ($_REQUEST['catalogs'] as $catalog_id) {
				$catalog = new Catalog($catalog_id); 
				$catalog->verify_catalog($catalog_id);
			}
		}
		$url	= Config::get('web_path') . '/admin/index.php';
		$title	= _('Catalog Updated');
		$body	= '';
		show_confirmation($title,$body,$url);
		toggle_visible('ajax-loading'); 
	break;
	case 'full_service':
		toggle_visible('ajax-loading'); 
		ob_end_flush(); 
		/* Make sure they aren't in demo mode */
		if (Config::get('demo_mode')) { access_denied(); break; } 

		if (!$_REQUEST['catalogs']) { 
			$_REQUEST['catalogs'] = Catalog::get_catalog_ids();
		}

		/* This runs the clean/verify/add in that order */
		foreach ($_REQUEST['catalogs'] as $catalog_id) { 
			$catalog = new Catalog($catalog_id);
			$catalog->clean_catalog($catalog_id);
			$catalog->count = 0;
			$catalog->verify_catalog($catalog_id);
			$catalog->count = 0;
			$catalog->add_to_catalog($catalog_id);
		} 		
		$url	= Config::get('web_path') . '/admin/index.php';
		$title	= _('Catalog Updated');
		$body	= '';
		show_confirmation($title,$body,$url);
		toggle_visible('ajax-loading'); 
	break;
	case 'delete_catalog':
		/* Make sure they aren't in demo mode */
	        if (Config::get('demo_mode')) { break; }
	
		/* Delete the sucker, we don't need to check perms as thats done above */
		Catalog::delete($_REQUEST['catalog_id']); 
		$next_url = Config::get('web_path') . '/admin/index.php';
		show_confirmation(_('Catalog Deleted'),_('The Catalog and all associated records have been deleted'),$nexturl);
	break;
	case 'remove_disabled':
	        if (conf('demo_mode')) { break; }

		$song = $_REQUEST['song'];

		if (count($song)) { 
			$catalog->remove_songs($song);
			$body = _('Songs Removed');
		}
		else {
			$body = _('No Songs Removed');
		}
		$url	= conf('web_path') . '/admin/index.php';
		$title	= _('Disabled Songs Processed');
		show_confirmation($title,$body,$url);
	break;
	case 'clean_all_catalogs':
		$catalog = new Catalog(); 
		$_REQUEST['catalogs'] = Catalog::get_catalog_ids();
	case 'clean_catalog':
		toggle_visible('ajax-loading'); 
		ob_end_flush(); 
	    	/* If they are in demo mode stop them here */
	        if (Config::get('demo_mode')) { break; }
	
		// Make sure they checked something
		if (isset($_REQUEST['catalogs'])) {	
			foreach($_REQUEST['catalogs'] as $catalog_id) { 
				$catalog = new Catalog($catalog_id);
				$catalog->clean_catalog(0,1);
			} // end foreach catalogs
		}
		
		$url 	= Config::get('web_path') . '/admin/index.php';
		$title	= _('Catalog Cleaned');
		$body	= '';
		show_confirmation($title,$body,$url);
		toggle_visible('ajax-loading'); 
	break;
	case 'update_catalog_settings':
		/* No Demo Here! */
        	if (Config::get('demo_mode')) { break; }

		/* Update the catalog */
		Catalog::update_settings($_REQUEST);
		
		$url 	= Config::get('web_path') . '/admin/index.php';
		$title 	= _('Catalog Updated');
		$body	= '';
		show_confirmation($title,$body,$url);
	break;
	case 'add_catalog':
		/* Wah Demo! */
		if (Config::get('demo_mode')) { break; }

		ob_end_flush(); 

		if (!strlen($_REQUEST['path']) || !strlen($_REQUEST['name'])) { 
			Error::add('general','Error Name and path not specified'); 
		} 

		if (substr($_REQUEST['path'],0,7) != 'http://' && $_REQUEST['type'] == 'remote') { 
			Error::add('general','Error Remote selected, but path is not a URL'); 
		} 
		
		if ($_REQUEST['type'] == 'remote' && !strlen($_REQUEST['key'])) { 
			Error::add('general','Error Remote Catalog specified, but no key provided'); 
		} 

		// If an error hasn't occured
		if (!Error::$state) { 

			$catalog_id = Catalog::Create($_REQUEST); 

			if (!$catalog_id) { 
				require Config::get('prefix') . '/templates/show_add_catalog.inc.php'; 
				break; 
			} 

			$catalog = new Catalog($catalog_id); 
			
			// Run our initial add
			$catalog->run_add($_REQUEST); 

			show_box_top(); 
			echo "<h2>" .  _('Catalog Created') . "</h2>";
			Error::display('general'); 
			Error::display('catalog_add'); 
			show_box_bottom(); 

			show_confirmation('','','/admin/index.php'); 

		}
		else {
			require Config::get('prefix') . '/templates/show_add_catalog.inc.php';
		}
	break;
	case 'clear_stats':
    		if (Config::get('demo_mode')) { access_denied(); break; }
		
		Catalog::clear_stats(); 
		$url	= Config::get('web_path') . '/admin/index.php';
		$title	= _('Catalog statistics cleared');
		$body	= '';
		show_confirmation($title,$body,$url);
	break;
	case 'show_catalogs': 
		$catalog_ids = Catalog::get_catalogs(); 
		Browse::set_type('catalog'); 
		Browse::set_static_content(1); 
		Browse::save_objects($catalog_ids); 
		Browse::show_objects($catalog_ids); 
	break;
	case 'show_add_catalog':
		require Config::get('prefix') . '/templates/show_add_catalog.inc.php';
	break;
	case 'clear_now_playing':
	        if (Config::get('demo_mode')) { access_denied(); break; }
	    	Stream::clear_now_playing();
		show_confirmation(_('Now Playing Cleared'),_('All now playing data has been cleared'),Config::get('web_path') . '/admin/index.php');
	break;
	case 'show_disabled':
	        if (conf('demo_mode')) { break; }
		
		$songs = $catalog->get_disabled();
		if (count($songs)) { 
			require (conf('prefix') . '/templates/show_disabled_songs.inc.php');
		}
		else {
			echo "<div class=\"error\" align=\"center\">" . _('No Disabled songs found') . "</div>";
		}
	break;
	case 'show_delete_catalog':
		/* Stop the demo hippies */
	        if (Config::get('demo_mode')) { access_denied(); break; } 

		$catalog = new Catalog($_REQUEST['catalog_id']); 	
		$nexturl = Config::get('web_path') . '/admin/catalog.php?action=delete_catalog&amp;catalog_id=' . scrub_out($_REQUEST['catalog_id']);
		show_confirmation(_('Delete Catalog'),_('Do you really want to delete this catalog?') . " -- $catalog->name ($catalog->path)",$nexturl,1);
	break;
	case 'show_customize_catalog':
		$catalog = new Catalog($_REQUEST['catalog_id']); 
		require_once Config::get('prefix') . '/templates/show_edit_catalog.inc.php';
	break;
	case 'gather_album_art':
		toggle_visible('ajax-loading'); 
		ob_end_flush(); 

		$catalogs = $_REQUEST['catalogs'] ? $_REQUEST['catalogs'] : Catalog::get_catalogs();

		// Itterate throught the catalogs and gather as needed
		foreach ($catalogs as $catalog_id) { 
			$catalog = new Catalog($catalog_id);
			require Config::get('prefix') . '/templates/show_gather_art.inc.php'; 
			flush(); 
			$catalog->get_album_art('',1);
		}
		$url 	= Config::get('web_path') . '/admin/index.php';
		$title 	= _('Album Art Search Finished');
		$body	= '';
		show_confirmation($title,$body,$url);
        break;
	default:
		/* Not sure what to put here anymore */
	break;
} // end switch

/* Show the Footer */
show_footer();

?>