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