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