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
|
<?php
/*
Copyright (c) 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.
*/
/*
Do most of the dirty work of displaying the mp3 catalog
*/
require_once('lib/init.php');
if (!isset($_REQUEST['match'])) { $_REQUEST['match'] = "Browse"; }
if (!isset($_REQUEST['action'])) { $_REQUEST['action'] = "match"; }
$action = scrub_in($_REQUEST['action']);
show_template('header');
switch($action) {
case 'show':
case 'Show':
show_alphabet_list('artists','artists.php');
$artist = new Artist($_REQUEST['artist']);
$artist->show_albums();
break;
case 'show_all_songs':
$artist = new Artist($_REQUEST['artist']);
$artist->format_artist();
$song_ids = $artist->get_song_ids();
$artist_id = $artist->id;
require(conf('prefix') . '/templates/show_artist_box.inc.php');
show_songs($song_ids);
break;
case 'update_from_tags':
$artist = new Artist($_REQUEST['artist']);
echo "<br /><b>" . _("Starting Update from Tags") . ". . .</b><br />\n";
$catalog = new Catalog();
$catalog->update_single_item('artist',$_REQUEST['artist']);
echo "<br /><b>" . _("Update From Tags Complete") . "</b> ";
echo "<a href=\"" . conf('web_path') . "/artists.php?action=show&artist=" . $_REQUEST['artist'] . "\">[" . _("Return") . "]</a>";
break;
case 'rename_similar':
if (!$user->has_access('100')) { access_denied(); }
$count = 0;
if (isset($_REQUEST['artist']) && is_numeric($_REQUEST['artist']) && isset($_REQUEST['artists']) && is_array($_REQUEST['artists'])) {
$artist = new Artist($_REQUEST['artist']);
if ($artist->id)
foreach ($_REQUEST['artists'] as $artist_id) {
if (is_numeric($artist_id)) {
$that_artist = new Artist($artist_id);
if ($that_artist->id) {
$that_artist->merge($artist->id);
$count++;
} else
$GLOBALS['error']->add_error('general',"Error: No such artist '$artist_id'");
} else {
$GLOBALS['error']->add_error('general',"Error: '$artist_id' is not a valid ID");
}
}
else
$GLOBALS['error']->add_error('general',"Error: No such artist '" . $_REQUEST['artist'] . "'");
} else {
$GLOBALS['error']->add_error('general',"Error: Errenous request");
}
if ($count > 0) {
show_confirmation (
"Renamed artist(s)",
"$count artists have been merged with " . $artist->name,
conf('web_path') . "/artists.php?action=show&artist=" . $artist->id
);
} else {
$GLOBALS['error']->print_error('general');
}
break;
case 'show_similar':
if (!$user->has_access('100')) { access_denied(); }
if (isset($_REQUEST['artist'])) {
$artist = new Artist($_REQUEST['artist']);
//options
$similar_artists = $artist->get_similar_artists(
make_bool($_POST['n_rep_uml']),
$_POST['n_filter'],
$_POST['n_ignore'],
$_POST['c_mode'],
$_POST['c_count_w'],
$_POST['c_percent_w'],
$_POST['c_distance_l'],
make_bool($_POST['c_ignins_l']));
$artist_id = $artist->id;
$artist_name = $artist->name;
require (conf('prefix') . '/templates/show_similar_artists.inc');
} else {
$GLOBALS['error']->add_error('general',"Error: No artist given");
}
break;
case 'rename':
//die if not enough permissions
if (!$user->has_access('100')) { access_denied(); }
/* Get the artist */
$artist = new Artist($_REQUEST['artist']);
$catalog = new Catalog();
//check if we've been given a target
if ((isset($_POST['artist_id']) && $_POST['artist_id'] != $artist->id ) || (isset($_POST['artist_name']) && $_POST['artist_name'] != "")) {
//if we want to update id3 tags, then get the array of ids now, it's too late afterwards
if (make_bool($_POST['update_id3']))
$songs = $artist->get_songs();
$ret = 0;
//the manual rename takes priority, but if they tested out the insert thing ignore
if ($_POST['artist_name'] != "" && $_POST['artist_name'] != $artist->name) {
//then just change the name of the artist in the db
$ret = $artist->rename($_POST['artist_name']);
$newid = $ret;
$newname = $_POST['artist_name'];
}
//new id?
elseif ($_POST['artist_id'] != $artist->id) {
//merge with other artist
$ret = $artist->merge($_POST['artist_id']);
$newid = $_POST['artist_id'];
$newname = $ret;
} // elseif different artist and id
//if no changes, no changes
//now flag for id3tag update if selected, and something actually happaned
if ($ret && make_bool($_POST['update_id3'])) {
/* Set the rename information in the db */
foreach ($songs as $song) {
$flag = new Flag();
$flag->add($song->id,"song","retag","Renamed artist, retag");
$flag_qstring = "REPLACE INTO flagged " .
"SET type = 'setid3', song = '" . $song->id . "', date = '" . time() . "', user = '" . $GLOBALS['user']->username . "'";
mysql_query($flag_qstring, dbh());
}
} // end if they wanted to update
// show something other than a blank screen after this
if ($ret) {
show_confirmation (
"Renamed artist",
$artist->name . " is now known as " . $newname,
conf('web_path') . "/artists.php?action=show&artist=" . $newid
);
}
} // if we've got the needed variables
/* Else we've got an error! But be lenient, and just show the form again */
else {
require (conf('prefix') . '/templates/show_rename_artist.inc.php');
}
break;
case 'show_rename':
$artist = new Artist($_REQUEST['artist']);
require (conf('prefix') . '/templates/show_rename_artist.inc.php');
break;
case 'match':
case 'Match':
$match = scrub_in($_REQUEST['match']);
if ($match == "Browse" || $match == "Show_all") { $chr = ""; }
else { $chr = $match; }
/* Enclose this in the purty box! */
require (conf('prefix') . '/templates/show_box_top.inc.php');
show_alphabet_list('artists','artists.php',$match);
show_alphabet_form($chr,_('Show Artists starting with'),"artists.php?action=match");
require (conf('prefix') . '/templates/show_box_bottom.inc.php');
if ($match === "Browse") {
show_artists();
}
elseif ($match === "Show_all") {
$_SESSION['view_offset_limit'] = 999999;
show_artists();
}
else {
if ($chr == '') {
show_artists('A');
}
else {
show_artists($chr);
}
}
break;
default:
//FIXME: This is being moved to browse
show_alphabet_list('artists','artists.php');
show_alphabet_form('',_("Show Artists starting with"),"artists.php?action=match");
show_artists('A');
break;
} // end switch
show_footer();
?>
|