4 * StatusNet - a distributed open-source microblogging tool
5 * Copyright (C) 2008, 2009, StatusNet, Inc.
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
23 $shortoptions = 'i:n:r:d';
24 $longoptions = array('id=', 'nickname=', 'role=', 'delete');
26 $helptext = <<<END_OF_USERROLE_HELP
27 userrole.php [options]
28 modifies a role for the given user
30 Available roles: owner moderator administrator sandboxed silenced deleted
32 -d --delete delete the role
33 -i --id ID of the user
34 -n --nickname nickname of the user
35 -r --role role to add (or delete)
39 require_once INSTALLDIR.'/scripts/commandline.inc';
41 if (have_option('i', 'id')) {
42 $id = get_option_value('i', 'id');
43 $profile = Profile::getKV('id', $id);
44 if (empty($profile)) {
45 print "Can't find user with ID $id\n";
48 } else if (have_option('n', 'nickname')) {
49 $nickname = get_option_value('n', 'nickname');
50 $user = User::getKV('nickname', $nickname);
52 print "Can't find user with nickname '$nickname'\n";
55 $profile = $user->getProfile();
56 if (empty($profile)) {
57 print "User with ID $id has no profile\n";
61 print "You must provide either an ID or a nickname.\n";
65 $role = get_option_value('r', 'role');
68 print "You must provide a role.\n";
72 if (have_option('d', 'delete')) {
73 print "Revoking role '$role' from user '$profile->nickname' ($profile->id)...";
75 $profile->revokeRole($role);
77 } catch (Exception $e) {
79 print $e->getMessage();
83 print "Granting role '$role' to user '$profile->nickname' ($profile->id)...";
85 $profile->grantRole($role);
87 } catch (Exception $e) {
89 print $e->getMessage();