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
283
284
285
286
287
288
|
<?php
/*
Copyright 2001 - 2006 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
as published by the Free Software Foundation; either version 2
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, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* Genre Class
* This class takes care of the genre object
*/
class Genre {
/* Variables */
var $id;
var $name;
/**
* Constructor
* @package Genre
* @catagory Constructor
*/
function Genre($genre_id=0) {
if ($genre_id > 0) {
$this->id = intval($genre_id);
$info = $this->_get_info();
$this->name = $info['name'];
}
} // Genre
/**
* Private Get Info
* This simply returns the information for this genre
* @package Genre
* @catagory Class
*/
function _get_info() {
$sql = "SELECT * FROM " . tbl_name('genre') . " WHERE id='$this->id'";
$db_results = mysql_query($sql, dbh());
$results = mysql_fetch_assoc($db_results);
return $results;
} // _get_info()
/**
* format_genre
* this reformats the genre object so it's all purdy and creates a link var
* @package Genre
* @catagory Class
*/
function format_genre() {
$this->link = "<a href=\"" . conf('web_path') . "/genre.php?action=show_genre&genre_id=" . $this->id . "\">" . $this->name . "</a>";
$this->play_link = conf('web_path') . "/song.php?action=genre&genre=" . $this->id;
$this->random_link = conf('web_path') . "/song.php?action=random_genre&genre=" . $this->id;
} // format_genre
/**
* get_song_count
* This returns the number of songs in said genre
* @package Genre
* @catagory Class
*/
function get_song_count() {
$sql = "SELECT count(song.id) FROM song WHERE genre='" . $this->id . "'";
$db_results = mysql_query($sql, dbh());
$total_items = mysql_fetch_array($db_results);
return $total_items[0];
} // get_song_count
/**
* get_album_count
* Returns the number of albums that contain a song of this genre
* @package Genre
* @catagory Class
*/
function get_album_count() {
$sql = "SELECT COUNT(DISTINCT(song.album)) FROM song WHERE genre='" . $this->id . "'";
$db_results = mysql_query($sql, dbh());
$total_items = mysql_fetch_array($db_results);
return $total_items[0];
} // get_album_count
/**
* get_artist_count
* Returns the number of artists who have at least one song in this genre
* @package Genre
* @catagory Class
*/
function get_artist_count() {
$sql = "SELECT COUNT(DISTINCT(song.artist)) FROM song WHERE genre='" . $this->id . "'";
$db_results = mysql_query($sql, dbh());
$total_items = mysql_fetch_array($db_results);
return $total_items[0];
} // get_artist_count
/**
* get_songs
* This gets all of the songs in this genre and returns an array of song objects
* @package Genre
* @catagory Class
*/
function get_songs() {
$sql = "SELECT song.id FROM song WHERE genre='" . $this->id . "'";
$db_results = mysql_query($sql, dbh());
$results = array();
while ($r = mysql_fetch_assoc($db_results)) {
$results[] = $r['id'];
}
return $results;
} // get_songs
/**
* get_random_songs
* This is the same as get_songs except it returns a random assortment of songs from this
* genre
* @package Genre
* @catagory Class
*/
function get_random_songs() {
$limit = rand(1,$this->get_song_count());
$sql = "SELECT song.id FROM song WHERE genre='" . $this->id . "' ORDER BY RAND() LIMIT $limit";
$db_results = mysql_query($sql, dbh());
$results = array();
while ($r = mysql_fetch_assoc($db_results)) {
$results[] = $r['id'];
}
return $results;
} // get_random_songs
/**
* get_albums
* This gets all of the albums that have at least one song in this genre
* @package Genre
* @catagory Class
*/
function get_albums() {
$sql = "SELECT DISTINCT(song.album) FROM song WHERE genre='" . $this->id . "'";
$db_results = mysql_query($sql,dbh());
$results = array();
while ($r = mysql_fetch_assoc($db_results)) {
$album = new Album($r['album']);
$album->format_album();
$results[] = $album;
}
return $results;
} // get_albums
/**
* get_artists
* This gets all of the artists who have at least one song in this genre
* @package Genre
* @catagory Class
*/
function get_artists() {
$sql = "SELECT DISTINCT(song.artist) FROM song WHERE genre='" . $this->id . "'";
$db_results = mysql_query($sql, dbh());
$results = array();
while ($r = mysql_fetch_assoc($db_results)) {
$results[] = get_artist_info($r['artist']);
}
return $results;
} // get_artists
/**
* get_genres
* this returns an array of genres based on a sql statement that's passed
* @package Genre
* @catagory Class
*/
function get_genres($sql) {
$db_results = mysql_query($sql, dbh());
$results = array();
while ($r = mysql_fetch_assoc($db_results)) {
$results[] = new Genre($r['id']);
}
return $results;
} // get_genres
/**
* get_sql_from_match
* This is specificly for browsing it takes the match and returns the sql call that we want to use
* @package Genre
* @catagory Class
*/
function get_sql_from_match($match) {
switch ($match) {
case 'Show_All':
case 'show_all':
$sql = "SELECT id FROM genre";
break;
case 'Browse':
case 'show_genres':
$sql = "SELECT id FROM genre";
break;
default:
$sql = "SELECT id FROM genre WHERE name LIKE '" . sql_escape($match) . "%'";
break;
} // end switch on match
return $sql;
} // get_sql_from_match
/**
* show_match_list
* This shows the Alphabet list and any other 'things' that genre by need at the top of every browse
* page
* @package Genre
* @catagory Class
*/
function show_match_list($match) {
require (conf('prefix') . '/templates/show_box_top.inc.php');
show_alphabet_list('genre','browse.php',$match,'genre');
/* Detect if it's Browse, and if so don't fill it in */
if ($match == 'Browse') { $match = ''; }
show_alphabet_form($match,_('Show Genres starting with'),"browse.php?action=genre&match=$match");
require (conf('prefix') . '/templates/show_box_bottom.inc.php');
} // show_match_list
} //end of genre class
?>
|