diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-19 08:50:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-19 08:50:35 +0000 |
commit | bc36b9d282aff16dfc794819919897103c94b9bd (patch) | |
tree | 1d3cec755afbf08a595c4164d47a219b2dfa7ed3 /server/random.ajax.php | |
parent | d560bb1c7b7e675ad72af0731df18757bf9d5700 (diff) | |
download | ampache-bc36b9d282aff16dfc794819919897103c94b9bd.tar.gz ampache-bc36b9d282aff16dfc794819919897103c94b9bd.tar.bz2 ampache-bc36b9d282aff16dfc794819919897103c94b9bd.zip |
added some basic random functionality, need to make the advanced page
Diffstat (limited to 'server/random.ajax.php')
-rw-r--r-- | server/random.ajax.php | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/server/random.ajax.php b/server/random.ajax.php new file mode 100644 index 00000000..c64e5807 --- /dev/null +++ b/server/random.ajax.php @@ -0,0 +1,61 @@ +<?php +/* + + Copyright (c) 2001 - 2007 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. + +*/ + +/** + * Sub-Ajax page, requires AJAX_INCLUDE as one + */ +if (AJAX_INCLUDE != '1') { exit; } + +switch ($_REQUEST['action']) { + case 'album': + $album_id = Random::album(); + $album = new Album($album_id); + $songs = $album->get_songs(); + foreach ($songs as $song_id) { + $GLOBALS['user']->playlist->add_object($song_id,'song'); + } + $results['rightbar'] = ajax_include('rightbar.inc.php'); + break; + case 'artist': + $artist_id = Random::artist(); + $artist = new Artist($artist_id); + $songs = $artist->get_songs(); + foreach ($songs as $song_id) { + $GLOBALS['user']->playlist->add_object($song_id,'song'); + } + $results['rightbar'] = ajax_include('rightbar.inc.php'); + break; + case 'playlist': + $playlist_id = Random::playlist(); + $playlist = new Playlist($playlist_id); + $items = $playlist->get_items(); + foreach ($items as $item) { + $GLOBALS['user']->playlist->add_object($item['object_id'],$item['type']); + } + $results['rightbar'] = ajax_include('rightbar.inc.php'); + break; + default: + break; +} // switch on action; + +// We always do this +echo xml_from_array($results); +?> |