summaryrefslogtreecommitdiff
path: root/classes/Profile.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-10-25 13:08:57 -0700
committerBrion Vibber <brion@pobox.com>2010-10-25 13:08:57 -0700
commitca489631db840e33757a71a7e4cb56b187c182d3 (patch)
tree92c71b81b6870a8fd2d9c94bed8571b653d95413 /classes/Profile.php
parent90c87553ee7566593529199374215ae80bb3e209 (diff)
parent01637bcd32921d6857fb7f5c0bbd40fba6bdb830 (diff)
Merge branch '0.9.x' into 1.0.x
Conflicts: actions/subscriptions.php lib/router.php lib/xmppmanager.php lib/xmppoutqueuehandler.php
Diffstat (limited to 'classes/Profile.php')
-rw-r--r--classes/Profile.php71
1 files changed, 40 insertions, 31 deletions
diff --git a/classes/Profile.php b/classes/Profile.php
index 8b05bcbf9..e05b8bf27 100644
--- a/classes/Profile.php
+++ b/classes/Profile.php
@@ -199,7 +199,7 @@ class Profile extends Memcached_DataObject
}
if ($max_id != 0) {
- $query .= " and id < $max_id";
+ $query .= " and id <= $max_id";
}
$query .= ' order by id DESC';
@@ -240,7 +240,7 @@ class Profile extends Memcached_DataObject
}
if ($max_id != 0) {
- $query .= " and id < $max_id";
+ $query .= " and id <= $max_id";
}
$query .= ' order by id DESC';
@@ -401,10 +401,10 @@ class Profile extends Memcached_DataObject
return $profile;
}
- function getApplications($offset = 0, $limit = null)
+ function getConnectedApps($offset = 0, $limit = null)
{
$qry =
- 'SELECT a.* ' .
+ 'SELECT u.* ' .
'FROM oauth_application_user u, oauth_application a ' .
'WHERE u.profile_id = %d ' .
'AND a.id = u.application_id ' .
@@ -419,11 +419,11 @@ class Profile extends Memcached_DataObject
}
}
- $application = new Oauth_application();
+ $apps = new Oauth_application_user();
- $cnt = $application->query(sprintf($qry, $this->id));
+ $cnt = $apps->query(sprintf($qry, $this->id));
- return $application;
+ return $apps;
}
function subscriptionCount()
@@ -758,43 +758,52 @@ class Profile extends Memcached_DataObject
function grantRole($name)
{
- $role = new Profile_role();
+ if (Event::handle('StartGrantRole', array($this, $name))) {
- $role->profile_id = $this->id;
- $role->role = $name;
- $role->created = common_sql_now();
+ $role = new Profile_role();
- $result = $role->insert();
+ $role->profile_id = $this->id;
+ $role->role = $name;
+ $role->created = common_sql_now();
- if (!$result) {
- common_log_db_error($role, 'INSERT', __FILE__);
- return false;
+ $result = $role->insert();
+
+ if (!$result) {
+ throw new Exception("Can't save role '$name' for profile '{$this->id}'");
+ }
+
+ Event::handle('EndGrantRole', array($this, $name));
}
- return true;
+ return $result;
}
function revokeRole($name)
{
- $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
- 'role' => $name));
+ if (Event::handle('StartRevokeRole', array($this, $name))) {
- if (empty($role)) {
- // TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
- // TRANS: %1$s is the role name, %2$s is the user ID (number).
- throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; does not exist.'),$name, $this->id));
- }
+ $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
+ 'role' => $name));
- $result = $role->delete();
+ if (empty($role)) {
+ // TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
+ // TRANS: %1$s is the role name, %2$s is the user ID (number).
+ throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; does not exist.'),$name, $this->id));
+ }
- if (!$result) {
- common_log_db_error($role, 'DELETE', __FILE__);
- // TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
- // TRANS: %1$s is the role name, %2$s is the user ID (number).
- throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; database error.'),$name, $this->id));
- }
+ $result = $role->delete();
- return true;
+ if (!$result) {
+ common_log_db_error($role, 'DELETE', __FILE__);
+ // TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
+ // TRANS: %1$s is the role name, %2$s is the user ID (number).
+ throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; database error.'),$name, $this->id));
+ }
+
+ Event::handle('EndRevokeRole', array($this, $name));
+
+ return true;
+ }
}
function isSandboxed()