]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/User.php
Allow lookup of User->getByUri (throws NoResultException)
[quix0rs-gnu-social.git] / classes / User.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 if (!defined('GNUSOCIAL')) { exit(1); }
21
22 /**
23  * Table Definition for user
24  */
25
26 class User extends Managed_DataObject
27 {
28     const SUBSCRIBE_POLICY_OPEN = 0;
29     const SUBSCRIBE_POLICY_MODERATE = 1;
30
31     ###START_AUTOCODE
32     /* the code below is auto generated do not remove the above tag */
33
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(191)               not 255 because utf8mb4 takes more space
38     public $email;                           // varchar(191)  unique_key   not 255 because utf8mb4 takes more space
39     public $incomingemail;                   // varchar(191)  unique_key   not 255 because utf8mb4 takes more space
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 $language;                        // varchar(50)
46     public $timezone;                        // varchar(50)
47     public $emailpost;                       // tinyint(1)   default_1
48     public $sms;                             // varchar(64)  unique_key
49     public $carrier;                         // int(4)
50     public $smsnotify;                       // tinyint(1)
51     public $smsreplies;                      // tinyint(1)
52     public $smsemail;                        // varchar(191)               not 255 because utf8mb4 takes more space
53     public $uri;                             // varchar(191)  unique_key   not 255 because utf8mb4 takes more space
54     public $autosubscribe;                   // tinyint(1)
55     public $subscribe_policy;                // tinyint(1)
56     public $urlshorteningservice;            // varchar(50)   default_ur1.ca
57     public $private_stream;                  // tinyint(1)   default_0
58     public $created;                         // datetime()   not_null
59     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
60
61     /* the code above is auto generated do not remove the tag below */
62     ###END_AUTOCODE
63
64     public static function schemaDef()
65     {
66         return array(
67             'description' => 'local users',
68             'fields' => array(
69                 'id' => array('type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'),
70                 'nickname' => array('type' => 'varchar', 'length' => 64, 'description' => 'nickname or username, duped in profile'),
71                 'password' => array('type' => 'varchar', 'length' => 191, 'description' => 'salted password, can be null for OpenID users'),
72                 'email' => array('type' => 'varchar', 'length' => 191, 'description' => 'email address for password recovery etc.'),
73                 'incomingemail' => array('type' => 'varchar', 'length' => 191, 'description' => 'email address for post-by-email'),
74                 'emailnotifysub' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of subscriptions'),
75                 'emailnotifyfav' => array('type' => 'int', 'size' => 'tiny', 'default' => null, 'description' => 'Notify by email of favorites'),
76                 'emailnotifynudge' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of nudges'),
77                 'emailnotifymsg' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of direct messages'),
78                 'emailnotifyattn' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Notify by email of @-replies'),
79                 'language' => array('type' => 'varchar', 'length' => 50, 'description' => 'preferred language'),
80                 'timezone' => array('type' => 'varchar', 'length' => 50, 'description' => 'timezone'),
81                 'emailpost' => array('type' => 'int', 'size' => 'tiny', 'default' => 1, 'description' => 'Post by email'),
82                 'sms' => array('type' => 'varchar', 'length' => 64, 'description' => 'sms phone number'),
83                 'carrier' => array('type' => 'int', 'description' => 'foreign key to sms_carrier'),
84                 'smsnotify' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS'),
85                 'smsreplies' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to send notices to SMS on replies'),
86                 'smsemail' => array('type' => 'varchar', 'length' => 191, 'description' => 'built from sms and carrier'),
87                 'uri' => array('type' => 'varchar', 'length' => 191, 'description' => 'universally unique identifier, usually a tag URI'),
88                 'autosubscribe' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'automatically subscribe to users who subscribe to us'),
89                 'subscribe_policy' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => '0 = anybody can subscribe; 1 = require approval'),
90                 'urlshorteningservice' => array('type' => 'varchar', 'length' => 50, 'default' => 'internal', 'description' => 'service to use for auto-shortening URLs'),
91                 'private_stream' => array('type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => 'whether to limit all notices to followers only'),
92
93                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
94                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
95             ),
96             'primary key' => array('id'),
97             'unique keys' => array(
98                 'user_nickname_key' => array('nickname'),
99                 'user_email_key' => array('email'),
100                 'user_incomingemail_key' => array('incomingemail'),
101                 'user_sms_key' => array('sms'),
102                 'user_uri_key' => array('uri'),
103             ),
104             'foreign keys' => array(
105                 'user_id_fkey' => array('profile', array('id' => 'id')),
106                 'user_carrier_fkey' => array('sms_carrier', array('carrier' => 'id')),
107             ),
108             'indexes' => array(
109                 'user_smsemail_idx' => array('smsemail'),
110             ),
111         );
112     }
113
114     protected $_profile = array();
115
116     /**
117      * @return Profile
118      *
119      * @throws UserNoProfileException if user has no profile
120      */
121     public function getProfile()
122     {
123         if (!isset($this->_profile[$this->id])) {
124             $profile = Profile::getKV('id', $this->id);
125             if (!$profile instanceof Profile) {
126                 throw new UserNoProfileException($this);
127             }
128             $this->_profile[$this->id] = $profile;
129         }
130         return $this->_profile[$this->id];
131     }
132
133     public function sameAs(Profile $other)
134     {
135         return $this->getProfile()->sameAs($other);
136     }
137
138     public function getUri()
139     {
140         return $this->uri;
141     }
142
143     static function getByUri($uri)
144     {
145         $user = new User();
146         $user->uri = $uri;
147         if (!$user->find(true)) {
148             throw new NoResultException($user);
149         }
150         return $user;
151     }
152
153     public function getNickname()
154     {
155         return $this->getProfile()->getNickname();
156     }
157
158     static function getByNickname($nickname)
159     {
160         $user = User::getKV('nickname', $nickname);
161         if (!$user instanceof User) {
162             throw new NoSuchUserException(array('nickname' => $nickname));
163         }
164
165         return $user;
166     }
167
168     function isSubscribed(Profile $other)
169     {
170         return $this->getProfile()->isSubscribed($other);
171     }
172
173     function hasPendingSubscription(Profile $other)
174     {
175         return $this->getProfile()->hasPendingSubscription($other);
176     }
177
178     /**
179      * Get the most recent notice posted by this user, if any.
180      *
181      * @return mixed Notice or null
182      */
183     function getCurrentNotice()
184     {
185         return $this->getProfile()->getCurrentNotice();
186     }
187
188     function getCarrier()
189     {
190         return Sms_carrier::getKV('id', $this->carrier);
191     }
192
193     function hasBlocked($other)
194     {
195         return $this->getProfile()->hasBlocked($other);
196     }
197
198     /**
199      * Register a new user account and profile and set up default subscriptions.
200      * If a new-user welcome message is configured, this will be sent.
201      *
202      * @param array $fields associative array of optional properties
203      *              string 'bio'
204      *              string 'email'
205      *              bool 'email_confirmed' pass true to mark email as pre-confirmed
206      *              string 'fullname'
207      *              string 'homepage'
208      *              string 'location' informal string description of geolocation
209      *              float 'lat' decimal latitude for geolocation
210      *              float 'lon' decimal longitude for geolocation
211      *              int 'location_id' geoname identifier
212      *              int 'location_ns' geoname namespace to interpret location_id
213      *              string 'nickname' REQUIRED
214      *              string 'password' (may be missing for eg OpenID registrations)
215      *              string 'code' invite code
216      *              ?string 'uri' permalink to notice; defaults to local notice URL
217      * @return  User object
218      * @throws  Exception on failure
219      */
220     static function register(array $fields, $accept_email_fail=false) {
221
222         // MAGICALLY put fields into current scope
223
224         extract($fields);
225
226         $profile = new Profile();
227
228         if (!empty($email)) {
229             $email = common_canonical_email($email);
230         }
231
232         // Normalize _and_ check whether it is in use. Throw NicknameException on failure.
233         $profile->nickname = Nickname::normalize($nickname, true);
234
235         $profile->profileurl = common_profile_url($profile->nickname);
236
237         if (!empty($fullname)) {
238             $profile->fullname = $fullname;
239         }
240         if (!empty($homepage)) {
241             $profile->homepage = $homepage;
242         }
243         if (!empty($bio)) {
244             $profile->bio = $bio;
245         }
246         if (!empty($location)) {
247             $profile->location = $location;
248
249             $loc = Location::fromName($location);
250
251             if (!empty($loc)) {
252                 $profile->lat         = $loc->lat;
253                 $profile->lon         = $loc->lon;
254                 $profile->location_id = $loc->location_id;
255                 $profile->location_ns = $loc->location_ns;
256             }
257         }
258
259         $profile->created = common_sql_now();
260
261         $user = new User();
262
263         $user->nickname = $profile->nickname;
264
265         $invite = null;
266
267         // Users who respond to invite email have proven their ownership of that address
268
269         if (!empty($code)) {
270             $invite = Invitation::getKV($code);
271             if ($invite instanceof Invitation && $invite->address && $invite->address_type == 'email' && $invite->address == $email) {
272                 $user->email = $invite->address;
273             }
274         }
275
276         if(isset($email_confirmed) && $email_confirmed) {
277             $user->email = $email;
278         }
279
280         // Set default-on options here, otherwise they'll be disabled
281         // initially for sites using caching, since the initial encache
282         // doesn't know about the defaults in the database.
283         $user->emailnotifysub = 1;
284         $user->emailnotifynudge = 1;
285         $user->emailnotifymsg = 1;
286         $user->emailnotifyattn = 1;
287         $user->emailpost = 1;
288
289         $user->created = common_sql_now();
290
291         if (Event::handle('StartUserRegister', array($profile))) {
292
293             $profile->query('BEGIN');
294
295             $id = $profile->insert();
296             if ($id === false) {
297                 common_log_db_error($profile, 'INSERT', __FILE__);
298                 $profile->query('ROLLBACK');
299                 // TRANS: Profile data could not be inserted for some reason.
300                 throw new ServerException(_m('Could not insert profile data for new user.'));
301             }
302
303             $user->id = $id;
304
305             if (!empty($uri)) {
306                 $user->uri = $uri;
307             } else {
308                 $user->uri = common_user_uri($user);
309             }
310
311             if (!empty($password)) { // may not have a password for OpenID users
312                 $user->password = common_munge_password($password);
313             }
314
315             $result = $user->insert();
316
317             if ($result === false) {
318                 common_log_db_error($user, 'INSERT', __FILE__);
319                 $profile->query('ROLLBACK');
320                 // TRANS: User data could not be inserted for some reason.
321                 throw new ServerException(_m('Could not insert user data for new user.'));
322             }
323
324             // Everyone is subscribed to themself
325
326             $subscription = new Subscription();
327             $subscription->subscriber = $user->id;
328             $subscription->subscribed = $user->id;
329             $subscription->created = $user->created;
330
331             $result = $subscription->insert();
332
333             if (!$result) {
334                 common_log_db_error($subscription, 'INSERT', __FILE__);
335                 $profile->query('ROLLBACK');
336                 // TRANS: Subscription data could not be inserted for some reason.
337                 throw new ServerException(_m('Could not insert subscription data for new user.'));
338             }
339
340             // Mark that this invite was converted
341
342             if (!empty($invite)) {
343                 $invite->convert($user);
344             }
345
346             if (!empty($email) && !$user->email) {
347
348                 $confirm = new Confirm_address();
349                 $confirm->code = common_confirmation_code(128);
350                 $confirm->user_id = $user->id;
351                 $confirm->address = $email;
352                 $confirm->address_type = 'email';
353
354                 $result = $confirm->insert();
355
356                 if (!$result) {
357                     common_log_db_error($confirm, 'INSERT', __FILE__);
358                     $profile->query('ROLLBACK');
359                     // TRANS: Email confirmation data could not be inserted for some reason.
360                     throw new ServerException(_m('Could not insert email confirmation data for new user.'));
361                 }
362             }
363
364             if (!empty($code) && $user->email) {
365                 $user->emailChanged();
366             }
367
368             // Default system subscription
369
370             $defnick = common_config('newuser', 'default');
371
372             if (!empty($defnick)) {
373                 $defuser = User::getKV('nickname', $defnick);
374                 if (empty($defuser)) {
375                     common_log(LOG_WARNING, sprintf("Default user %s does not exist.", $defnick),
376                                __FILE__);
377                 } else {
378                     Subscription::ensureStart($profile, $defuser->getProfile());
379                 }
380             }
381
382             $profile->query('COMMIT');
383
384             if (!empty($email) && !empty($user->email)) {
385                 try {
386                     mail_confirm_address($user, $confirm->code, $profile->nickname, $email);
387                 } catch (EmailException $e) {
388                     common_log(LOG_ERR, "Could not send user registration email for user id=={$user->id}: {$e->getMessage()}");
389                     if (!$accept_email_fail) {
390                         throw $e;
391                     }
392                 }
393             }
394
395             // Welcome message
396
397             $welcome = common_config('newuser', 'welcome');
398
399             if (!empty($welcome)) {
400                 $welcomeuser = User::getKV('nickname', $welcome);
401                 if (empty($welcomeuser)) {
402                     common_log(LOG_WARNING, sprintf("Welcome user %s does not exist.", $defnick),
403                                __FILE__);
404                 } else {
405                     $notice = Notice::saveNew($welcomeuser->id,
406                                               // TRANS: Notice given on user registration.
407                                               // TRANS: %1$s is the sitename, $2$s is the registering user's nickname.
408                                               sprintf(_('Welcome to %1$s, @%2$s!'),
409                                                       common_config('site', 'name'),
410                                                       $user->nickname),
411                                               'system');
412                 }
413             }
414
415             Event::handle('EndUserRegister', array($profile));
416         }
417
418         if (!$user instanceof User) {
419             throw new ServerException('User could not be registered. Probably an event hook that failed.');
420         }
421
422         return $user;
423     }
424
425     // Things we do when the email changes
426     function emailChanged()
427     {
428
429         $invites = new Invitation();
430         $invites->address = $this->email;
431         $invites->address_type = 'email';
432
433         if ($invites->find()) {
434             while ($invites->fetch()) {
435                 try {
436                     $other = Profile::getKV('id', $invites->user_id);
437                     if (!($other instanceof Profile)) {    // remove when getKV throws exceptions
438                         continue;
439                     }
440                     Subscription::start($other, $this->getProfile());
441                 } catch (Exception $e) {
442                     continue;
443                 }
444             }
445         }
446     }
447
448     function mutuallySubscribed(Profile $other)
449     {
450         return $this->getProfile()->mutuallySubscribed($other);
451     }
452
453     function mutuallySubscribedUsers()
454     {
455         // 3-way join; probably should get cached
456         $UT = common_config('db','type')=='pgsql'?'"user"':'user';
457         $qry = "SELECT $UT.* " .
458           "FROM subscription sub1 JOIN $UT ON sub1.subscribed = $UT.id " .
459           "JOIN subscription sub2 ON $UT.id = sub2.subscriber " .
460           'WHERE sub1.subscriber = %d and sub2.subscribed = %d ' .
461           "ORDER BY $UT.nickname";
462         $user = new User();
463         $user->query(sprintf($qry, $this->id, $this->id));
464
465         return $user;
466     }
467
468     function getReplies($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
469     {
470         return $this->getProfile()->getReplies($offset, $limit, $since_id, $before_id);
471     }
472
473     function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0) {
474         return $this->getProfile()->getTaggedNotices($tag, $offset, $limit, $since_id, $before_id);
475     }
476
477     function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0)
478     {
479         return $this->getProfile()->getNotices($offset, $limit, $since_id, $before_id);
480     }
481
482     function block(Profile $other)
483     {
484         // Add a new block record
485
486         // no blocking (and thus unsubbing from) yourself
487
488         if ($this->id == $other->id) {
489             common_log(LOG_WARNING,
490                 sprintf(
491                     "Profile ID %d (%s) tried to block themself.",
492                     $this->id,
493                     $this->nickname
494                 )
495             );
496             return false;
497         }
498
499         $block = new Profile_block();
500
501         // Begin a transaction
502
503         $block->query('BEGIN');
504
505         $block->blocker = $this->id;
506         $block->blocked = $other->id;
507
508         $result = $block->insert();
509
510         if (!$result) {
511             common_log_db_error($block, 'INSERT', __FILE__);
512             return false;
513         }
514
515         $self = $this->getProfile();
516         if (Subscription::exists($other, $self)) {
517             Subscription::cancel($other, $self);
518         }
519         if (Subscription::exists($self, $other)) {
520             Subscription::cancel($self, $other);
521         }
522
523         $block->query('COMMIT');
524
525         return true;
526     }
527
528     function unblock(Profile $other)
529     {
530         // Get the block record
531
532         $block = Profile_block::exists($this->getProfile(), $other);
533
534         if (!$block) {
535             return false;
536         }
537
538         $result = $block->delete();
539
540         if (!$result) {
541             common_log_db_error($block, 'DELETE', __FILE__);
542             return false;
543         }
544
545         return true;
546     }
547
548     function isMember(User_group $group)
549     {
550         return $this->getProfile()->isMember($group);
551     }
552
553     function isAdmin(User_group $group)
554     {
555         return $this->getProfile()->isAdmin($group);
556     }
557
558     function getGroups($offset=0, $limit=null)
559     {
560         return $this->getProfile()->getGroups($offset, $limit);
561     }
562
563     /**
564      * Request to join the given group.
565      * May throw exceptions on failure.
566      *
567      * @param User_group $group
568      * @return Group_member
569      */
570     function joinGroup(User_group $group)
571     {
572         return $this->getProfile()->joinGroup($group);
573     }
574
575     /**
576      * Leave a group that this user is a member of.
577      *
578      * @param User_group $group
579      */
580     function leaveGroup(User_group $group)
581     {
582         return $this->getProfile()->leaveGroup($group);
583     }
584
585     function getSubscribed($offset=0, $limit=null)
586     {
587         return $this->getProfile()->getSubscribed($offset, $limit);
588     }
589
590     function getSubscribers($offset=0, $limit=null)
591     {
592         return $this->getProfile()->getSubscribers($offset, $limit);
593     }
594
595     function getTaggedSubscribers($tag, $offset=0, $limit=null)
596     {
597         return $this->getProfile()->getTaggedSubscribers($tag, $offset, $limit);
598     }
599
600     function getTaggedSubscriptions($tag, $offset=0, $limit=null)
601     {
602         return $this->getProfile()->getTaggedSubscriptions($tag, $offset, $limit);
603     }
604
605     function hasRight($right)
606     {
607         return $this->getProfile()->hasRight($right);
608     }
609
610     function delete($useWhere=false)
611     {
612         if (empty($this->id)) {
613             common_log(LOG_WARNING, "Ambiguous User->delete(); skipping related tables.");
614             return parent::delete($useWhere);
615         }
616
617         try {
618             if (!$this->hasRole(Profile_role::DELETED)) {
619                 $profile = $this->getProfile();
620                 $profile->delete();
621             }
622         } catch (UserNoProfileException $unp) {
623             common_log(LOG_INFO, "User {$this->nickname} has no profile; continuing deletion.");
624         }
625
626         $related = array(
627                          'Confirm_address',
628                          'Remember_me',
629                          'Foreign_link',
630                          'Invitation',
631                          );
632
633         Event::handle('UserDeleteRelated', array($this, &$related));
634
635         foreach ($related as $cls) {
636             $inst = new $cls();
637             $inst->user_id = $this->id;
638             $inst->delete();
639         }
640
641         $this->_deleteTags();
642         $this->_deleteBlocks();
643
644         return parent::delete($useWhere);
645     }
646
647     function _deleteTags()
648     {
649         $tag = new Profile_tag();
650         $tag->tagger = $this->id;
651         $tag->delete();
652     }
653
654     function _deleteBlocks()
655     {
656         $block = new Profile_block();
657         $block->blocker = $this->id;
658         $block->delete();
659         // XXX delete group block? Reset blocker?
660     }
661
662     function hasRole($name)
663     {
664         return $this->getProfile()->hasRole($name);
665     }
666
667     function grantRole($name)
668     {
669         return $this->getProfile()->grantRole($name);
670     }
671
672     function revokeRole($name)
673     {
674         return $this->getProfile()->revokeRole($name);
675     }
676
677     function isSandboxed()
678     {
679         return $this->getProfile()->isSandboxed();
680     }
681
682     function isSilenced()
683     {
684         return $this->getProfile()->isSilenced();
685     }
686
687     function receivesEmailNotifications()
688     {
689         // We could do this in one large if statement, but that's not as easy to read
690         // Don't send notifications if we don't know the user's email address or it is
691         // explicitly undesired by the user's own settings.
692         if (empty($this->email) || !$this->emailnotifyattn) {
693             return false;
694         }
695         // Don't send notifications to a user who is sandboxed or silenced
696         if ($this->isSandboxed() || $this->isSilenced()) {
697             return false;
698         }
699         return true;
700     }
701
702     function repeatedByMe($offset=0, $limit=20, $since_id=null, $max_id=null)
703     {
704         $stream = new RepeatedByMeNoticeStream($this);
705         return $stream->getNotices($offset, $limit, $since_id, $max_id);
706     }
707
708
709     function repeatsOfMe($offset=0, $limit=20, $since_id=null, $max_id=null)
710     {
711         $stream = new RepeatsOfMeNoticeStream($this);
712
713         return $stream->getNotices($offset, $limit, $since_id, $max_id);
714     }
715
716     public function repeatedToMe($offset=0, $limit=20, $since_id=null, $max_id=null)
717     {
718         return $this->getProfile()->repeatedToMe($offset, $limit, $since_id, $max_id);
719     }
720
721     public static function siteOwner()
722     {
723         $owner = self::cacheGet('user:site_owner');
724
725         if ($owner === false) { // cache miss
726
727             $pr = new Profile_role();
728             $pr->role = Profile_role::OWNER;
729             $pr->orderBy('created');
730             $pr->limit(1);
731
732             if (!$pr->find(true)) {
733                 throw new NoResultException($pr);
734             }
735
736             $owner = User::getKV('id', $pr->profile_id);
737
738             self::cacheSet('user:site_owner', $owner);
739         }
740
741         if ($owner instanceof User) {
742             return $owner;
743         }
744
745         throw new ServerException(_('No site owner configured.'));
746     }
747
748     /**
749      * Pull the primary site account to use in single-user mode.
750      * If a valid user nickname is listed in 'singleuser':'nickname'
751      * in the config, this will be used; otherwise the site owner
752      * account is taken by default.
753      *
754      * @return User
755      * @throws ServerException if no valid single user account is present
756      * @throws ServerException if called when not in single-user mode
757      */
758     public static function singleUser()
759     {
760         if (!common_config('singleuser', 'enabled')) {
761             // TRANS: Server exception.
762             throw new ServerException(_('Single-user mode code called when not enabled.'));
763         }
764
765         if ($nickname = common_config('singleuser', 'nickname')) {
766             $user = User::getKV('nickname', $nickname);
767             if ($user instanceof User) {
768                 return $user;
769             }
770         }
771
772         // If there was no nickname or no user by that nickname,
773         // try the site owner. Throws exception if not configured.
774         return User::siteOwner();
775     }
776
777     /**
778      * This is kind of a hack for using external setup code that's trying to
779      * build single-user sites.
780      *
781      * Will still return a username if the config singleuser/nickname is set
782      * even if the account doesn't exist, which normally indicates that the
783      * site is horribly misconfigured.
784      *
785      * At the moment, we need to let it through so that router setup can
786      * complete, otherwise we won't be able to create the account.
787      *
788      * This will be easier when we can more easily create the account and
789      * *then* switch the site to 1user mode without jumping through hoops.
790      *
791      * @return string
792      * @throws ServerException if no valid single user account is present
793      * @throws ServerException if called when not in single-user mode
794      */
795     static function singleUserNickname()
796     {
797         try {
798             $user = User::singleUser();
799             return $user->nickname;
800         } catch (Exception $e) {
801             if (common_config('singleuser', 'enabled') && common_config('singleuser', 'nickname')) {
802                 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.");
803                 return common_config('singleuser', 'nickname');
804             }
805             throw $e;
806         }
807     }
808
809     /**
810      * Find and shorten links in the given text using this user's URL shortening
811      * settings.
812      *
813      * By default, links will be left untouched if the text is shorter than the
814      * configured maximum notice length. Pass true for the $always parameter
815      * to force all links to be shortened regardless.
816      *
817      * Side effects: may save file and file_redirection records for referenced URLs.
818      *
819      * @param string $text
820      * @param boolean $always
821      * @return string
822      */
823     public function shortenLinks($text, $always=false)
824     {
825         return common_shorten_links($text, $always, $this);
826     }
827
828     /*
829      * Get a list of OAuth client applications that have access to this
830      * user's account.
831      */
832     function getConnectedApps($offset = 0, $limit = null)
833     {
834         $qry =
835           'SELECT u.* ' .
836           'FROM oauth_application_user u, oauth_application a ' .
837           'WHERE u.profile_id = %d ' .
838           'AND a.id = u.application_id ' .
839           'AND u.access_type > 0 ' .
840           'ORDER BY u.created DESC ';
841
842         if ($offset > 0) {
843             if (common_config('db','type') == 'pgsql') {
844                 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
845             } else {
846                 $qry .= ' LIMIT ' . $offset . ', ' . $limit;
847             }
848         }
849
850         $apps = new Oauth_application_user();
851
852         $cnt = $apps->query(sprintf($qry, $this->id));
853
854         return $apps;
855     }
856
857     /**
858      * Magic function called at serialize() time.
859      *
860      * We use this to drop a couple process-specific references
861      * from DB_DataObject which can cause trouble in future
862      * processes.
863      *
864      * @return array of variable names to include in serialization.
865      */
866
867     function __sleep()
868     {
869         $vars = parent::__sleep();
870         $skip = array('_profile');
871         return array_diff($vars, $skip);
872     }
873
874     static function recoverPassword($nore)
875     {
876         // $confirm_email will be used as a fallback if our user doesn't have a confirmed email
877         $confirm_email = null;
878
879         if (common_is_email($nore)) {
880             $user = User::getKV('email', common_canonical_email($nore));
881
882             // See if it's an unconfirmed email address
883             if (!$user instanceof User) {
884                 // Warning: it may actually be legit to have multiple folks
885                 // who have claimed, but not yet confirmed, the same address.
886                 // We'll only send to the first one that comes up.
887                 $confirm_email = new Confirm_address();
888                 $confirm_email->address = common_canonical_email($nore);
889                 $confirm_email->address_type = 'email';
890                 if ($confirm_email->find(true)) {
891                     $user = User::getKV('id', $confirm_email->user_id);
892                 }
893             }
894
895             // No luck finding anyone by that email address.
896             if (!$user instanceof User) {
897                 if (common_config('site', 'fakeaddressrecovery')) {
898                     // Return without actually doing anything! We fake address recovery
899                     // to avoid revealing which email addresses are registered with the site.
900                     return;
901                 }
902                 // TRANS: Information on password recovery form if no known e-mail address was specified.
903                 throw new ClientException(_('No user with that email address exists here.'));
904             }
905         } else {
906             // This might throw a NicknameException on bad nicknames
907             $user = User::getKV('nickname', common_canonical_nickname($nore));
908             if (!$user instanceof User) {
909                 // TRANS: Information on password recovery form if no known username was specified.
910                 throw new ClientException(_('No user with that nickname exists here.'));
911             }
912         }
913
914         // Try to get an unconfirmed email address if they used a user name
915         if (empty($user->email) && $confirm_email === null) {
916             $confirm_email = new Confirm_address();
917             $confirm_email->user_id = $user->id;
918             $confirm_email->address_type = 'email';
919             $confirm_email->find();
920             if (!$confirm_email->fetch()) {
921                 // Nothing found, so let's reset it to null
922                 $confirm_email = null;
923             }
924         }
925
926         if (empty($user->email) && !$confirm_email instanceof Confirm_address) {
927             // TRANS: Client error displayed on password recovery form if a user does not have a registered e-mail address.
928             throw new ClientException(_('No registered email address for that user.'));
929         }
930
931         // Success! We have a valid user and a confirmed or unconfirmed email address
932
933         $confirm = new Confirm_address();
934         $confirm->code = common_confirmation_code(128);
935         $confirm->address_type = 'recover';
936         $confirm->user_id = $user->id;
937         $confirm->address = $user->email ?: $confirm_email->address;
938
939         if (!$confirm->insert()) {
940             common_log_db_error($confirm, 'INSERT', __FILE__);
941             // TRANS: Server error displayed if e-mail address confirmation fails in the database on the password recovery form.
942             throw new ServerException(_('Error saving address confirmation.'));
943         }
944
945          // @todo FIXME: needs i18n.
946         $body = "Hey, $user->nickname.";
947         $body .= "\n\n";
948         $body .= 'Someone just asked for a new password ' .
949                  'for this account on ' . common_config('site', 'name') . '.';
950         $body .= "\n\n";
951         $body .= 'If it was you, and you want to confirm, use the URL below:';
952         $body .= "\n\n";
953         $body .= "\t".common_local_url('recoverpassword',
954                                    array('code' => $confirm->code));
955         $body .= "\n\n";
956         $body .= 'If not, just ignore this message.';
957         $body .= "\n\n";
958         $body .= 'Thanks for your time, ';
959         $body .= "\n";
960         $body .= common_config('site', 'name');
961         $body .= "\n";
962
963         $headers = _mail_prepare_headers('recoverpassword', $user->nickname, $user->nickname);
964         // TRANS: Subject for password recovery e-mail.
965         mail_to_user($user, _('Password recovery requested'), $body, $headers, $confirm->address);
966     }
967
968     function streamModeOnly()
969     {
970         if (common_config('oldschool', 'enabled')) {
971             $osp = Old_school_prefs::getKV('user_id', $this->id);
972             if (!empty($osp)) {
973                 return $osp->stream_mode_only;
974             }
975         }
976
977         return false;
978     }
979
980     function streamNicknames()
981     {
982         if (common_config('oldschool', 'enabled')) {
983             $osp = Old_school_prefs::getKV('user_id', $this->id);
984             if (!empty($osp)) {
985                 return $osp->stream_nicknames;
986             }
987         }
988         return false;
989     }
990
991     function registrationActivity()
992     {
993         $profile = $this->getProfile();
994
995         $service = new ActivityObject();
996
997         $service->type  = ActivityObject::SERVICE;
998         $service->title = common_config('site', 'name');
999         $service->link  = common_root_url();
1000         $service->id    = $service->link;
1001
1002         $act = new Activity();
1003
1004         $act->actor = $profile->asActivityObject();
1005         $act->verb = ActivityVerb::JOIN;
1006
1007         $act->objects[] = $service;
1008
1009         $act->id = TagURI::mint('user:register:%d',
1010                                 $this->id);
1011
1012         $act->time = strtotime($this->created);
1013
1014         $act->title = _("Register");
1015
1016         $act->content = sprintf(_('%1$s joined %2$s.'),
1017                                 $profile->getBestName(),
1018                                 $service->title);
1019         return $act;
1020     }
1021
1022     public function isPrivateStream()
1023     {
1024         return $this->getProfile()->isPrivateStream();
1025     }
1026
1027     public function hasPassword()
1028     {
1029         return !empty($this->password);
1030     }
1031
1032     public function setPassword($password)
1033     {
1034         $orig = clone($this);
1035         $this->password = common_munge_password($password, $this->getProfile());
1036
1037         if ($this->validate() !== true) {
1038             // TRANS: Form validation error on page where to change password.
1039             throw new ServerException(_('Error saving user; invalid.'));
1040         }
1041
1042         if (!$this->update($orig)) {
1043             common_log_db_error($this, 'UPDATE', __FILE__);
1044             // TRANS: Server error displayed on page where to change password when password change
1045             // TRANS: could not be made because of a server error.
1046             throw new ServerException(_('Cannot save new password.'));
1047         }
1048     }
1049
1050     public function delPref($namespace, $topic)
1051     {
1052         return $this->getProfile()->delPref($namespace, $topic);
1053     }
1054
1055     public function getPref($namespace, $topic, $default=null)
1056     {
1057         return $this->getProfile()->getPref($namespace, $topic, $default);
1058     }
1059
1060     public function getConfigPref($namespace, $topic)
1061     {
1062         return $this->getProfile()->getConfigPref($namespace, $topic);
1063     }
1064
1065     public function setPref($namespace, $topic, $data)
1066     {
1067         return $this->getProfile()->setPref($namespace, $topic, $data);
1068     }
1069 }