has_access(100)) {
access_denied();
exit;
}
// We'll need this
$catalog = new Catalog($_REQUEST['catalog_id']);
require_once Config::get('prefix') . '/templates/header.inc.php';
/* 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':
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);
break;
case 'update_all_catalogs':
$_REQUEST['catalogs'] = Catalog::get_catalog_ids();
case 'update_catalog':
/* 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);
break;
case 'full_service':
$catalog = new Catalog();
/* Make sure they aren't in demo mode */
if (conf('demo_mode')) { 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) {
echo "
";
$catalog = new Catalog($catalog_id);
$catalog->clean_catalog();
$catalog->count = 0;
$catalog->verify_catalog();
$catalog->count = 0;
$catalog->add_to_catalog();
echo "
";
}
$url = conf('web_path') . '/admin/index.php';
$title = _('Catalog Updated');
$body = '';
show_confirmation($title,$body,$url);
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':
/* 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);
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; }
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 "" . _('Catalog Created') . "
";
Error::display('general');
Error::display('catalog_add');
show_box_bottom();
}
else {
require Config::get('prefix') . '/templates/show_add_catalog.inc.php';
}
break;
case 'clear_stats':
if (Config::get('demo_mode')) { 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_add_catalog':
require Config::get('prefix') . '/templates/show_add_catalog.inc.php';
break;
case 'clear_now_playing':
if (Config::get('demo_mode')) { break; }
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');
}
else {
echo "" . _('No Disabled songs found') . "
";
}
break;
case 'show_delete_catalog':
/* Stop the demo hippies */
if (Config::get('demo_mode')) { break; }
$catalog = new Catalog($_REQUEST['catalog_id']);
$nexturl = Config::get('web_path') . '/admin/catalog.php?action=delete_catalog&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':
require_once Config::get('prefix') . '/templates/show_edit_catalog.inc.php';
break;
case 'gather_album_art':
$catalogs = Catalog::get_catalogs();
foreach ($catalogs as $catalog) {
$catalog_id = $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();
?>