]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/User.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
[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('STATUSNET') && !defined('LACONICA')) {
21     exit(1);
22 }
23
24 /**
25  * Table Definition for user
26  */
27
28 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
29 require_once 'Validate.php';
30
31 class User extends Memcached_DataObject
32 {
33     ###START_AUTOCODE
34     /* the code below is auto generated do not remove the above tag */
35
36     public $__table = 'user';                            // table name
37     public $id;                              // int(4)  primary_key not_null
38     public $nickname;                        // varchar(64)  unique_key
39     public $password;                        // varchar(255)
40     public $email;                           // varchar(255)  unique_key
41     public $incomingemail;                   // varchar(255)  unique_key
42     public $emailnotifysub;                  // tinyint(1)   default_1
43     public $emailnotifyfav;                  // tinyint(1)   default_1
44     public $emailnotifynudge;                // tinyint(1)   default_1
45     public $emailnotifymsg;                  // tinyint(1)   default_1
46     public $emailnotifyattn;                 // tinyint(1)   default_1
47     public $emailmicroid;                    // tinyint(1)   default_1
48     public $language;                        // varchar(50)
49     public $timezone;                        // varchar(50)
50     public $emailpost;                       // tinyint(1)   default_1
51     public $jabber;                          // varchar(255)  unique_key
52     public $jabbernotify;                    // tinyint(1)
53     public $jabberreplies;                   // tinyint(1)
54     public $jabbermicroid;                   // tinyint(1)   default_1
55     public $updatefrompresence;              // tinyint(1)
56     public $sms;                             // varchar(64)  unique_key
57     public $carrier;                         // int(4)
58     public $smsnotify;                       // tinyint(1)
59     public $smsreplies;                      // tinyint(1)
60     public $smsemail;                        // varchar(255)
61     public $uri;                             // varchar(255)  unique_key
62     public $autosubscribe;                   // tinyint(1)
63     public $urlshorteningservice;            // varchar(50)   default_ur1.ca
64     public $inboxed;                         // tinyint(1)
65     public $design_id;                       // int(4)
66     public $viewdesigns;                     // tinyint(1)   default_1
67     public $created;                         // datetime()   not_null
68     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
69
70     /* Static get */
71     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User',$k,$v); }
72
73     /* the code above is auto generated do not remove the tag below */
74     ###END_AUTOCODE
75
76     function getProfile()
77     {
78         return Profile::staticGet('id', $this->id);
79     }
80
81     function isSubscribed($other)
82     {
83         return Subscription::exists($this->getProfile(), $other);
84     }
85
86     // 'update' won't write key columns, so we have to do it ourselves.
87
88     function updateKeys(&$orig)
89     {
90         $parts = array();
91         foreach (array('nickname', 'email', 'jabber', 'incomingemail', 'sms', 'carrier', 'smsemail', 'language', 'timezone') as $k) {
92             if (strcmp($this->$k, $orig->$k) != 0) {
93                 $parts[] = $k . ' = ' . $this->_quote($this->$k);
94             }
95         }
96         if (count($parts) == 0) {
97             // No changes
98             return true;
99         }
100         $toupdate = implode(', ', $parts);
101
102         $table = common_database_tablename($this->tableName());
103         $qry = 'UPDATE ' . $table . ' SET ' . $toupdate .
104           ' WHERE id = ' . $this->id;
105         $orig->decache();
106         $result = $this->query($qry);
107         if ($result) {
108             $this->encache();
109         }
110         return $result;
111     }
112
113     static function allowed_nickname($nickname)
114     {
115         // XXX: should already be validated for size, content, etc.
116         $blacklist = common_config('nickname', 'blacklist');
117
118         //all directory and file names should be blacklisted
119         $d = dir(INSTALLDIR);
120         while (false !== ($entry = $d->read())) {
121             $blacklist[]=$entry;
122         }
123         $d->close();
124
125         //all top level names in the router should be blacklisted
126         $router = Router::get();
127         foreach(array_keys($router->m->getPaths()) as $path){
128             if(preg_match('/^\/(.*?)[\/\?]/',$path,$matches)){
129                 $blacklist[]=$matches[1];
130             }
131         }
132         return !in_array($nickname, $blacklist);
133     }
134
135     function getCurrentNotice($dt=null)
136     {
137         $profile = $this->getProfile();
138         if (!$profile) {
139             return null;
140         }
141         return $profile->getCurrentNotice($dt);
142     }
143
144     function getCarrier()
145     {
146         return Sms_carrier::staticGet('id', $this->carrier);
147     }
148
149     function subscribeTo($other)
150     {
151         $sub = new Subscription();
152         $sub->subscriber = $this->id;
153         $sub->subscribed = $other->id;
154
155         $sub->created = common_sql_now(); // current time
156
157         if (!$sub->insert()) {
158             return false;
159         }
160
161         return true;
162     }
163
164     function hasBlocked($other)
165     {
166         $profile = $this->getProfile();
167         return $profile->hasBlocked($other);
168     }
169
170     /**
171      * Register a new user account and profile and set up default subscriptions.
172      * If a new-user welcome message is configured, this will be sent.
173      *
174      * @param array $fields associative array of optional properties
175      *              string 'bio'
176      *              string 'email'
177      *              bool 'email_confirmed' pass true to mark email as pre-confirmed
178      *              string 'fullname'
179      *              string 'homepage'
180      *              string 'location' informal string description of geolocation
181      *              float 'lat' decimal latitude for geolocation
182      *              float 'lon' decimal longitude for geolocation
183      *              int 'location_id' geoname identifier
184      *              int 'location_ns' geoname namespace to interpret location_id
185      *              string 'nickname' REQUIRED
186      *              string 'password' (may be missing for eg OpenID registrations)
187      *              string 'code' invite code
188      *              ?string 'uri' permalink to notice; defaults to local notice URL
189      * @return mixed User object or false on failure
190      */
191     static function register($fields) {
192
193         // MAGICALLY put fields into current scope
194
195         extract($fields);
196
197         $profile = new Profile();
198
199         if(!empty($email))
200         {
201             $email = common_canonical_email($email);
202         }
203
204         $nickname = common_canonical_nickname($nickname);
205         $profile->nickname = $nickname;
206         if(! User::allowed_nickname($nickname)){
207             common_log(LOG_WARNING, sprintf("Attempted to register a nickname that is not allowed: %s", $profile->nickname),
208                        __FILE__);
209         }
210         $profile->profileurl = common_profile_url($nickname);
211
212         if (!empty($fullname)) {
213             $profile->fullname = $fullname;
214         }
215         if (!empty($homepage)) {
216             $profile->homepage = $homepage;
217         }
218         if (!empty($bio)) {
219             $profile->bio = $bio;
220         }
221         if (!empty($location)) {
222             $profile->location = $location;
223
224             $loc = Location::fromName($location);
225
226             if (!empty($loc)) {
227                 $profile->lat         = $loc->lat;
228                 $profile->lon         = $loc->lon;
229                 $profile->location_id = $loc->location_id;
230                 $profile->location_ns = $loc->location_ns;
231             }
232         }
233
234         $profile->created = common_sql_now();
235
236         $user = new User();
237
238         $user->nickname = $nickname;
239
240         // Users who respond to invite email have proven their ownership of that address
241
242         if (!empty($code)) {
243             $invite = Invitation::staticGet($code);
244             if ($invite && $invite->address && $invite->address_type == 'email' && $invite->address == $email) {
245                 $user->email = $invite->address;
246             }
247         }
248
249         if(isset($email_confirmed) && $email_confirmed) {
250             $user->email = $email;
251         }
252
253         // This flag is ignored but still set to 1
254
255         $user->inboxed = 1;
256
257         $user->created = common_sql_now();
258
259         if (Event::handle('StartUserRegister', array(&$user, &$profile))) {
260
261             $profile->query('BEGIN');
262
263             $id = $profile->insert();
264
265             if (empty($id)) {
266                 common_log_db_error($profile, 'INSERT', __FILE__);
267                 return false;
268             }
269
270             $user->id = $id;
271             $user->uri = common_user_uri($user);
272             if (!empty($password)) { // may not have a password for OpenID users
273                 $user->password = common_munge_password($password, $id);
274             }
275
276             $result = $user->insert();
277
278             if (!$result) {
279                 common_log_db_error($user, 'INSERT', __FILE__);
280                 return false;
281             }
282
283             // Everyone gets an inbox
284
285             $inbox = new Inbox();
286
287             $inbox->user_id = $user->id;
288             $inbox->notice_ids = '';
289
290             $result = $inbox->insert();
291
292             if (!$result) {
293                 common_log_db_error($inbox, 'INSERT', __FILE__);
294                 return false;
295             }
296
297             // Everyone is subscribed to themself
298
299             $subscription = new Subscription();
300             $subscription->subscriber = $user->id;
301             $subscription->subscribed = $user->id;
302             $subscription->created = $user->created;
303
304             $result = $subscription->insert();
305
306             if (!$result) {
307                 common_log_db_error($subscription, 'INSERT', __FILE__);
308                 return false;
309             }
310
311             if (!empty($email) && !$user->email) {
312
313                 $confirm = new Confirm_address();
314                 $confirm->code = common_confirmation_code(128);
315                 $confirm->user_id = $user->id;
316                 $confirm->address = $email;
317                 $confirm->address_type = 'email';
318
319                 $result = $confirm->insert();
320
321                 if (!$result) {
322                     common_log_db_error($confirm, 'INSERT', __FILE__);
323                     return false;
324                 }
325             }
326
327             if (!empty($code) && $user->email) {
328                 $user->emailChanged();
329             }
330
331             // Default system subscription
332
333             $defnick = common_config('newuser', 'default');
334
335             if (!empty($defnick)) {
336                 $defuser = User::staticGet('nickname', $defnick);
337                 if (empty($defuser)) {
338                     common_log(LOG_WARNING, sprintf("Default user %s does not exist.", $defnick),
339                                __FILE__);
340                 } else {
341                     $defsub = new Subscription();
342                     $defsub->subscriber = $user->id;
343                     $defsub->subscribed = $defuser->id;
344                     $defsub->created = $user->created;
345
346                     $result = $defsub->insert();
347
348                     if (!$result) {
349                         common_log_db_error($defsub, 'INSERT', __FILE__);
350                         return false;
351                     }
352                 }
353             }
354
355             $profile->query('COMMIT');
356
357             if (!empty($email) && !$user->email) {
358                 mail_confirm_address($user, $confirm->code, $profile->nickname, $email);
359             }
360
361             // Welcome message
362
363             $welcome = common_config('newuser', 'welcome');
364
365             if (!empty($welcome)) {
366                 $welcomeuser = User::staticGet('nickname', $welcome);
367                 if (empty($welcomeuser)) {
368                     common_log(LOG_WARNING, sprintf("Welcome user %s does not exist.", $defnick),
369                                __FILE__);
370                 } else {
371                     $notice = Notice::saveNew($welcomeuser->id,
372                                               sprintf(_('Welcome to %1$s, @%2$s!'),
373                                                       common_config('site', 'name'),
374                                                       $user->nickname),
375                                               'system');
376
377                 }
378             }
379
380             Event::handle('EndUserRegister', array(&$profile, &$user));
381         }
382
383         return $user;
384     }
385
386     // Things we do when the email changes
387
388     function emailChanged()
389     {
390
391         $invites = new Invitation();
392         $invites->address = $this->email;
393         $invites->address_type = 'email';
394
395         if ($invites->find()) {
396             while ($invites->fetch()) {
397                 $other = User::staticGet($invites->user_id);
398                 subs_subscribe_to($other, $this);
399             }
400         }
401     }
402
403     function hasFave($notice)
404     {
405         $cache = common_memcache();
406
407         // XXX: Kind of a hack.
408
409         if ($cache) {
410             // This is the stream of favorite notices, in rev chron
411             // order. This forces it into cache.
412
413             $ids = Fave::stream($this->id, 0, NOTICE_CACHE_WINDOW);
414
415             // If it's in the list, then it's a fave
416
417             if (in_array($notice->id, $ids)) {
418                 return true;
419             }
420
421             // If we're not past the end of the cache window,
422             // then the cache has all available faves, so this one
423             // is not a fave.
424
425             if (count($ids) < NOTICE_CACHE_WINDOW) {
426                 return false;
427             }
428
429             // Otherwise, cache doesn't have all faves;
430             // fall through to the default
431         }
432
433         $fave = Fave::pkeyGet(array('user_id' => $this->id,
434                                     'notice_id' => $notice->id));
435         return ((is_null($fave)) ? false : true);
436     }
437
438     function mutuallySubscribed($other)
439     {
440         return $this->isSubscribed($other) &&
441           $other->isSubscribed($this);
442     }
443
444     function mutuallySubscribedUsers()
445     {
446         // 3-way join; probably should get cached
447         $UT = common_config('db','type')=='pgsql'?'"user"':'user';
448         $qry = "SELECT $UT.* " .
449           "FROM subscription sub1 JOIN $UT ON sub1.subscribed = $UT.id " .
450           "JOIN subscription sub2 ON $UT.id = sub2.subscriber " .
451           'WHERE sub1.subscriber = %d and sub2.subscribed = %d ' .
452           "ORDER BY $UT.nickname";
453         $user = new User();
454         $user->query(sprintf($qry, $this->id, $this->id));
455
456         return $user;
457     }
458
459     function getReplies($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
460     {
461         $ids = Reply::stream($this->id, $offset, $limit, $since_id, $before_id, $since);
462         return Notice::getStreamByIds($ids);
463     }
464
465     function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) {
466         $profile = $this->getProfile();
467         if (!$profile) {
468             return null;
469         } else {
470             return $profile->getTaggedNotices($tag, $offset, $limit, $since_id, $before_id, $since);
471         }
472     }
473
474     function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
475     {
476         $profile = $this->getProfile();
477         if (!$profile) {
478             return null;
479         } else {
480             return $profile->getNotices($offset, $limit, $since_id, $before_id, $since);
481         }
482     }
483
484     function favoriteNotices($offset=0, $limit=NOTICES_PER_PAGE, $own=false)
485     {
486         $ids = Fave::stream($this->id, $offset, $limit, $own);
487         return Notice::getStreamByIds($ids);
488     }
489
490     function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
491     {
492         return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, false);
493     }
494
495     function noticeInbox($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
496     {
497         return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, true);
498     }
499
500     function friendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
501     {
502         return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, false);
503     }
504
505     function ownFriendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
506     {
507         return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, true);
508     }
509
510     function blowFavesCache()
511     {
512         $cache = common_memcache();
513         if ($cache) {
514             // Faves don't happen chronologically, so we need to blow
515             // ;last cache, too
516             $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id));
517             $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last'));
518             $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id));
519             $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id.';last'));
520         }
521         $profile = $this->getProfile();
522         $profile->blowFaveCount();
523     }
524
525     function getSelfTags()
526     {
527         return Profile_tag::getTags($this->id, $this->id);
528     }
529
530     function setSelfTags($newtags)
531     {
532         return Profile_tag::setTags($this->id, $this->id, $newtags);
533     }
534
535     function block($other)
536     {
537         // Add a new block record
538
539         // no blocking (and thus unsubbing from) yourself
540
541         if ($this->id == $other->id) {
542             common_log(LOG_WARNING,
543                 sprintf(
544                     "Profile ID %d (%s) tried to block his or herself.",
545                     $profile->id,
546                     $profile->nickname
547                 )
548             );
549             return false;
550         }
551
552         $block = new Profile_block();
553
554         // Begin a transaction
555
556         $block->query('BEGIN');
557
558         $block->blocker = $this->id;
559         $block->blocked = $other->id;
560
561         $result = $block->insert();
562
563         if (!$result) {
564             common_log_db_error($block, 'INSERT', __FILE__);
565             return false;
566         }
567
568         // Cancel their subscription, if it exists
569
570         $otherUser = User::staticGet('id', $other->id);
571
572         if (!empty($otherUser)) {
573             subs_unsubscribe_to($otherUser, $this->getProfile());
574         }
575
576         $block->query('COMMIT');
577
578         return true;
579     }
580
581     function unblock($other)
582     {
583         // Get the block record
584
585         $block = Profile_block::get($this->id, $other->id);
586
587         if (!$block) {
588             return false;
589         }
590
591         $result = $block->delete();
592
593         if (!$result) {
594             common_log_db_error($block, 'DELETE', __FILE__);
595             return false;
596         }
597
598         return true;
599     }
600
601     function isMember($group)
602     {
603         $profile = $this->getProfile();
604         return $profile->isMember($group);
605     }
606
607     function isAdmin($group)
608     {
609         $profile = $this->getProfile();
610         return $profile->isAdmin($group);
611     }
612
613     function getGroups($offset=0, $limit=null)
614     {
615         $qry =
616           'SELECT user_group.* ' .
617           'FROM user_group JOIN group_member '.
618           'ON user_group.id = group_member.group_id ' .
619           'WHERE group_member.profile_id = %d ' .
620           'ORDER BY group_member.created DESC ';
621
622         if ($offset>0 && !is_null($limit)) {
623             if ($offset) {
624                 if (common_config('db','type') == 'pgsql') {
625                     $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
626                 } else {
627                     $qry .= ' LIMIT ' . $offset . ', ' . $limit;
628                 }
629             }
630         }
631
632         $groups = new User_group();
633
634         $cnt = $groups->query(sprintf($qry, $this->id));
635
636         return $groups;
637     }
638
639     function getSubscriptions($offset=0, $limit=null)
640     {
641         $profile = $this->getProfile();
642         assert(!empty($profile));
643         return $profile->getSubscriptions($offset, $limit);
644     }
645
646     function getSubscribers($offset=0, $limit=null)
647     {
648         $profile = $this->getProfile();
649         assert(!empty($profile));
650         return $profile->getSubscribers($offset, $limit);
651     }
652
653     function getTaggedSubscribers($tag, $offset=0, $limit=null)
654     {
655         $qry =
656           'SELECT profile.* ' .
657           'FROM profile JOIN subscription ' .
658           'ON profile.id = subscription.subscriber ' .
659           'JOIN profile_tag ON (profile_tag.tagged = subscription.subscriber ' .
660           'AND profile_tag.tagger = subscription.subscribed) ' .
661           'WHERE subscription.subscribed = %d ' .
662           "AND profile_tag.tag = '%s' " .
663           'AND subscription.subscribed != subscription.subscriber ' .
664           'ORDER BY subscription.created DESC ';
665
666         if ($offset) {
667             $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
668         }
669
670         $profile = new Profile();
671
672         $cnt = $profile->query(sprintf($qry, $this->id, $tag));
673
674         return $profile;
675     }
676
677     function getTaggedSubscriptions($tag, $offset=0, $limit=null)
678     {
679         $qry =
680           'SELECT profile.* ' .
681           'FROM profile JOIN subscription ' .
682           'ON profile.id = subscription.subscribed ' .
683           'JOIN profile_tag on (profile_tag.tagged = subscription.subscribed ' .
684           'AND profile_tag.tagger = subscription.subscriber) ' .
685           'WHERE subscription.subscriber = %d ' .
686           "AND profile_tag.tag = '%s' " .
687           'AND subscription.subscribed != subscription.subscriber ' .
688           'ORDER BY subscription.created DESC ';
689
690         $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
691
692         $profile = new Profile();
693
694         $profile->query(sprintf($qry, $this->id, $tag));
695
696         return $profile;
697     }
698
699     function getDesign()
700     {
701         return Design::staticGet('id', $this->design_id);
702     }
703
704     function hasRight($right)
705     {
706         $profile = $this->getProfile();
707         return $profile->hasRight($right);
708     }
709
710     function delete()
711     {
712         $profile = $this->getProfile();
713         if ($profile) {
714             $profile->delete();
715         }
716
717         $related = array('Fave',
718                          'Confirm_address',
719                          'Remember_me',
720                          'Foreign_link',
721                          'Invitation',
722                          );
723         Event::handle('UserDeleteRelated', array($this, &$related));
724
725         foreach ($related as $cls) {
726             $inst = new $cls();
727             $inst->user_id = $this->id;
728             $inst->delete();
729         }
730
731         $this->_deleteTags();
732         $this->_deleteBlocks();
733
734         parent::delete();
735     }
736
737     function _deleteTags()
738     {
739         $tag = new Profile_tag();
740         $tag->tagger = $this->id;
741         $tag->delete();
742     }
743
744     function _deleteBlocks()
745     {
746         $block = new Profile_block();
747         $block->blocker = $this->id;
748         $block->delete();
749         // XXX delete group block? Reset blocker?
750     }
751
752     function hasRole($name)
753     {
754         $profile = $this->getProfile();
755         return $profile->hasRole($name);
756     }
757
758     function grantRole($name)
759     {
760         $profile = $this->getProfile();
761         return $profile->grantRole($name);
762     }
763
764     function revokeRole($name)
765     {
766         $profile = $this->getProfile();
767         return $profile->revokeRole($name);
768     }
769
770     function isSandboxed()
771     {
772         $profile = $this->getProfile();
773         return $profile->isSandboxed();
774     }
775
776     function isSilenced()
777     {
778         $profile = $this->getProfile();
779         return $profile->isSilenced();
780     }
781
782     function repeatedByMe($offset=0, $limit=20, $since_id=null, $max_id=null)
783     {
784         $ids = Notice::stream(array($this, '_repeatedByMeDirect'),
785                               array(),
786                               'user:repeated_by_me:'.$this->id,
787                               $offset, $limit, $since_id, $max_id, null);
788
789         return Notice::getStreamByIds($ids);
790     }
791
792     function _repeatedByMeDirect($offset, $limit, $since_id, $max_id, $since)
793     {
794         $notice = new Notice();
795
796         $notice->selectAdd(); // clears it
797         $notice->selectAdd('id');
798
799         $notice->profile_id = $this->id;
800         $notice->whereAdd('repeat_of IS NOT NULL');
801
802         $notice->orderBy('id DESC');
803
804         if (!is_null($offset)) {
805             $notice->limit($offset, $limit);
806         }
807
808         if ($since_id != 0) {
809             $notice->whereAdd('id > ' . $since_id);
810         }
811
812         if ($max_id != 0) {
813             $notice->whereAdd('id <= ' . $max_id);
814         }
815
816         if (!is_null($since)) {
817             $notice->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\'');
818         }
819
820         $ids = array();
821
822         if ($notice->find()) {
823             while ($notice->fetch()) {
824                 $ids[] = $notice->id;
825             }
826         }
827
828         $notice->free();
829         $notice = NULL;
830
831         return $ids;
832     }
833
834     function repeatsOfMe($offset=0, $limit=20, $since_id=null, $max_id=null)
835     {
836         $ids = Notice::stream(array($this, '_repeatsOfMeDirect'),
837                               array(),
838                               'user:repeats_of_me:'.$this->id,
839                               $offset, $limit, $since_id, $max_id, null);
840
841         return Notice::getStreamByIds($ids);
842     }
843
844     function _repeatsOfMeDirect($offset, $limit, $since_id, $max_id, $since)
845     {
846         $qry =
847           'SELECT DISTINCT original.id AS id ' .
848           'FROM notice original JOIN notice rept ON original.id = rept.repeat_of ' .
849           'WHERE original.profile_id = ' . $this->id . ' ';
850
851         if ($since_id != 0) {
852             $qry .= 'AND original.id > ' . $since_id . ' ';
853         }
854
855         if ($max_id != 0) {
856             $qry .= 'AND original.id <= ' . $max_id . ' ';
857         }
858
859         if (!is_null($since)) {
860             $qry .= 'AND original.modified > \'' . date('Y-m-d H:i:s', $since) . '\' ';
861         }
862
863         // NOTE: we sort by fave time, not by notice time!
864
865         $qry .= 'ORDER BY original.id DESC ';
866
867         if (!is_null($offset)) {
868             $qry .= "LIMIT $limit OFFSET $offset";
869         }
870
871         $ids = array();
872
873         $notice = new Notice();
874
875         $notice->query($qry);
876
877         while ($notice->fetch()) {
878             $ids[] = $notice->id;
879         }
880
881         $notice->free();
882         $notice = NULL;
883
884         return $ids;
885     }
886
887     function repeatedToMe($offset=0, $limit=20, $since_id=null, $max_id=null)
888     {
889         throw new Exception("Not implemented since inbox change.");
890     }
891
892     function shareLocation()
893     {
894         $cfg = common_config('location', 'share');
895
896         if ($cfg == 'always') {
897             return true;
898         } else if ($cfg == 'never') {
899             return false;
900         } else { // user
901             $share = true;
902
903             $prefs = User_location_prefs::staticGet('user_id', $this->id);
904
905             if (empty($prefs)) {
906                 $share = common_config('location', 'sharedefault');
907             } else {
908                 $share = $prefs->share_location;
909                 $prefs->free();
910             }
911
912             return $share;
913         }
914     }
915
916     static function siteOwner()
917     {
918         $owner = self::cacheGet('user:site_owner');
919
920         if ($owner === false) { // cache miss
921
922             $pr = new Profile_role();
923
924             $pr->role = Profile_role::OWNER;
925
926             $pr->orderBy('created');
927
928             $pr->limit(1);
929
930             if ($pr->find(true)) {
931                 $owner = User::staticGet('id', $pr->profile_id);
932             } else {
933                 $owner = null;
934             }
935
936             self::cacheSet('user:site_owner', $owner);
937         }
938
939         return $owner;
940     }
941 }