summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-10-26 11:19:47 -0400
committerEvan Prodromou <evan@status.net>2010-10-26 11:19:47 -0400
commit511566a132734b44fb709d69023a86423dbf20ec (patch)
tree84d7067b1dd67dfaa9f7cbc737e9f263ea7cbf3f
parentc09487f272e247d7c6fd8cd3d785454d2385fe3d (diff)
userrole.php will take a profile id for remote profiles
-rw-r--r--scripts/userrole.php17
1 files changed, 11 insertions, 6 deletions
diff --git a/scripts/userrole.php b/scripts/userrole.php
index 7b6a9b3fd..a2cc7def8 100644
--- a/scripts/userrole.php
+++ b/scripts/userrole.php
@@ -38,8 +38,8 @@ require_once INSTALLDIR.'/scripts/commandline.inc';
if (have_option('i', 'id')) {
$id = get_option_value('i', 'id');
- $user = User::staticGet('id', $id);
- if (empty($user)) {
+ $profile = Profile::staticGet('id', $id);
+ if (empty($profile)) {
print "Can't find user with ID $id\n";
exit(1);
}
@@ -50,6 +50,11 @@ if (have_option('i', 'id')) {
print "Can't find user with nickname '$nickname'\n";
exit(1);
}
+ $profile = $user->getProfile();
+ if (empty($profile)) {
+ print "User with ID $id has no profile\n";
+ exit(1);
+ }
} else {
print "You must provide either an ID or a nickname.\n";
exit(1);
@@ -63,9 +68,9 @@ if (empty($role)) {
}
if (have_option('d', 'delete')) {
- print "Revoking role '$role' from user '$user->nickname' ($user->id)...";
+ print "Revoking role '$role' from user '$profile->nickname' ($profile->id)...";
try {
- $user->revokeRole($role);
+ $profile->revokeRole($role);
print "OK\n";
} catch (Exception $e) {
print "FAIL\n";
@@ -73,9 +78,9 @@ if (have_option('d', 'delete')) {
print "\n";
}
} else {
- print "Granting role '$role' to user '$user->nickname' ($user->id)...";
+ print "Granting role '$role' to user '$profile->nickname' ($profile->id)...";
try {
- $user->grantRole($role);
+ $profile->grantRole($role);
print "OK\n";
} catch (Exception $e) {
print "FAIL\n";