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('STATUSNET') && !defined('LACONICA')) {
25 * Table Definition for user
28 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
29 require_once 'Validate.php';
31 class User extends Memcached_DataObject
33 const SUBSCRIBE_POLICY_OPEN = 0;
34 const SUBSCRIBE_POLICY_MODERATE = 1;
37 /* the code below is auto generated do not remove the above tag */
39 public $__table = 'user'; // table name
40 public $id; // int(4) primary_key not_null
41 public $nickname; // varchar(64) unique_key
42 public $password; // varchar(255)
43 public $email; // varchar(255) unique_key
44 public $incomingemail; // varchar(255) unique_key
45 public $emailnotifysub; // tinyint(1) default_1
46 public $emailnotifyfav; // tinyint(1) default_1
47 public $emailnotifynudge; // tinyint(1) default_1
48 public $emailnotifymsg; // tinyint(1) default_1
49 public $emailnotifyattn; // tinyint(1) default_1
50 public $emailmicroid; // tinyint(1) default_1
51 public $language; // varchar(50)
52 public $timezone; // varchar(50)
53 public $emailpost; // tinyint(1) default_1
54 public $sms; // varchar(64) unique_key
55 public $carrier; // int(4)
56 public $smsnotify; // tinyint(1)
57 public $smsreplies; // tinyint(1)
58 public $smsemail; // varchar(255)
59 public $uri; // varchar(255) unique_key
60 public $autosubscribe; // tinyint(1)
61 public $subscribe_policy; // tinyint(1)
62 public $urlshorteningservice; // varchar(50) default_ur1.ca
63 public $inboxed; // tinyint(1)
64 public $design_id; // int(4)
65 public $viewdesigns; // tinyint(1) default_1
66 public $private_stream; // tinyint(1) default_0
67 public $created; // datetime() not_null
68 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
71 function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User',$k,$v); }
73 /* the code above is auto generated do not remove the tag below */
81 $profile = Profile::staticGet('id', $this->id);
82 if (empty($profile)) {
83 throw new UserNoProfileException($this);
88 function isSubscribed($other)
90 $profile = $this->getProfile();
91 return $profile->isSubscribed($other);
94 function hasPendingSubscription($other)
96 $profile = $this->getProfile();
97 return $profile->hasPendingSubscription($other);
100 // 'update' won't write key columns, so we have to do it ourselves.
102 function updateKeys(&$orig)
106 foreach (array('nickname', 'email', 'incomingemail', 'sms', 'carrier', 'smsemail', 'language', 'timezone') as $k) {
107 if (strcmp($this->$k, $orig->$k) != 0) {
108 $parts[] = $k . ' = ' . $this->_quote($this->$k);
111 if (count($parts) == 0) {
115 $toupdate = implode(', ', $parts);
117 $table = common_database_tablename($this->tableName());
118 $qry = 'UPDATE ' . $table . ' SET ' . $toupdate .
119 ' WHERE id = ' . $this->id;
121 $result = $this->query($qry);
129 * Check whether the given nickname is potentially usable, or if it's
130 * excluded by any blacklists on this system.
132 * WARNING: INPUT IS NOT VALIDATED OR NORMALIZED. NON-NORMALIZED INPUT
133 * OR INVALID INPUT MAY LEAD TO FALSE RESULTS.
135 * @param string $nickname
136 * @return boolean true if clear, false if blacklisted
138 static function allowed_nickname($nickname)
140 // XXX: should already be validated for size, content, etc.
141 $blacklist = common_config('nickname', 'blacklist');
143 //all directory and file names should be blacklisted
144 $d = dir(INSTALLDIR);
145 while (false !== ($entry = $d->read())) {
150 //all top level names in the router should be blacklisted
151 $router = Router::get();
152 foreach(array_keys($router->m->getPaths()) as $path){
153 if(preg_match('/^\/(.*?)[\/\?]/',$path,$matches)){
154 $blacklist[]=$matches[1];
157 return !in_array($nickname, $blacklist);
161 * Get the most recent notice posted by this user, if any.
163 * @return mixed Notice or null
165 function getCurrentNotice()
167 $profile = $this->getProfile();
168 return $profile->getCurrentNotice();
171 function getCarrier()
173 return Sms_carrier::staticGet('id', $this->carrier);
177 * @deprecated use Subscription::start($sub, $other);
179 function subscribeTo($other)
181 return Subscription::start($this->getProfile(), $other);
184 function hasBlocked($other)
186 $profile = $this->getProfile();
187 return $profile->hasBlocked($other);
191 * Register a new user account and profile and set up default subscriptions.
192 * If a new-user welcome message is configured, this will be sent.
194 * @param array $fields associative array of optional properties
197 * bool 'email_confirmed' pass true to mark email as pre-confirmed
200 * string 'location' informal string description of geolocation
201 * float 'lat' decimal latitude for geolocation
202 * float 'lon' decimal longitude for geolocation
203 * int 'location_id' geoname identifier
204 * int 'location_ns' geoname namespace to interpret location_id
205 * string 'nickname' REQUIRED
206 * string 'password' (may be missing for eg OpenID registrations)
207 * string 'code' invite code
208 * ?string 'uri' permalink to notice; defaults to local notice URL
209 * @return mixed User object or false on failure
211 static function register($fields) {
213 // MAGICALLY put fields into current scope
217 $profile = new Profile();
221 $email = common_canonical_email($email);
224 $nickname = common_canonical_nickname($nickname);
225 $profile->nickname = $nickname;
226 if(! User::allowed_nickname($nickname)){
227 common_log(LOG_WARNING, sprintf("Attempted to register a nickname that is not allowed: %s", $profile->nickname),
231 $profile->profileurl = common_profile_url($nickname);
233 if (!empty($fullname)) {
234 $profile->fullname = $fullname;
236 if (!empty($homepage)) {
237 $profile->homepage = $homepage;
240 $profile->bio = $bio;
242 if (!empty($location)) {
243 $profile->location = $location;
245 $loc = Location::fromName($location);
248 $profile->lat = $loc->lat;
249 $profile->lon = $loc->lon;
250 $profile->location_id = $loc->location_id;
251 $profile->location_ns = $loc->location_ns;
255 $profile->created = common_sql_now();
259 $user->nickname = $nickname;
261 // Users who respond to invite email have proven their ownership of that address
264 $invite = Invitation::staticGet($code);
265 if ($invite && $invite->address && $invite->address_type == 'email' && $invite->address == $email) {
266 $user->email = $invite->address;
270 if(isset($email_confirmed) && $email_confirmed) {
271 $user->email = $email;
274 // This flag is ignored but still set to 1
278 // Set default-on options here, otherwise they'll be disabled
279 // initially for sites using caching, since the initial encache
280 // doesn't know about the defaults in the database.
281 $user->emailnotifysub = 1;
282 $user->emailnotifyfav = 1;
283 $user->emailnotifynudge = 1;
284 $user->emailnotifymsg = 1;
285 $user->emailnotifyattn = 1;
286 $user->emailmicroid = 1;
287 $user->emailpost = 1;
288 $user->jabbermicroid = 1;
289 $user->viewdesigns = 1;
291 $user->created = common_sql_now();
293 if (Event::handle('StartUserRegister', array(&$user, &$profile))) {
295 $profile->query('BEGIN');
297 $id = $profile->insert();
300 common_log_db_error($profile, 'INSERT', __FILE__);
309 $user->uri = common_user_uri($user);
312 if (!empty($password)) { // may not have a password for OpenID users
313 $user->password = common_munge_password($password, $id);
316 $result = $user->insert();
319 common_log_db_error($user, 'INSERT', __FILE__);
323 // Everyone gets an inbox
325 $inbox = new Inbox();
327 $inbox->user_id = $user->id;
328 $inbox->notice_ids = '';
330 $result = $inbox->insert();
333 common_log_db_error($inbox, 'INSERT', __FILE__);
337 // Everyone is subscribed to themself
339 $subscription = new Subscription();
340 $subscription->subscriber = $user->id;
341 $subscription->subscribed = $user->id;
342 $subscription->created = $user->created;
344 $result = $subscription->insert();
347 common_log_db_error($subscription, 'INSERT', __FILE__);
351 if (!empty($email) && !$user->email) {
353 $confirm = new Confirm_address();
354 $confirm->code = common_confirmation_code(128);
355 $confirm->user_id = $user->id;
356 $confirm->address = $email;
357 $confirm->address_type = 'email';
359 $result = $confirm->insert();
362 common_log_db_error($confirm, 'INSERT', __FILE__);
367 if (!empty($code) && $user->email) {
368 $user->emailChanged();
371 // Default system subscription
373 $defnick = common_config('newuser', 'default');
375 if (!empty($defnick)) {
376 $defuser = User::staticGet('nickname', $defnick);
377 if (empty($defuser)) {
378 common_log(LOG_WARNING, sprintf("Default user %s does not exist.", $defnick),
381 Subscription::start($user, $defuser);
385 $profile->query('COMMIT');
387 if (!empty($email) && !$user->email) {
388 mail_confirm_address($user, $confirm->code, $profile->nickname, $email);
393 $welcome = common_config('newuser', 'welcome');
395 if (!empty($welcome)) {
396 $welcomeuser = User::staticGet('nickname', $welcome);
397 if (empty($welcomeuser)) {
398 common_log(LOG_WARNING, sprintf("Welcome user %s does not exist.", $defnick),
401 $notice = Notice::saveNew($welcomeuser->id,
402 // TRANS: Notice given on user registration.
403 // TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
404 sprintf(_('Welcome to %1$s, @%2$s!'),
405 common_config('site', 'name'),
411 Event::handle('EndUserRegister', array(&$profile, &$user));
417 // Things we do when the email changes
418 function emailChanged()
421 $invites = new Invitation();
422 $invites->address = $this->email;
423 $invites->address_type = 'email';
425 if ($invites->find()) {
426 while ($invites->fetch()) {
427 $other = User::staticGet($invites->user_id);
428 subs_subscribe_to($other, $this);
433 function hasFave($notice)
435 $profile = $this->getProfile();
436 return $profile->hasFave($notice);
439 function mutuallySubscribed($other)
441 $profile = $this->getProfile();
442 return $profile->mutuallySubscribed($other);
445 function mutuallySubscribedUsers()
447 // 3-way join; probably should get cached
448 $UT = common_config('db','type')=='pgsql'?'"user"':'user';
449 $qry = "SELECT $UT.* " .
450 "FROM subscription sub1 JOIN $UT ON sub1.subscribed = $UT.id " .
451 "JOIN subscription sub2 ON $UT.id = sub2.subscriber " .
452 'WHERE sub1.subscriber = %d and sub2.subscribed = %d ' .
453 "ORDER BY $UT.nickname";
455 $user->query(sprintf($qry, $this->id, $this->id));
460 function getReplies($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
462 return Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
465 function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0) {
466 $profile = $this->getProfile();
467 return $profile->getTaggedNotices($tag, $offset, $limit, $since_id, $before_id);
470 function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
472 $profile = $this->getProfile();
473 return $profile->getNotices($offset, $limit, $since_id, $before_id);
476 function favoriteNotices($own=false, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
478 return Fave::stream($this->id, $offset, $limit, $own, $since_id, $max_id);
481 function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
483 return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, false);
486 function noticesWithFriendsThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
488 return Inbox::streamNoticesThreaded($this->id, $offset, $limit, $since_id, $before_id, false);
491 function noticeInbox($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
493 return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, true);
496 function noticeInboxThreaded($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
498 return Inbox::streamNoticesThreaded($this->id, $offset, $limit, $since_id, $before_id, true);
501 function friendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
503 return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, false);
506 function ownFriendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
508 return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, true);
511 function blowFavesCache()
513 $profile = $this->getProfile();
514 $profile->blowFavesCache();
517 function getSelfTags()
519 return Profile_tag::getTags($this->id, $this->id);
522 function setSelfTags($newtags)
524 return Profile_tag::setTags($this->id, $this->id, $newtags);
527 function block($other)
529 // Add a new block record
531 // no blocking (and thus unsubbing from) yourself
533 if ($this->id == $other->id) {
534 common_log(LOG_WARNING,
536 "Profile ID %d (%s) tried to block themself.",
544 $block = new Profile_block();
546 // Begin a transaction
548 $block->query('BEGIN');
550 $block->blocker = $this->id;
551 $block->blocked = $other->id;
553 $result = $block->insert();
556 common_log_db_error($block, 'INSERT', __FILE__);
560 $self = $this->getProfile();
561 if (Subscription::exists($other, $self)) {
562 Subscription::cancel($other, $self);
564 if (Subscription::exists($self, $other)) {
565 Subscription::cancel($self, $other);
568 $block->query('COMMIT');
573 function unblock($other)
575 // Get the block record
577 $block = Profile_block::get($this->id, $other->id);
583 $result = $block->delete();
586 common_log_db_error($block, 'DELETE', __FILE__);
593 function isMember($group)
595 $profile = $this->getProfile();
596 return $profile->isMember($group);
599 function isAdmin($group)
601 $profile = $this->getProfile();
602 return $profile->isAdmin($group);
605 function getGroups($offset=0, $limit=null)
607 $profile = $this->getProfile();
608 return $profile->getGroups($offset, $limit);
612 * Request to join the given group.
613 * May throw exceptions on failure.
615 * @param User_group $group
616 * @return Group_member
618 function joinGroup(User_group $group)
620 $profile = $this->getProfile();
621 return $profile->joinGroup($group);
625 * Leave a group that this user is a member of.
627 * @param User_group $group
629 function leaveGroup(User_group $group)
631 $profile = $this->getProfile();
632 return $profile->leaveGroup($group);
635 function getSubscriptions($offset=0, $limit=null)
637 $profile = $this->getProfile();
638 return $profile->getSubscriptions($offset, $limit);
641 function getSubscribers($offset=0, $limit=null)
643 $profile = $this->getProfile();
644 return $profile->getSubscribers($offset, $limit);
647 function getTaggedSubscribers($tag, $offset=0, $limit=null)
650 'SELECT profile.* ' .
651 'FROM profile JOIN subscription ' .
652 'ON profile.id = subscription.subscriber ' .
653 'JOIN profile_tag ON (profile_tag.tagged = subscription.subscriber ' .
654 'AND profile_tag.tagger = subscription.subscribed) ' .
655 'WHERE subscription.subscribed = %d ' .
656 "AND profile_tag.tag = '%s' " .
657 'AND subscription.subscribed != subscription.subscriber ' .
658 'ORDER BY subscription.created DESC ';
661 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
664 $profile = new Profile();
666 $cnt = $profile->query(sprintf($qry, $this->id, $tag));
671 function getTaggedSubscriptions($tag, $offset=0, $limit=null)
674 'SELECT profile.* ' .
675 'FROM profile JOIN subscription ' .
676 'ON profile.id = subscription.subscribed ' .
677 'JOIN profile_tag on (profile_tag.tagged = subscription.subscribed ' .
678 'AND profile_tag.tagger = subscription.subscriber) ' .
679 'WHERE subscription.subscriber = %d ' .
680 "AND profile_tag.tag = '%s' " .
681 'AND subscription.subscribed != subscription.subscriber ' .
682 'ORDER BY subscription.created DESC ';
684 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
686 $profile = new Profile();
688 $profile->query(sprintf($qry, $this->id, $tag));
695 return Design::staticGet('id', $this->design_id);
698 function hasRight($right)
700 $profile = $this->getProfile();
701 return $profile->hasRight($right);
707 $profile = $this->getProfile();
709 } catch (UserNoProfileException $unp) {
710 common_log(LOG_INFO, "User {$this->nickname} has no profile; continuing deletion.");
713 $related = array('Fave',
720 Event::handle('UserDeleteRelated', array($this, &$related));
722 foreach ($related as $cls) {
724 $inst->user_id = $this->id;
728 $this->_deleteTags();
729 $this->_deleteBlocks();
734 function _deleteTags()
736 $tag = new Profile_tag();
737 $tag->tagger = $this->id;
741 function _deleteBlocks()
743 $block = new Profile_block();
744 $block->blocker = $this->id;
746 // XXX delete group block? Reset blocker?
749 function hasRole($name)
751 $profile = $this->getProfile();
752 return $profile->hasRole($name);
755 function grantRole($name)
757 $profile = $this->getProfile();
758 return $profile->grantRole($name);
761 function revokeRole($name)
763 $profile = $this->getProfile();
764 return $profile->revokeRole($name);
767 function isSandboxed()
769 $profile = $this->getProfile();
770 return $profile->isSandboxed();
773 function isSilenced()
775 $profile = $this->getProfile();
776 return $profile->isSilenced();
779 function repeatedByMe($offset=0, $limit=20, $since_id=null, $max_id=null)
781 $stream = new RepeatedByMeNoticeStream($this);
782 return $stream->getNotices($offset, $limit, $since_id, $max_id);
786 function repeatsOfMe($offset=0, $limit=20, $since_id=null, $max_id=null)
788 $stream = new RepeatsOfMeNoticeStream($this);
790 return $stream->getNotices($offset, $limit, $since_id, $max_id);
794 function repeatedToMe($offset=0, $limit=20, $since_id=null, $max_id=null)
796 throw new Exception("Not implemented since inbox change.");
799 function shareLocation()
801 $cfg = common_config('location', 'share');
803 if ($cfg == 'always') {
805 } else if ($cfg == 'never') {
810 $prefs = User_location_prefs::staticGet('user_id', $this->id);
813 $share = common_config('location', 'sharedefault');
815 $share = $prefs->share_location;
823 static function siteOwner()
825 $owner = self::cacheGet('user:site_owner');
827 if ($owner === false) { // cache miss
829 $pr = new Profile_role();
831 $pr->role = Profile_role::OWNER;
833 $pr->orderBy('created');
837 if ($pr->find(true)) {
838 $owner = User::staticGet('id', $pr->profile_id);
843 self::cacheSet('user:site_owner', $owner);
850 * Pull the primary site account to use in single-user mode.
851 * If a valid user nickname is listed in 'singleuser':'nickname'
852 * in the config, this will be used; otherwise the site owner
853 * account is taken by default.
856 * @throws ServerException if no valid single user account is present
857 * @throws ServerException if called when not in single-user mode
859 static function singleUser()
861 if (common_config('singleuser', 'enabled')) {
865 $nickname = common_config('singleuser', 'nickname');
867 if (!empty($nickname)) {
868 $user = User::staticGet('nickname', $nickname);
871 // if there was no nickname or no user by that nickname,
872 // try the site owner.
875 $user = User::siteOwner();
881 // TRANS: Server exception.
882 throw new ServerException(_('No single user defined for single-user mode.'));
885 // TRANS: Server exception.
886 throw new ServerException(_('Single-user mode code called when not enabled.'));
891 * This is kind of a hack for using external setup code that's trying to
892 * build single-user sites.
894 * Will still return a username if the config singleuser/nickname is set
895 * even if the account doesn't exist, which normally indicates that the
896 * site is horribly misconfigured.
898 * At the moment, we need to let it through so that router setup can
899 * complete, otherwise we won't be able to create the account.
901 * This will be easier when we can more easily create the account and
902 * *then* switch the site to 1user mode without jumping through hoops.
905 * @throws ServerException if no valid single user account is present
906 * @throws ServerException if called when not in single-user mode
908 static function singleUserNickname()
911 $user = User::singleUser();
912 return $user->nickname;
913 } catch (Exception $e) {
914 if (common_config('singleuser', 'enabled') && common_config('singleuser', 'nickname')) {
915 common_log(LOG_WARN, "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.");
916 return common_config('singleuser', 'nickname');
923 * Find and shorten links in the given text using this user's URL shortening
926 * By default, links will be left untouched if the text is shorter than the
927 * configured maximum notice length. Pass true for the $always parameter
928 * to force all links to be shortened regardless.
930 * Side effects: may save file and file_redirection records for referenced URLs.
932 * @param string $text
933 * @param boolean $always
936 public function shortenLinks($text, $always=false)
938 return common_shorten_links($text, $always, $this);
942 * Get a list of OAuth client applications that have access to this
945 function getConnectedApps($offset = 0, $limit = null)
949 'FROM oauth_application_user u, oauth_application a ' .
950 'WHERE u.profile_id = %d ' .
951 'AND a.id = u.application_id ' .
952 'AND u.access_type > 0 ' .
953 'ORDER BY u.created DESC ';
956 if (common_config('db','type') == 'pgsql') {
957 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
959 $qry .= ' LIMIT ' . $offset . ', ' . $limit;
963 $apps = new Oauth_application_user();
965 $cnt = $apps->query(sprintf($qry, $this->id));