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