3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('GNUSOCIAL')) { exit(1); }
23 * Table Definition for user
26 class User extends Managed_DataObject
28 const SUBSCRIBE_POLICY_OPEN = 0;
29 const SUBSCRIBE_POLICY_MODERATE = 1;
32 /* the code below is auto generated do not remove the above tag */
34 public $__table = 'user'; // table name
35 public $id; // int(4) primary_key not_null
36 public $nickname; // varchar(64) unique_key
37 public $password; // varchar(255)
38 public $email; // varchar(255) unique_key
39 public $incomingemail; // varchar(255) unique_key
40 public $emailnotifysub; // tinyint(1) default_1
41 public $emailnotifyfav; // tinyint(1) default_1
42 public $emailnotifynudge; // tinyint(1) default_1
43 public $emailnotifymsg; // tinyint(1) default_1
44 public $emailnotifyattn; // tinyint(1) default_1
45 public $emailmicroid; // tinyint(1) default_1
46 public $language; // varchar(50)
47 public $timezone; // varchar(50)
48 public $emailpost; // tinyint(1) default_1
49 public $sms; // varchar(64) unique_key
50 public $carrier; // int(4)
51 public $smsnotify; // tinyint(1)
52 public $smsreplies; // tinyint(1)
53 public $smsemail; // varchar(255)
54 public $uri; // varchar(255) unique_key
55 public $autosubscribe; // tinyint(1)
56 public $subscribe_policy; // tinyint(1)
57 public $urlshorteningservice; // varchar(50) default_ur1.ca
58 public $inboxed; // tinyint(1)
59 public $private_stream; // tinyint(1) default_0
60 public $created; // datetime() not_null
61 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
63 /* the code above is auto generated do not remove the tag below */
66 public static function schemaDef()
69 'description' => 'local users',
71 'id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'),
72 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'nickname or username, duped in profile'),
73 'password' => array('type' => 'varchar', 'length' => 255, 'description' => 'salted password, can be null for OpenID users'),
74 'email' => array('type' => 'varchar', 'length' => 255, 'description' => 'email address for password recovery etc.'),
75 'incomingemail' => array('type' => 'varchar', 'length' => 255, 'description' => 'email address for post-by-email'),
76 'emailnotifysub' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of subscriptions'),
77 'emailnotifyfav' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of favorites'),
78 'emailnotifynudge' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of nudges'),
79 'emailnotifymsg' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of direct messages'),
80 'emailnotifyattn' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of @-replies'),
81 'emailmicroid' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'whether to publish email microid'),
82 'language' => array('type' => 'varchar', 'length' => 50, 'description' => 'preferred language'),
83 'timezone' => array('type' => 'varchar', 'length' => 50, 'description' => 'timezone'),
84 'emailpost' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Post by email'),
85 'sms' => array('type' => 'varchar', 'length' => 64, 'description' => 'sms phone number'),
86 'carrier' => array('type' => 'int', 'description' => 'foreign key to sms_carrier'),
87 'smsnotify' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS'),
88 'smsreplies' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS on replies'),
89 'smsemail' => array('type' => 'varchar', 'length' => 255, 'description' => 'built from sms and carrier'),
90 'uri' => array('type' => 'varchar', 'length' => 255, 'description' => 'universally unique identifier, usually a tag URI'),
91 'autosubscribe' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'automatically subscribe to users who subscribe to us'),
92 'subscribe_policy' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => '0 = anybody can subscribe; 1 = require approval'),
93 'urlshorteningservice' => array('type' => 'varchar', 'length' => 50, 'default' => 'internal', 'description' => 'service to use for auto-shortening URLs'),
94 'inboxed' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'has an inbox been created for this user?'),
95 'private_stream' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to limit all notices to followers only'),
97 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
98 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
100 'primary key' => array('id'),
101 'unique keys' => array(
102 'user_nickname_key' => array('nickname'),
103 'user_email_key' => array('email'),
104 'user_incomingemail_key' => array('incomingemail'),
105 'user_sms_key' => array('sms'),
106 'user_uri_key' => array('uri'),
108 'foreign keys' => array(
109 'user_id_fkey' => array('profile', array('id' => 'id')),
110 'user_carrier_fkey' => array('sms_carrier', array('carrier' => 'id')),
113 'user_smsemail_idx' => array('smsemail'),
118 protected $_profile = null;
123 * @throws UserNoProfileException if user has no profile
125 public function getProfile()
127 if (!($this->_profile instanceof Profile)) {
128 $this->_profile = Profile::getKV('id', $this->id);
129 if (!($this->_profile instanceof Profile)) {
130 throw new UserNoProfileException($this);
134 return $this->_profile;
137 function isSubscribed(Profile $other)
139 return $this->getProfile()->isSubscribed($other);
142 function hasPendingSubscription($other)
144 return $this->getProfile()->hasPendingSubscription($other);
147 // 'update' won't write key columns, so we have to do it ourselves.
149 function updateKeys(&$orig)
153 foreach (array('nickname', 'email', 'incomingemail', 'sms', 'carrier', 'smsemail') as $k) {
154 if (strcmp($this->$k, $orig->$k) != 0) {
155 $parts[] = $k . ' = ' . $this->_quote($this->$k);
158 if (count($parts) == 0) {
162 $toupdate = implode(', ', $parts);
164 $table = common_database_tablename($this->tableName());
165 $qry = 'UPDATE ' . $table . ' SET ' . $toupdate .
166 ' WHERE id = ' . $this->id;
168 $result = $this->query($qry);
176 * Get the most recent notice posted by this user, if any.
178 * @return mixed Notice or null
180 function getCurrentNotice()
182 return $this->getProfile()->getCurrentNotice();
185 function getCarrier()
187 return Sms_carrier::getKV('id', $this->carrier);
190 function hasBlocked($other)
192 return $this->getProfile()->hasBlocked($other);
196 * Register a new user account and profile and set up default subscriptions.
197 * If a new-user welcome message is configured, this will be sent.
199 * @param array $fields associative array of optional properties
202 * bool 'email_confirmed' pass true to mark email as pre-confirmed
205 * string 'location' informal string description of geolocation
206 * float 'lat' decimal latitude for geolocation
207 * float 'lon' decimal longitude for geolocation
208 * int 'location_id' geoname identifier
209 * int 'location_ns' geoname namespace to interpret location_id
210 * string 'nickname' REQUIRED
211 * string 'password' (may be missing for eg OpenID registrations)
212 * string 'code' invite code
213 * ?string 'uri' permalink to notice; defaults to local notice URL
214 * @return mixed User object or false on failure
216 static function register(array $fields) {
218 // MAGICALLY put fields into current scope
222 $profile = new Profile();
224 if (!empty($email)) {
225 $email = common_canonical_email($email);
229 $profile->nickname = Nickname::normalize($nickname, true);
230 } catch (NicknameException $e) {
231 common_log(LOG_WARNING, sprintf('Bad nickname during User registration for %s: %s', $nickname, $e->getMessage()), __FILE__);
235 $profile->profileurl = common_profile_url($profile->nickname);
237 if (!empty($fullname)) {
238 $profile->fullname = $fullname;
240 if (!empty($homepage)) {
241 $profile->homepage = $homepage;
244 $profile->bio = $bio;
246 if (!empty($location)) {
247 $profile->location = $location;
249 $loc = Location::fromName($location);
252 $profile->lat = $loc->lat;
253 $profile->lon = $loc->lon;
254 $profile->location_id = $loc->location_id;
255 $profile->location_ns = $loc->location_ns;
259 $profile->created = common_sql_now();
263 $user->nickname = $profile->nickname;
267 // Users who respond to invite email have proven their ownership of that address
270 $invite = Invitation::getKV($code);
271 if ($invite && $invite->address && $invite->address_type == 'email' && $invite->address == $email) {
272 $user->email = $invite->address;
276 if(isset($email_confirmed) && $email_confirmed) {
277 $user->email = $email;
280 // This flag is ignored but still set to 1
284 // Set default-on options here, otherwise they'll be disabled
285 // initially for sites using caching, since the initial encache
286 // doesn't know about the defaults in the database.
287 $user->emailnotifysub = 1;
288 $user->emailnotifyfav = 1;
289 $user->emailnotifynudge = 1;
290 $user->emailnotifymsg = 1;
291 $user->emailnotifyattn = 1;
292 $user->emailmicroid = 1;
293 $user->emailpost = 1;
294 $user->jabbermicroid = 1;
296 $user->created = common_sql_now();
298 if (Event::handle('StartUserRegister', array($profile))) {
300 $profile->query('BEGIN');
302 $id = $profile->insert();
304 common_log_db_error($profile, 'INSERT', __FILE__);
313 $user->uri = common_user_uri($user);
316 if (!empty($password)) { // may not have a password for OpenID users
317 $user->password = common_munge_password($password, $id);
320 $result = $user->insert();
322 if ($result === false) {
323 common_log_db_error($user, 'INSERT', __FILE__);
324 $profile->query('ROLLBACK');
328 // Everyone gets an inbox
330 $inbox = new Inbox();
332 $inbox->user_id = $user->id;
333 $inbox->notice_ids = '';
335 $result = $inbox->insert();
338 common_log_db_error($inbox, 'INSERT', __FILE__);
342 // Everyone is subscribed to themself
344 $subscription = new Subscription();
345 $subscription->subscriber = $user->id;
346 $subscription->subscribed = $user->id;
347 $subscription->created = $user->created;
349 $result = $subscription->insert();
352 common_log_db_error($subscription, 'INSERT', __FILE__);
353 $profile->query('ROLLBACK');
357 // Mark that this invite was converted
359 if (!empty($invite)) {
360 $invite->convert($user);
363 if (!empty($email) && !$user->email) {
365 $confirm = new Confirm_address();
366 $confirm->code = common_confirmation_code(128);
367 $confirm->user_id = $user->id;
368 $confirm->address = $email;
369 $confirm->address_type = 'email';
371 $result = $confirm->insert();
374 common_log_db_error($confirm, 'INSERT', __FILE__);
375 $profile->query('ROLLBACK');
380 if (!empty($code) && $user->email) {
381 $user->emailChanged();
384 // Default system subscription
386 $defnick = common_config('newuser', 'default');
388 if (!empty($defnick)) {
389 $defuser = User::getKV('nickname', $defnick);
390 if (empty($defuser)) {
391 common_log(LOG_WARNING, sprintf("Default user %s does not exist.", $defnick),
394 Subscription::start($profile, $defuser->getProfile());
398 $profile->query('COMMIT');
400 if (!empty($email) && !$user->email) {
401 mail_confirm_address($user, $confirm->code, $profile->nickname, $email);
406 $welcome = common_config('newuser', 'welcome');
408 if (!empty($welcome)) {
409 $welcomeuser = User::getKV('nickname', $welcome);
410 if (empty($welcomeuser)) {
411 common_log(LOG_WARNING, sprintf("Welcome user %s does not exist.", $defnick),
414 $notice = Notice::saveNew($welcomeuser->id,
415 // TRANS: Notice given on user registration.
416 // TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
417 sprintf(_('Welcome to %1$s, @%2$s!'),
418 common_config('site', 'name'),
424 Event::handle('EndUserRegister', array($profile));
430 // Things we do when the email changes
431 function emailChanged()
434 $invites = new Invitation();
435 $invites->address = $this->email;
436 $invites->address_type = 'email';
438 if ($invites->find()) {
439 while ($invites->fetch()) {
441 $other = Profile::getKV('id', $invites->user_id);
442 if (!($other instanceof Profile)) { // remove when getKV throws exceptions
445 Subscription::start($other, $this->getProfile());
446 } catch (Exception $e) {
453 function hasFave($notice)
455 return $this->getProfile()->hasFave($notice);
458 function mutuallySubscribed($other)
460 return $this->getProfile()->mutuallySubscribed($other);
463 function mutuallySubscribedUsers()
465 // 3-way join; probably should get cached
466 $UT = common_config('db','type')=='pgsql'?'"user"':'user';
467 $qry = "SELECT $UT.* " .
468 "FROM subscription sub1 JOIN $UT ON sub1.subscribed = $UT.id " .
469 "JOIN subscription sub2 ON $UT.id = sub2.subscriber " .
470 'WHERE sub1.subscriber = %d and sub2.subscribed = %d ' .
471 "ORDER BY $UT.nickname";
473 $user->query(sprintf($qry, $this->id, $this->id));
478 function getReplies($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
480 return Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
483 function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0) {
484 return $this->getProfile()->getTaggedNotices($tag, $offset, $limit, $since_id, $before_id);
487 function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
489 return $this->getProfile()->getNotices($offset, $limit, $since_id, $before_id);
492 function favoriteNotices($own=false, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
494 return $this->getProfile()->favoriteNotices($own, $offset, $limit, $since_id, $max_id);
497 function blowFavesCache()
499 $this->getProfile()->blowFavesCache();
502 function getSelfTags()
504 return Profile_tag::getTagsArray($this->id, $this->id, $this->id);
507 function setSelfTags($newtags, $privacy)
509 return Profile_tag::setTags($this->id, $this->id, $newtags, $privacy);
512 function block(Profile $other)
514 // Add a new block record
516 // no blocking (and thus unsubbing from) yourself
518 if ($this->id == $other->id) {
519 common_log(LOG_WARNING,
521 "Profile ID %d (%s) tried to block themself.",
529 $block = new Profile_block();
531 // Begin a transaction
533 $block->query('BEGIN');
535 $block->blocker = $this->id;
536 $block->blocked = $other->id;
538 $result = $block->insert();
541 common_log_db_error($block, 'INSERT', __FILE__);
545 $self = $this->getProfile();
546 if (Subscription::exists($other, $self)) {
547 Subscription::cancel($other, $self);
549 if (Subscription::exists($self, $other)) {
550 Subscription::cancel($self, $other);
553 $block->query('COMMIT');
558 function unblock(Profile $other)
560 // Get the block record
562 $block = Profile_block::exists($this->getProfile(), $other);
568 $result = $block->delete();
571 common_log_db_error($block, 'DELETE', __FILE__);
578 function isMember(User_group $group)
580 return $this->getProfile()->isMember($group);
583 function isAdmin(User_group $group)
585 return $this->getProfile()->isAdmin($group);
588 function getGroups($offset=0, $limit=null)
590 return $this->getProfile()->getGroups($offset, $limit);
594 * Request to join the given group.
595 * May throw exceptions on failure.
597 * @param User_group $group
598 * @return Group_member
600 function joinGroup(User_group $group)
602 return $this->getProfile()->joinGroup($group);
606 * Leave a group that this user is a member of.
608 * @param User_group $group
610 function leaveGroup(User_group $group)
612 return $this->getProfile()->leaveGroup($group);
615 function getSubscribed($offset=0, $limit=null)
617 return $this->getProfile()->getSubscribed($offset, $limit);
620 function getSubscribers($offset=0, $limit=null)
622 return $this->getProfile()->getSubscribers($offset, $limit);
625 function getTaggedSubscribers($tag, $offset=0, $limit=null)
627 return $this->getProfile()->getTaggedSubscribers($tag, $offset, $limit);
630 function getTaggedSubscriptions($tag, $offset=0, $limit=null)
632 return $this->getProfile()->getTaggedSubscriptions($tag, $offset, $limit);
635 function hasRight($right)
637 return $this->getProfile()->hasRight($right);
640 function delete($useWhere=false)
642 if (empty($this->id)) {
643 common_log(LOG_WARNING, "Ambiguous User->delete(); skipping related tables.");
644 return parent::delete($useWhere);
648 $profile = $this->getProfile();
650 } catch (UserNoProfileException $unp) {
651 common_log(LOG_INFO, "User {$this->nickname} has no profile; continuing deletion.");
654 $related = array('Fave',
661 Event::handle('UserDeleteRelated', array($this, &$related));
663 foreach ($related as $cls) {
665 $inst->user_id = $this->id;
669 $this->_deleteTags();
670 $this->_deleteBlocks();
672 return parent::delete($useWhere);
675 function _deleteTags()
677 $tag = new Profile_tag();
678 $tag->tagger = $this->id;
682 function _deleteBlocks()
684 $block = new Profile_block();
685 $block->blocker = $this->id;
687 // XXX delete group block? Reset blocker?
690 function hasRole($name)
692 return $this->getProfile()->hasRole($name);
695 function grantRole($name)
697 return $this->getProfile()->grantRole($name);
700 function revokeRole($name)
702 return $this->getProfile()->revokeRole($name);
705 function isSandboxed()
707 return $this->getProfile()->isSandboxed();
710 function isSilenced()
712 return $this->getProfile()->isSilenced();
715 function repeatedByMe($offset=0, $limit=20, $since_id=null, $max_id=null)
717 $stream = new RepeatedByMeNoticeStream($this);
718 return $stream->getNotices($offset, $limit, $since_id, $max_id);
722 function repeatsOfMe($offset=0, $limit=20, $since_id=null, $max_id=null)
724 $stream = new RepeatsOfMeNoticeStream($this);
726 return $stream->getNotices($offset, $limit, $since_id, $max_id);
730 function repeatedToMe($offset=0, $limit=20, $since_id=null, $max_id=null)
732 // TRANS: Exception thrown when trying view "repeated to me".
733 throw new Exception(_('Not implemented since inbox change.'));
736 public static function siteOwner()
738 $owner = self::cacheGet('user:site_owner');
740 if ($owner === false) { // cache miss
742 $pr = new Profile_role();
743 $pr->role = Profile_role::OWNER;
744 $pr->orderBy('created');
747 if (!$pr->find(true)) {
748 throw new NoResultException($pr);
751 $owner = User::getKV('id', $pr->profile_id);
753 self::cacheSet('user:site_owner', $owner);
756 if ($owner instanceof User) {
760 throw new ServerException(_('No site owner configured.'));
764 * Pull the primary site account to use in single-user mode.
765 * If a valid user nickname is listed in 'singleuser':'nickname'
766 * in the config, this will be used; otherwise the site owner
767 * account is taken by default.
770 * @throws ServerException if no valid single user account is present
771 * @throws ServerException if called when not in single-user mode
773 public static function singleUser()
775 if (!common_config('singleuser', 'enabled')) {
776 // TRANS: Server exception.
777 throw new ServerException(_('Single-user mode code called when not enabled.'));
780 if ($nickname = common_config('singleuser', 'nickname')) {
781 $user = User::getKV('nickname', $nickname);
782 if ($user instanceof User) {
787 // If there was no nickname or no user by that nickname,
788 // try the site owner. Throws exception if not configured.
789 return User::siteOwner();
793 * This is kind of a hack for using external setup code that's trying to
794 * build single-user sites.
796 * Will still return a username if the config singleuser/nickname is set
797 * even if the account doesn't exist, which normally indicates that the
798 * site is horribly misconfigured.
800 * At the moment, we need to let it through so that router setup can
801 * complete, otherwise we won't be able to create the account.
803 * This will be easier when we can more easily create the account and
804 * *then* switch the site to 1user mode without jumping through hoops.
807 * @throws ServerException if no valid single user account is present
808 * @throws ServerException if called when not in single-user mode
810 static function singleUserNickname()
813 $user = User::singleUser();
814 return $user->nickname;
815 } catch (Exception $e) {
816 if (common_config('singleuser', 'enabled') && common_config('singleuser', 'nickname')) {
817 common_log(LOG_WARNING, "Warning: code attempting to pull single-user nickname when the account does not exist. If this is not setup time, this is probably a bug.");
818 return common_config('singleuser', 'nickname');
825 * Find and shorten links in the given text using this user's URL shortening
828 * By default, links will be left untouched if the text is shorter than the
829 * configured maximum notice length. Pass true for the $always parameter
830 * to force all links to be shortened regardless.
832 * Side effects: may save file and file_redirection records for referenced URLs.
834 * @param string $text
835 * @param boolean $always
838 public function shortenLinks($text, $always=false)
840 return common_shorten_links($text, $always, $this);
844 * Get a list of OAuth client applications that have access to this
847 function getConnectedApps($offset = 0, $limit = null)
851 'FROM oauth_application_user u, oauth_application a ' .
852 'WHERE u.profile_id = %d ' .
853 'AND a.id = u.application_id ' .
854 'AND u.access_type > 0 ' .
855 'ORDER BY u.created DESC ';
858 if (common_config('db','type') == 'pgsql') {
859 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
861 $qry .= ' LIMIT ' . $offset . ', ' . $limit;
865 $apps = new Oauth_application_user();
867 $cnt = $apps->query(sprintf($qry, $this->id));
873 * Magic function called at serialize() time.
875 * We use this to drop a couple process-specific references
876 * from DB_DataObject which can cause trouble in future
879 * @return array of variable names to include in serialization.
884 $vars = parent::__sleep();
885 $skip = array('_profile');
886 return array_diff($vars, $skip);
889 static function recoverPassword($nore)
891 $user = User::getKV('email', common_canonical_email($nore));
895 $user = User::getKV('nickname', common_canonical_nickname($nore));
896 } catch (NicknameException $e) {
901 // See if it's an unconfirmed email address
904 // Warning: it may actually be legit to have multiple folks
905 // who have claimed, but not yet confirmed, the same address.
906 // We'll only send to the first one that comes up.
907 $confirm_email = new Confirm_address();
908 $confirm_email->address = common_canonical_email($nore);
909 $confirm_email->address_type = 'email';
910 $confirm_email->find();
911 if ($confirm_email->fetch()) {
912 $user = User::getKV($confirm_email->user_id);
914 $confirm_email = null;
917 $confirm_email = null;
921 // TRANS: Information on password recovery form if no known username or e-mail address was specified.
922 throw new ClientException(_('No user with that email address or username.'));
926 // Try to get an unconfirmed email address if they used a user name
928 if (!$user->email && !$confirm_email) {
929 $confirm_email = new Confirm_address();
930 $confirm_email->user_id = $user->id;
931 $confirm_email->address_type = 'email';
932 $confirm_email->find();
933 if (!$confirm_email->fetch()) {
934 $confirm_email = null;
938 if (!$user->email && !$confirm_email) {
939 // TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
940 throw new ClientException(_('No registered email address for that user.'));
944 // Success! We have a valid user and a confirmed or unconfirmed email address
946 $confirm = new Confirm_address();
947 $confirm->code = common_confirmation_code(128);
948 $confirm->address_type = 'recover';
949 $confirm->user_id = $user->id;
950 $confirm->address = (!empty($user->email)) ? $user->email : $confirm_email->address;
952 if (!$confirm->insert()) {
953 common_log_db_error($confirm, 'INSERT', __FILE__);
954 // TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
955 throw new ServerException(_('Error saving address confirmation.'));
959 // @todo FIXME: needs i18n.
960 $body = "Hey, $user->nickname.";
962 $body .= 'Someone just asked for a new password ' .
963 'for this account on ' . common_config('site', 'name') . '.';
965 $body .= 'If it was you, and you want to confirm, use the URL below:';
967 $body .= "\t".common_local_url('recoverpassword',
968 array('code' => $confirm->code));
970 $body .= 'If not, just ignore this message.';
972 $body .= 'Thanks for your time, ';
974 $body .= common_config('site', 'name');
977 $headers = _mail_prepare_headers('recoverpassword', $user->nickname, $user->nickname);
978 // TRANS: Subject for password recovery e-mail.
979 mail_to_user($user, _('Password recovery requested'), $body, $headers, $confirm->address);
982 function streamModeOnly()
984 if (common_config('oldschool', 'enabled')) {
985 $osp = Old_school_prefs::getKV('user_id', $this->id);
987 return $osp->stream_mode_only;
994 function conversationTree()
996 if (common_config('oldschool', 'enabled')) {
997 $osp = Old_school_prefs::getKV('user_id', $this->id);
999 return $osp->conversation_tree;
1006 function streamNicknames()
1008 if (common_config('oldschool', 'enabled')) {
1009 $osp = Old_school_prefs::getKV('user_id', $this->id);
1011 return $osp->stream_nicknames;
1017 function registrationActivity()
1019 $profile = $this->getProfile();
1021 $service = new ActivityObject();
1023 $service->type = ActivityObject::SERVICE;
1024 $service->title = common_config('site', 'name');
1025 $service->link = common_root_url();
1026 $service->id = $service->link;
1028 $act = new Activity();
1030 $act->actor = ActivityObject::fromProfile($profile);
1031 $act->verb = ActivityVerb::JOIN;
1033 $act->objects[] = $service;
1035 $act->id = TagURI::mint('user:register:%d',
1038 $act->time = strtotime($this->created);
1040 $act->title = _("Register");
1042 $act->content = sprintf(_('%1$s joined %2$s.'),
1043 $profile->getBestName(),