summaryrefslogtreecommitdiffstats
path: root/admin/users.php
blob: 72e99132e64aee5c8bd149442459462a6abb7224 (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
<?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(); 

// Switch on the actions  
switch ($_REQUEST['action']) {
	case 'update_user':
	        if (Config::get('demo_mode')) { break; }
		
		if (!Core::form_verify('edit_user','post')) { 
			access_denied(); 
			exit; 
		} 

		/* Clean up the variables */
		$user_id	= scrub_in($_POST['user_id']);
		$username 	= scrub_in($_POST['username']);
		$fullname 	= scrub_in($_POST['fullname']);
		$email 		= scrub_in($_POST['email']);
		$access 	= scrub_in($_POST['access']);
		$pass1 		= scrub_in($_POST['password_1']);
		$pass2 		= scrub_in($_POST['password_2']);
	
		/* Setup the temp user */	
	    	$client = new User($user_id);
	
		/* Verify Input */
		if (empty($username)) { 
			Error::add('username',_("Error Username Required"));
		}
		if ($pass1 !== $pass2 && !empty($pass1)) { 
			Error::add('password',_("Error Passwords don't match"));
		}

		/* If we've got an error then break! */
		if (Error::occurred()) { 
			$_REQUEST['action'] = 'show_edit';
			break;
		} // if we've had an oops!

		if ($access != $client->access) { 
			$client->update_access($access);
		}
		if ($email != $client->email) { 
			$client->update_email($email);
		}
		if ($username != $client->username) { 
			$client->update_username($username);
		} 
		if ($fullname != $client->fullname) {
			$client->update_fullname($fullname);
		}
		if ($pass1 == $pass2 && strlen($pass1)) { 
			$client->update_password($pass1);
		} 
		
		show_confirmation(_('User Updated'), $client->fullname . "(" . $client->username . ")" . _('updated'),'admin/users.php');
	break;
	case 'add_user':
        	if (Config::get('demo_mode')) { break; }

                if (!Core::form_verify('add_user','post')) { 
                        access_denied();
                        exit;
                } 

		$username	= scrub_in($_POST['username']);
		$fullname	= scrub_in($_POST['fullname']);
		$email		= scrub_in($_POST['email']);
		$access		= scrub_in($_POST['access']);
		$pass1		= scrub_in($_POST['password_1']);
		$pass2		= scrub_in($_POST['password_2']);

		if ($pass1 !== $pass2 || !strlen($pass1)) { 
			Error::add('password',_("Error Passwords don't match"));
		}

		if (empty($username)) { 
			Error::add('username',_('Error Username Required'));
		}

		/* make sure the username doesn't already exist */
		if (!User::check_username($username)) { 
			Error::add('username',_('Error Username already exists'));
		} 

		if (!Error::occurred()) { 
			/* Attempt to create the user */
			$user_id = User::create($username, $fullname, $email, $pass1, $access);
			if (!$user_id) { 
				Error::add('general',"Error: Insert Failed");
			}
			
		} // if no errors
		else { 
			$_REQUEST['action'] = 'show_add_user';
			break;
		}
		if ($access == 5){ $access = _('Guest');}
		elseif ($access == 25){ $access = _('User');}
		elseif ($access == 100){ $access = _('Admin');}
		
		show_confirmation(_('New User Added'),__('%user% has been created with an access level of ' . $access,'%user%',$username),'admin/users.php');	
	break;
	case 'enable':
		$client = new User($_REQUEST['user_id']); 
		$client->enable(); 
		show_confirmation(_('User Enabled'),'','admin/users.php'); 
	break;
	case 'disable':
		$client = new User($_REQUEST['user_id']); 
		if ($client->disable()) { 
			show_confirmation(_('User Disabled'),'','admin/users.php'); 
		} 
		else { 
			show_confirmation(_('Error'),_('Unable to Disabled last Administrator'),'admin/users.php'); 
		} 
	break;

} // End Work Switch


/**
 * This is the second half, it handles displaying anything
 * the first half (work half) potentially has 'adjusted' the user
 * input
 */
switch ($_REQUEST['action']) { 
	case 'show_edit':
        	if (Config::get('demo_mode')) { break; }
		$client	= new User($_REQUEST['user_id']); 
		require_once Config::get('prefix') . '/templates/show_edit_user.inc.php';
	break;
	case 'confirm_delete':
	        if (Config::get('demo_mode')) { break; }
		$client = new User($_REQUEST['user_id']); 
		if ($client->delete()) { 
			show_confirmation(_('User Deleted'), "$client->username has been Deleted","admin/users.php");
		}
		else { 
			show_confirmation(_('Delete Error'), _("Unable to delete last Admin User"),"admin/users.php");
		}
	break;
	case 'delete':
        	if (Config::get('demo_mode')) { break; }
		$client = new User($_REQUEST['user_id']); 
		show_confirmation(_('Deletion Request'),
			_('Are you sure you want to permanently delete') . " $client->fullname ($client->username)?",
			"admin/users.php?action=confirm_delete&amp;user_id=" . $_REQUEST['user_id'],1);
	break;
	/* Show IP History for the Specified User */
	case 'show_ip_history':
		/* get the user and their history */
		$working_user	= new User($_REQUEST['user_id']); 
		
		if (!isset ($_REQUEST['all'])){
			$history	= $working_user->get_ip_history('',1);
		} 
		else {
			$history	= $working_user->get_ip_history('','');
		}
		require Config::get('prefix') . '/templates/show_ip_history.inc.php';
	break;
	case 'show_add_user':
	        if (Config::get('demo_mode')) { break; }
		require_once Config::get('prefix') . '/templates/show_add_user.inc.php';
	break;
	case 'show_preferences': 
		$client = new User($_REQUEST['user_id']); 
		$preferences = Preference::get_all($client->id); 	
		require_once Config::get('prefix') . '/templates/show_user_preferences.inc.php';
	break;
	default:
		Browse::reset_filters();
		Browse::set_type('user'); 
		Browse::set_simple_browse(1);
		Browse::set_sort('name','ASC');
		$user_ids = Browse::get_objects(); 
		Browse::show_objects($user_ids); 
	break;
} // end switch on action

/* Show the footer */
show_footer();

?>