X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FProfile.php;h=b2dab519a1599940733f0c1a9853860db52eeb3c;hb=23a6b4595f37ba523594b57cdd3932e9ed02c2da;hp=1f8e7fc8822abea86d5094a4099f3e5e4f2fe848;hpb=78f9629bf3553a709c99e13f480bd225083e5ca5;p=quix0rs-gnu-social.git diff --git a/classes/Profile.php b/classes/Profile.php index 1f8e7fc882..b2dab519a1 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -120,38 +120,7 @@ class Profile extends Managed_DataObject public function getAvatar($width, $height=null) { - $width = (int) floor($width); - - if (is_null($height)) { - $height = $width; - } - - if (isset($this->_avatars[$width])) { - return $this->_avatars[$width]; - } - - if (Event::handle('StartProfileGetAvatar', array($this, $width, &$avatar))) { - $avatar = Avatar::pkeyGet( - array( - 'profile_id' => $this->id, - 'width' => $width, - 'height' => $height - ) - ); - Event::handle('EndProfileGetAvatar', array($this, $width, &$avatar)); - } - - if (is_null($avatar)) { - // Obviously we can't find an avatar, so let's resize the original! - $avatar = Avatar::newSize($this, $width); - } elseif (!($avatar instanceof Avatar)) { - throw new Exception('Bad Avatar retrieved'); - } - - // cache the avatar for future use - $this->_avatars[$width] = $avatar; - - return $avatar; + return Avatar::byProfile($this, $width, $height); } public function setOriginal($filename) @@ -166,7 +135,7 @@ class Profile extends Managed_DataObject $avatar->filename = $filename; $avatar->original = true; $avatar->url = Avatar::url($filename); - $avatar->created = DB_DataObject_Cast::dateTime(); # current time + $avatar->created = common_sql_now(); // XXX: start a transaction here if (!Avatar::deleteFromProfile($this, true) || !$avatar->insert()) { @@ -242,9 +211,9 @@ class Profile extends Managed_DataObject return $stream->getNotices($offset, $limit, $since_id, $max_id); } - function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0) + function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0, Profile $scoped=null) { - $stream = new ProfileNoticeStream($this); + $stream = new ProfileNoticeStream($this, $scoped); return $stream->getNotices($offset, $limit, $since_id, $max_id); } @@ -574,52 +543,75 @@ class Profile extends Managed_DataObject function avatarUrl($size=AVATAR_PROFILE_SIZE) { - $size = floor($size); - try { - $avatar = $this->getAvatar($size); - return $avatar->displayUrl(); - } catch (Exception $e) { - return Avatar::defaultImage($size); - } + return Avatar::urlByProfile($this, $size); } function getSubscribed($offset=0, $limit=null) { $subs = Subscription::getSubscribedIDs($this->id, $offset, $limit); - $profiles = Profile::listFind('id', $subs); + try { + $profiles = Profile::listFind('id', $subs); + } catch (NoResultException $e) { + return $e->obj; + } return $profiles; } function getSubscribers($offset=0, $limit=null) { $subs = Subscription::getSubscriberIDs($this->id, $offset, $limit); - $profiles = Profile::listFind('id', $subs); + try { + $profiles = Profile::listFind('id', $subs); + } catch (NoResultException $e) { + return $e->obj; + } return $profiles; } - function getTaggedSubscribers($tag) + function getTaggedSubscribers($tag, $offset=0, $limit=null) { $qry = 'SELECT profile.* ' . - 'FROM profile JOIN (subscription, profile_tag, profile_list) ' . + 'FROM profile JOIN subscription ' . 'ON profile.id = subscription.subscriber ' . - 'AND profile.id = profile_tag.tagged ' . - 'AND profile_tag.tagger = profile_list.tagger AND profile_tag.tag = profile_list.tag ' . + 'JOIN profile_tag ON (profile_tag.tagged = subscription.subscriber ' . + 'AND profile_tag.tagger = subscription.subscribed) ' . 'WHERE subscription.subscribed = %d ' . + "AND profile_tag.tag = '%s' " . 'AND subscription.subscribed != subscription.subscriber ' . - 'AND profile_tag.tagger = %d AND profile_tag.tag = "%s" ' . - 'AND profile_list.private = false ' . - 'ORDER BY subscription.created DESC'; + 'ORDER BY subscription.created DESC '; + + if ($offset) { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } $profile = new Profile(); - $tagged = array(); - $cnt = $profile->query(sprintf($qry, $this->id, $this->id, $profile->escape($tag))); + $cnt = $profile->query(sprintf($qry, $this->id, $profile->escape($tag))); - while ($profile->fetch()) { - $tagged[] = clone($profile); - } - return $tagged; + return $profile; + } + + function getTaggedSubscriptions($tag, $offset=0, $limit=null) + { + $qry = + 'SELECT profile.* ' . + 'FROM profile JOIN subscription ' . + 'ON profile.id = subscription.subscribed ' . + 'JOIN profile_tag on (profile_tag.tagged = subscription.subscribed ' . + 'AND profile_tag.tagger = subscription.subscriber) ' . + 'WHERE subscription.subscriber = %d ' . + "AND profile_tag.tag = '%s' " . + 'AND subscription.subscribed != subscription.subscriber ' . + 'ORDER BY subscription.created DESC '; + + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + + $profile = new Profile(); + + $profile->query(sprintf($qry, $this->id, $profile->escape($tag))); + + return $profile; } /** @@ -761,6 +753,11 @@ class Profile extends Managed_DataObject return $cnt; } + function favoriteNotices($own=false, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0) + { + return Fave::stream($this->id, $offset, $limit, $own, $since_id, $max_id); + } + function noticeCount() { $c = Cache::instance(); @@ -845,6 +842,33 @@ class Profile extends Managed_DataObject return ($biolimit > 0 && !empty($bio) && (mb_strlen($bio) > $biolimit)); } + function update($dataObject=false) + { + if (is_object($dataObject) && $this->nickname != $dataObject->nickname) { + try { + $local = $this->getUser(); + common_debug("Updating User ({$this->id}) nickname from {$dataObject->nickname} to {$this->nickname}"); + $origuser = clone($local); + $local->nickname = $this->nickname; + $result = $local->updateKeys($origuser); + if ($result === false) { + common_log_db_error($local, 'UPDATE', __FILE__); + // TRANS: Server error thrown when user profile settings could not be updated. + throw new ServerException(_('Could not update user nickname.')); + } + + // Clear the site owner, in case nickname changed + if ($local->hasRole(Profile_role::OWNER)) { + User::blow('user:site_owner'); + } + } catch (NoSuchUserException $e) { + // Nevermind... + } + } + + return parent::update($dataObject); + } + function delete() { $this->_deleteNotices(); @@ -1128,7 +1152,7 @@ class Profile extends Managed_DataObject * @param $right string Name of the right, usually a constant in class Right * @return boolean whether the user has the right in question */ - function hasRight($right) + public function hasRight($right) { $result = false; @@ -1194,12 +1218,13 @@ class Profile extends Managed_DataObject return $result; } - function hasRepeated($notice_id) + // FIXME: Can't put Notice typing here due to ArrayWrapper + public function hasRepeated($notice) { // XXX: not really a pkey, but should work $notice = Notice::pkeyGet(array('profile_id' => $this->id, - 'repeat_of' => $notice_id)); + 'repeat_of' => $notice->id)); return !empty($notice); } @@ -1326,6 +1351,26 @@ class Profile extends Managed_DataObject return $uri; } + /** + * Returns an assumed acct: URI for a profile. Plugins are required. + * + * @return string $uri + */ + public function getAcctUri() + { + $acct = null; + + if (Event::handle('StartGetProfileAcctUri', array($this, &$acct))) { + Event::handle('EndGetProfileAcctUri', array($this, &$acct)); + } + + if ($acct === null) { + throw new ProfileNoAcctUriException($this); + } + + return $acct; + } + function hasBlocked($other) { $block = Profile_block::exists($this, $other); @@ -1353,7 +1398,7 @@ class Profile extends Managed_DataObject $profile = null; if (Event::handle('StartGetProfileFromURI', array($uri, &$profile))) { - // Get a local user or remote (OMB 0.1) profile + // Get a local user $user = User::getKV('uri', $uri); if (!empty($user)) { $profile = $user->getProfile();