]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Profile.php
5058fbce6836d91281e58cdc9bcb6b153c2ed229
[quix0rs-gnu-social.git] / classes / Profile.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008-2011, 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')) { exit(1); }
21
22 /**
23  * Table Definition for profile
24  */
25 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
26
27 class Profile extends Managed_DataObject
28 {
29     ###START_AUTOCODE
30     /* the code below is auto generated do not remove the above tag */
31
32     public $__table = 'profile';                         // table name
33     public $id;                              // int(4)  primary_key not_null
34     public $nickname;                        // varchar(64)  multiple_key not_null
35     public $fullname;                        // varchar(255)  multiple_key
36     public $profileurl;                      // varchar(255)
37     public $homepage;                        // varchar(255)  multiple_key
38     public $bio;                             // text()  multiple_key
39     public $location;                        // varchar(255)  multiple_key
40     public $lat;                             // decimal(10,7)
41     public $lon;                             // decimal(10,7)
42     public $location_id;                     // int(4)
43     public $location_ns;                     // int(4)
44     public $created;                         // datetime()   not_null
45     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
46
47     public static function schemaDef()
48     {
49         $def = array(
50             'description' => 'local and remote users have profiles',
51             'fields' => array(
52                 'id' => array('type' => 'serial', 'not null' => true, 'description' => 'unique identifier'),
53                 'nickname' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'nickname or username', 'collate' => 'utf8_general_ci'),
54                 'fullname' => array('type' => 'varchar', 'length' => 255, 'description' => 'display name', 'collate' => 'utf8_general_ci'),
55                 'profileurl' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL, cached so we dont regenerate'),
56                 'homepage' => array('type' => 'varchar', 'length' => 255, 'description' => 'identifying URL', 'collate' => 'utf8_general_ci'),
57                 'bio' => array('type' => 'text', 'description' => 'descriptive biography', 'collate' => 'utf8_general_ci'),
58                 'location' => array('type' => 'varchar', 'length' => 255, 'description' => 'physical location', 'collate' => 'utf8_general_ci'),
59                 'lat' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'),
60                 'lon' => array('type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'),
61                 'location_id' => array('type' => 'int', 'description' => 'location id if possible'),
62                 'location_ns' => array('type' => 'int', 'description' => 'namespace for location'),
63
64                 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'),
65                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
66             ),
67             'primary key' => array('id'),
68             'indexes' => array(
69                 'profile_nickname_idx' => array('nickname'),
70             )
71         );
72
73         // Add a fulltext index
74
75         if (common_config('search', 'type') == 'fulltext') {
76             $def['fulltext indexes'] = array('nickname' => array('nickname', 'fullname', 'location', 'bio', 'homepage'));
77         }
78
79         return $def;
80     }
81         
82     /* the code above is auto generated do not remove the tag below */
83     ###END_AUTOCODE
84
85     public static function getByEmail($email)
86     {
87         // in the future, profiles should have emails stored...
88         $user = User::getKV('email', $email);
89         if (!($user instanceof User)) {
90             throw new NoSuchUserException(array('email'=>$email));
91         }
92         return $user->getProfile();
93     } 
94
95     protected $_user = -1;  // Uninitialized value distinct from null
96
97     public function getUser()
98     {
99         if ($this->_user === -1) {
100             $this->_user = User::getKV('id', $this->id);
101         }
102         if (!($this->_user instanceof User)) {
103             throw new NoSuchUserException(array('id'=>$this->id));
104         }
105
106         return $this->_user;
107     }
108
109     public function isLocal()
110     {
111         try {
112             $this->getUser();
113         } catch (NoSuchUserException $e) {
114             return false;
115         }
116         return true;
117     }
118
119     protected $_avatars = array();
120
121     public function getAvatar($width, $height=null)
122     {
123         return Avatar::byProfile($this, $width, $height);
124     }
125
126     public function setOriginal($filename)
127     {
128         $imagefile = new ImageFile($this->id, Avatar::path($filename));
129
130         $avatar = new Avatar();
131         $avatar->profile_id = $this->id;
132         $avatar->width = $imagefile->width;
133         $avatar->height = $imagefile->height;
134         $avatar->mediatype = image_type_to_mime_type($imagefile->type);
135         $avatar->filename = $filename;
136         $avatar->original = true;
137         $avatar->url = Avatar::url($filename);
138         $avatar->created = common_sql_now();
139
140         // XXX: start a transaction here
141         if (!Avatar::deleteFromProfile($this, true) || !$avatar->insert()) {
142             // If we can't delete the old avatars, let's abort right here.
143             @unlink(Avatar::path($filename));
144             return null;
145         }
146
147         foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) {
148             // We don't do a scaled one if original is our scaled size
149             if (!($avatar->width == $size && $avatar->height == $size)) {
150                 try {
151                     Avatar::newSize($this, $size);
152                 } catch (Exception $e) {
153                     // should we abort the generation and live without smaller avatars?
154                 }
155             }
156         }
157
158         return $avatar;
159     }
160
161     /**
162      * Gets either the full name (if filled) or the nickname.
163      *
164      * @return string
165      */
166     function getBestName()
167     {
168         return ($this->fullname) ? $this->fullname : $this->nickname;
169     }
170
171     /**
172      * Gets the full name (if filled) with nickname as a parenthetical, or the nickname alone
173      * if no fullname is provided.
174      *
175      * @return string
176      */
177     function getFancyName()
178     {
179         if ($this->fullname) {
180             // TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses.
181             return sprintf(_m('FANCYNAME','%1$s (%2$s)'), $this->fullname, $this->nickname);
182         } else {
183             return $this->nickname;
184         }
185     }
186
187     /**
188      * Get the most recent notice posted by this user, if any.
189      *
190      * @return mixed Notice or null
191      */
192     function getCurrentNotice()
193     {
194         $notice = $this->getNotices(0, 1);
195
196         if ($notice->fetch()) {
197             if ($notice instanceof ArrayWrapper) {
198                 // hack for things trying to work with single notices
199                 return $notice->_items[0];
200             }
201             return $notice;
202         } else {
203             return null;
204         }
205     }
206
207     function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
208     {
209         $stream = new TaggedProfileNoticeStream($this, $tag);
210
211         return $stream->getNotices($offset, $limit, $since_id, $max_id);
212     }
213
214     function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0, Profile $scoped=null)
215     {
216         $stream = new ProfileNoticeStream($this, $scoped);
217
218         return $stream->getNotices($offset, $limit, $since_id, $max_id);
219     }
220
221     function isMember($group)
222     {
223         $groups = $this->getGroups(0, null);
224         $gs = $groups->fetchAll();
225         foreach ($gs as $g) {
226             if ($group->id == $g->id) {
227                 return true;
228             }
229         }
230         return false;
231     }
232
233     function isAdmin($group)
234     {
235         $gm = Group_member::pkeyGet(array('profile_id' => $this->id,
236                                           'group_id' => $group->id));
237         return (!empty($gm) && $gm->is_admin);
238     }
239
240     function isPendingMember($group)
241     {
242         $request = Group_join_queue::pkeyGet(array('profile_id' => $this->id,
243                                                    'group_id' => $group->id));
244         return !empty($request);
245     }
246
247     function getGroups($offset=0, $limit=PROFILES_PER_PAGE)
248     {
249         $ids = array();
250
251         $keypart = sprintf('profile:groups:%d', $this->id);
252
253         $idstring = self::cacheGet($keypart);
254
255         if ($idstring !== false) {
256             $ids = explode(',', $idstring);
257         } else {
258             $gm = new Group_member();
259
260             $gm->profile_id = $this->id;
261
262             if ($gm->find()) {
263                 while ($gm->fetch()) {
264                     $ids[] = $gm->group_id;
265                 }
266             }
267
268             self::cacheSet($keypart, implode(',', $ids));
269         }
270
271         if (!is_null($offset) && !is_null($limit)) {
272             $ids = array_slice($ids, $offset, $limit);
273         }
274
275         return User_group::multiGet('id', $ids);
276     }
277
278     function isTagged($peopletag)
279     {
280         $tag = Profile_tag::pkeyGet(array('tagger' => $peopletag->tagger,
281                                           'tagged' => $this->id,
282                                           'tag'    => $peopletag->tag));
283         return !empty($tag);
284     }
285
286     function canTag($tagged)
287     {
288         if (empty($tagged)) {
289             return false;
290         }
291
292         if ($tagged->id == $this->id) {
293             return true;
294         }
295
296         $all = common_config('peopletag', 'allow_tagging', 'all');
297         $local = common_config('peopletag', 'allow_tagging', 'local');
298         $remote = common_config('peopletag', 'allow_tagging', 'remote');
299         $subs = common_config('peopletag', 'allow_tagging', 'subs');
300
301         if ($all) {
302             return true;
303         }
304
305         $tagged_user = $tagged->getUser();
306         if (!empty($tagged_user)) {
307             if ($local) {
308                 return true;
309             }
310         } else if ($subs) {
311             return (Subscription::exists($this, $tagged) ||
312                     Subscription::exists($tagged, $this));
313         } else if ($remote) {
314             return true;
315         }
316         return false;
317     }
318
319     function getLists($auth_user, $offset=0, $limit=null, $since_id=0, $max_id=0)
320     {
321         $ids = array();
322
323         $keypart = sprintf('profile:lists:%d', $this->id);
324
325         $idstr = self::cacheGet($keypart);
326
327         if ($idstr !== false) {
328             $ids = explode(',', $idstr);
329         } else {
330             $list = new Profile_list();
331             $list->selectAdd();
332             $list->selectAdd('id');
333             $list->tagger = $this->id;
334             $list->selectAdd('id as "cursor"');
335
336             if ($since_id>0) {
337                $list->whereAdd('id > '.$since_id);
338             }
339
340             if ($max_id>0) {
341                 $list->whereAdd('id <= '.$max_id);
342             }
343
344             if($offset>=0 && !is_null($limit)) {
345                 $list->limit($offset, $limit);
346             }
347
348             $list->orderBy('id DESC');
349
350             if ($list->find()) {
351                 while ($list->fetch()) {
352                     $ids[] = $list->id;
353                 }
354             }
355
356             self::cacheSet($keypart, implode(',', $ids));
357         }
358
359         $showPrivate = (($auth_user instanceof User ||
360                             $auth_user instanceof Profile) &&
361                         $auth_user->id === $this->id);
362
363         $lists = array();
364
365         foreach ($ids as $id) {
366             $list = Profile_list::getKV('id', $id);
367             if (!empty($list) &&
368                 ($showPrivate || !$list->private)) {
369
370                 if (!isset($list->cursor)) {
371                     $list->cursor = $list->id;
372                 }
373
374                 $lists[] = $list;
375             }
376         }
377
378         return new ArrayWrapper($lists);
379     }
380
381     /**
382      * Get tags that other people put on this profile, in reverse-chron order
383      *
384      * @param (Profile|User) $auth_user  Authorized user (used for privacy)
385      * @param int            $offset     Offset from latest
386      * @param int            $limit      Max number to get
387      * @param datetime       $since_id   max date
388      * @param datetime       $max_id     min date
389      *
390      * @return Profile_list resulting lists
391      */
392
393     function getOtherTags($auth_user=null, $offset=0, $limit=null, $since_id=0, $max_id=0)
394     {
395         $list = new Profile_list();
396
397         $qry = sprintf('select profile_list.*, unix_timestamp(profile_tag.modified) as "cursor" ' .
398                        'from profile_tag join profile_list '.
399                        'on (profile_tag.tagger = profile_list.tagger ' .
400                        '    and profile_tag.tag = profile_list.tag) ' .
401                        'where profile_tag.tagged = %d ',
402                        $this->id);
403
404
405         if ($auth_user instanceof User || $auth_user instanceof Profile) {
406             $qry .= sprintf('AND ( ( profile_list.private = false ) ' .
407                             'OR ( profile_list.tagger = %d AND ' .
408                             'profile_list.private = true ) )',
409                             $auth_user->id);
410         } else {
411             $qry .= 'AND profile_list.private = 0 ';
412         }
413
414         if ($since_id > 0) {
415             $qry .= sprintf('AND (cursor > %d) ', $since_id);
416         }
417
418         if ($max_id > 0) {
419             $qry .= sprintf('AND (cursor < %d) ', $max_id);
420         }
421
422         $qry .= 'ORDER BY profile_tag.modified DESC ';
423
424         if ($offset >= 0 && !is_null($limit)) {
425             $qry .= sprintf('LIMIT %d OFFSET %d ', $limit, $offset);
426         }
427
428         $list->query($qry);
429         return $list;
430     }
431
432     function getPrivateTags($offset=0, $limit=null, $since_id=0, $max_id=0)
433     {
434         $tags = new Profile_list();
435         $tags->private = true;
436         $tags->tagger = $this->id;
437
438         if ($since_id>0) {
439            $tags->whereAdd('id > '.$since_id);
440         }
441
442         if ($max_id>0) {
443             $tags->whereAdd('id <= '.$max_id);
444         }
445
446         if($offset>=0 && !is_null($limit)) {
447             $tags->limit($offset, $limit);
448         }
449
450         $tags->orderBy('id DESC');
451         $tags->find();
452
453         return $tags;
454     }
455
456     function hasLocalTags()
457     {
458         $tags = new Profile_tag();
459
460         $tags->joinAdd(array('tagger', 'user:id'));
461         $tags->whereAdd('tagged  = '.$this->id);
462         $tags->whereAdd('tagger != '.$this->id);
463
464         $tags->limit(0, 1);
465         $tags->fetch();
466
467         return ($tags->N == 0) ? false : true;
468     }
469
470     function getTagSubscriptions($offset=0, $limit=null, $since_id=0, $max_id=0)
471     {
472         $lists = new Profile_list();
473         $subs = new Profile_tag_subscription();
474
475         $lists->joinAdd(array('id', 'profile_tag_subscription:profile_tag_id'));
476
477         #@fixme: postgres (round(date_part('epoch', my_date)))
478         $lists->selectAdd('unix_timestamp(profile_tag_subscription.created) as "cursor"');
479
480         $lists->whereAdd('profile_tag_subscription.profile_id = '.$this->id);
481
482         if ($since_id>0) {
483            $lists->whereAdd('cursor > '.$since_id);
484         }
485
486         if ($max_id>0) {
487             $lists->whereAdd('cursor <= '.$max_id);
488         }
489
490         if($offset>=0 && !is_null($limit)) {
491             $lists->limit($offset, $limit);
492         }
493
494         $lists->orderBy('"cursor" DESC');
495         $lists->find();
496
497         return $lists;
498     }
499
500     /**
501      * Request to join the given group.
502      * May throw exceptions on failure.
503      *
504      * @param User_group $group
505      * @return mixed: Group_member on success, Group_join_queue if pending approval, null on some cancels?
506      */
507     function joinGroup(User_group $group)
508     {
509         $join = null;
510         if ($group->join_policy == User_group::JOIN_POLICY_MODERATE) {
511             $join = Group_join_queue::saveNew($this, $group);
512         } else {
513             if (Event::handle('StartJoinGroup', array($group, $this))) {
514                 $join = Group_member::join($group->id, $this->id);
515                 self::blow('profile:groups:%d', $this->id);
516                 self::blow('group:member_ids:%d', $group->id);
517                 self::blow('group:member_count:%d', $group->id);
518                 Event::handle('EndJoinGroup', array($group, $this));
519             }
520         }
521         if ($join) {
522             // Send any applicable notifications...
523             $join->notify();
524         }
525         return $join;
526     }
527
528     /**
529      * Leave a group that this profile is a member of.
530      *
531      * @param User_group $group
532      */
533     function leaveGroup(User_group $group)
534     {
535         if (Event::handle('StartLeaveGroup', array($group, $this))) {
536             Group_member::leave($group->id, $this->id);
537             self::blow('profile:groups:%d', $this->id);
538             self::blow('group:member_ids:%d', $group->id);
539             self::blow('group:member_count:%d', $group->id);
540             Event::handle('EndLeaveGroup', array($group, $this));
541         }
542     }
543
544     function avatarUrl($size=AVATAR_PROFILE_SIZE)
545     {
546         return Avatar::urlByProfile($this, $size);
547     }
548
549     function getSubscribed($offset=0, $limit=null)
550     {
551         $subs = Subscription::getSubscribedIDs($this->id, $offset, $limit);
552         try {
553             $profiles = Profile::listFind('id', $subs);
554         } catch (NoResultException $e) {
555             return $e->obj;
556         }
557         return $profiles;
558     }
559
560     function getSubscribers($offset=0, $limit=null)
561     {
562         $subs = Subscription::getSubscriberIDs($this->id, $offset, $limit);
563         try {
564             $profiles = Profile::listFind('id', $subs);
565         } catch (NoResultException $e) {
566             return $e->obj;
567         }
568         return $profiles;
569     }
570
571     function getTaggedSubscribers($tag, $offset=0, $limit=null)
572     {
573         $qry =
574           'SELECT profile.* ' .
575           'FROM profile JOIN subscription ' .
576           'ON profile.id = subscription.subscriber ' .
577           'JOIN profile_tag ON (profile_tag.tagged = subscription.subscriber ' .
578           'AND profile_tag.tagger = subscription.subscribed) ' .
579           'WHERE subscription.subscribed = %d ' .
580           "AND profile_tag.tag = '%s' " .
581           'AND subscription.subscribed != subscription.subscriber ' .
582           'ORDER BY subscription.created DESC ';
583
584         if ($offset) {
585             $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
586         }
587
588         $profile = new Profile();
589
590         $cnt = $profile->query(sprintf($qry, $this->id, $profile->escape($tag)));
591
592         return $profile;
593     }
594
595     function getTaggedSubscriptions($tag, $offset=0, $limit=null)
596     {
597         $qry =
598           'SELECT profile.* ' .
599           'FROM profile JOIN subscription ' .
600           'ON profile.id = subscription.subscribed ' .
601           'JOIN profile_tag on (profile_tag.tagged = subscription.subscribed ' .
602           'AND profile_tag.tagger = subscription.subscriber) ' .
603           'WHERE subscription.subscriber = %d ' .
604           "AND profile_tag.tag = '%s' " .
605           'AND subscription.subscribed != subscription.subscriber ' .
606           'ORDER BY subscription.created DESC ';
607
608         $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
609
610         $profile = new Profile();
611
612         $profile->query(sprintf($qry, $this->id, $profile->escape($tag)));
613
614         return $profile;
615     }
616
617     /**
618      * Get pending subscribers, who have not yet been approved.
619      *
620      * @param int $offset
621      * @param int $limit
622      * @return Profile
623      */
624     function getRequests($offset=0, $limit=null)
625     {
626         $qry =
627           'SELECT profile.* ' .
628           'FROM profile JOIN subscription_queue '.
629           'ON profile.id = subscription_queue.subscriber ' .
630           'WHERE subscription_queue.subscribed = %d ' .
631           'ORDER BY subscription_queue.created DESC ';
632
633         if ($limit != null) {
634             if (common_config('db','type') == 'pgsql') {
635                 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
636             } else {
637                 $qry .= ' LIMIT ' . $offset . ', ' . $limit;
638             }
639         }
640
641         $members = new Profile();
642
643         $members->query(sprintf($qry, $this->id));
644         return $members;
645     }
646
647     function subscriptionCount()
648     {
649         $c = Cache::instance();
650
651         if (!empty($c)) {
652             $cnt = $c->get(Cache::key('profile:subscription_count:'.$this->id));
653             if (is_integer($cnt)) {
654                 return (int) $cnt;
655             }
656         }
657
658         $sub = new Subscription();
659         $sub->subscriber = $this->id;
660
661         $cnt = (int) $sub->count('distinct subscribed');
662
663         $cnt = ($cnt > 0) ? $cnt - 1 : $cnt;
664
665         if (!empty($c)) {
666             $c->set(Cache::key('profile:subscription_count:'.$this->id), $cnt);
667         }
668
669         return $cnt;
670     }
671
672     function subscriberCount()
673     {
674         $c = Cache::instance();
675         if (!empty($c)) {
676             $cnt = $c->get(Cache::key('profile:subscriber_count:'.$this->id));
677             if (is_integer($cnt)) {
678                 return (int) $cnt;
679             }
680         }
681
682         $sub = new Subscription();
683         $sub->subscribed = $this->id;
684         $sub->whereAdd('subscriber != subscribed');
685         $cnt = (int) $sub->count('distinct subscriber');
686
687         if (!empty($c)) {
688             $c->set(Cache::key('profile:subscriber_count:'.$this->id), $cnt);
689         }
690
691         return $cnt;
692     }
693
694     /**
695      * Is this profile subscribed to another profile?
696      *
697      * @param Profile $other
698      * @return boolean
699      */
700     function isSubscribed($other)
701     {
702         return Subscription::exists($this, $other);
703     }
704
705     /**
706      * Check if a pending subscription request is outstanding for this...
707      *
708      * @param Profile $other
709      * @return boolean
710      */
711     function hasPendingSubscription($other)
712     {
713         return Subscription_queue::exists($this, $other);
714     }
715
716     /**
717      * Are these two profiles subscribed to each other?
718      *
719      * @param Profile $other
720      * @return boolean
721      */
722     function mutuallySubscribed($other)
723     {
724         return $this->isSubscribed($other) &&
725           $other->isSubscribed($this);
726     }
727
728     function hasFave($notice)
729     {
730         $fave = Fave::pkeyGet(array('user_id' => $this->id,
731                                     'notice_id' => $notice->id));
732         return ((is_null($fave)) ? false : true);
733     }
734
735     function faveCount()
736     {
737         $c = Cache::instance();
738         if (!empty($c)) {
739             $cnt = $c->get(Cache::key('profile:fave_count:'.$this->id));
740             if (is_integer($cnt)) {
741                 return (int) $cnt;
742             }
743         }
744
745         $faves = new Fave();
746         $faves->user_id = $this->id;
747         $cnt = (int) $faves->count('notice_id');
748
749         if (!empty($c)) {
750             $c->set(Cache::key('profile:fave_count:'.$this->id), $cnt);
751         }
752
753         return $cnt;
754     }
755
756     function noticeCount()
757     {
758         $c = Cache::instance();
759
760         if (!empty($c)) {
761             $cnt = $c->get(Cache::key('profile:notice_count:'.$this->id));
762             if (is_integer($cnt)) {
763                 return (int) $cnt;
764             }
765         }
766
767         $notices = new Notice();
768         $notices->profile_id = $this->id;
769         $cnt = (int) $notices->count('distinct id');
770
771         if (!empty($c)) {
772             $c->set(Cache::key('profile:notice_count:'.$this->id), $cnt);
773         }
774
775         return $cnt;
776     }
777
778     function blowFavesCache()
779     {
780         $cache = Cache::instance();
781         if ($cache) {
782             // Faves don't happen chronologically, so we need to blow
783             // ;last cache, too
784             $cache->delete(Cache::key('fave:ids_by_user:'.$this->id));
785             $cache->delete(Cache::key('fave:ids_by_user:'.$this->id.';last'));
786             $cache->delete(Cache::key('fave:ids_by_user_own:'.$this->id));
787             $cache->delete(Cache::key('fave:ids_by_user_own:'.$this->id.';last'));
788         }
789         $this->blowFaveCount();
790     }
791
792     function blowSubscriberCount()
793     {
794         $c = Cache::instance();
795         if (!empty($c)) {
796             $c->delete(Cache::key('profile:subscriber_count:'.$this->id));
797         }
798     }
799
800     function blowSubscriptionCount()
801     {
802         $c = Cache::instance();
803         if (!empty($c)) {
804             $c->delete(Cache::key('profile:subscription_count:'.$this->id));
805         }
806     }
807
808     function blowFaveCount()
809     {
810         $c = Cache::instance();
811         if (!empty($c)) {
812             $c->delete(Cache::key('profile:fave_count:'.$this->id));
813         }
814     }
815
816     function blowNoticeCount()
817     {
818         $c = Cache::instance();
819         if (!empty($c)) {
820             $c->delete(Cache::key('profile:notice_count:'.$this->id));
821         }
822     }
823
824     static function maxBio()
825     {
826         $biolimit = common_config('profile', 'biolimit');
827         // null => use global limit (distinct from 0!)
828         if (is_null($biolimit)) {
829             $biolimit = common_config('site', 'textlimit');
830         }
831         return $biolimit;
832     }
833
834     static function bioTooLong($bio)
835     {
836         $biolimit = self::maxBio();
837         return ($biolimit > 0 && !empty($bio) && (mb_strlen($bio) > $biolimit));
838     }
839
840     function delete()
841     {
842         $this->_deleteNotices();
843         $this->_deleteSubscriptions();
844         $this->_deleteMessages();
845         $this->_deleteTags();
846         $this->_deleteBlocks();
847         Avatar::deleteFromProfile($this, true);
848
849         // Warning: delete() will run on the batch objects,
850         // not on individual objects.
851         $related = array('Reply',
852                          'Group_member',
853                          );
854         Event::handle('ProfileDeleteRelated', array($this, &$related));
855
856         foreach ($related as $cls) {
857             $inst = new $cls();
858             $inst->profile_id = $this->id;
859             $inst->delete();
860         }
861
862         parent::delete();
863     }
864
865     function _deleteNotices()
866     {
867         $notice = new Notice();
868         $notice->profile_id = $this->id;
869
870         if ($notice->find()) {
871             while ($notice->fetch()) {
872                 $other = clone($notice);
873                 $other->delete();
874             }
875         }
876     }
877
878     function _deleteSubscriptions()
879     {
880         $sub = new Subscription();
881         $sub->subscriber = $this->id;
882
883         $sub->find();
884
885         while ($sub->fetch()) {
886             $other = Profile::getKV('id', $sub->subscribed);
887             if (empty($other)) {
888                 continue;
889             }
890             if ($other->id == $this->id) {
891                 continue;
892             }
893             Subscription::cancel($this, $other);
894         }
895
896         $subd = new Subscription();
897         $subd->subscribed = $this->id;
898         $subd->find();
899
900         while ($subd->fetch()) {
901             $other = Profile::getKV('id', $subd->subscriber);
902             if (empty($other)) {
903                 continue;
904             }
905             if ($other->id == $this->id) {
906                 continue;
907             }
908             Subscription::cancel($other, $this);
909         }
910
911         $self = new Subscription();
912
913         $self->subscriber = $this->id;
914         $self->subscribed = $this->id;
915
916         $self->delete();
917     }
918
919     function _deleteMessages()
920     {
921         $msg = new Message();
922         $msg->from_profile = $this->id;
923         $msg->delete();
924
925         $msg = new Message();
926         $msg->to_profile = $this->id;
927         $msg->delete();
928     }
929
930     function _deleteTags()
931     {
932         $tag = new Profile_tag();
933         $tag->tagged = $this->id;
934         $tag->delete();
935     }
936
937     function _deleteBlocks()
938     {
939         $block = new Profile_block();
940         $block->blocked = $this->id;
941         $block->delete();
942
943         $block = new Group_block();
944         $block->blocked = $this->id;
945         $block->delete();
946     }
947
948     // XXX: identical to Notice::getLocation.
949
950     public function getLocation()
951     {
952         $location = null;
953
954         if (!empty($this->location_id) && !empty($this->location_ns)) {
955             $location = Location::fromId($this->location_id, $this->location_ns);
956         }
957
958         if (is_null($location)) { // no ID, or Location::fromId() failed
959             if (!empty($this->lat) && !empty($this->lon)) {
960                 $location = Location::fromLatLon($this->lat, $this->lon);
961             }
962         }
963
964         if (is_null($location)) { // still haven't found it!
965             if (!empty($this->location)) {
966                 $location = Location::fromName($this->location);
967             }
968         }
969
970         return $location;
971     }
972
973     public function shareLocation()
974     {
975         $cfg = common_config('location', 'share');
976
977         if ($cfg == 'always') {
978             return true;
979         } else if ($cfg == 'never') {
980             return false;
981         } else { // user
982             $share = common_config('location', 'sharedefault');
983
984             // Check if user has a personal setting for this
985             $prefs = User_location_prefs::getKV('user_id', $this->id);
986
987             if (!empty($prefs)) {
988                 $share = $prefs->share_location;
989                 $prefs->free();
990             }
991
992             return $share;
993         }
994     }
995
996     function hasRole($name)
997     {
998         $has_role = false;
999         if (Event::handle('StartHasRole', array($this, $name, &$has_role))) {
1000             $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
1001                                                 'role' => $name));
1002             $has_role = !empty($role);
1003             Event::handle('EndHasRole', array($this, $name, $has_role));
1004         }
1005         return $has_role;
1006     }
1007
1008     function grantRole($name)
1009     {
1010         if (Event::handle('StartGrantRole', array($this, $name))) {
1011
1012             $role = new Profile_role();
1013
1014             $role->profile_id = $this->id;
1015             $role->role       = $name;
1016             $role->created    = common_sql_now();
1017
1018             $result = $role->insert();
1019
1020             if (!$result) {
1021                 throw new Exception("Can't save role '$name' for profile '{$this->id}'");
1022             }
1023
1024             if ($name == 'owner') {
1025                 User::blow('user:site_owner');
1026             }
1027
1028             Event::handle('EndGrantRole', array($this, $name));
1029         }
1030
1031         return $result;
1032     }
1033
1034     function revokeRole($name)
1035     {
1036         if (Event::handle('StartRevokeRole', array($this, $name))) {
1037
1038             $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
1039                                                 'role' => $name));
1040
1041             if (empty($role)) {
1042                 // TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
1043                 // TRANS: %1$s is the role name, %2$s is the user ID (number).
1044                 throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; does not exist.'),$name, $this->id));
1045             }
1046
1047             $result = $role->delete();
1048
1049             if (!$result) {
1050                 common_log_db_error($role, 'DELETE', __FILE__);
1051                 // TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
1052                 // TRANS: %1$s is the role name, %2$s is the user ID (number).
1053                 throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; database error.'),$name, $this->id));
1054             }
1055
1056             if ($name == 'owner') {
1057                 User::blow('user:site_owner');
1058             }
1059
1060             Event::handle('EndRevokeRole', array($this, $name));
1061
1062             return true;
1063         }
1064     }
1065
1066     function isSandboxed()
1067     {
1068         return $this->hasRole(Profile_role::SANDBOXED);
1069     }
1070
1071     function isSilenced()
1072     {
1073         return $this->hasRole(Profile_role::SILENCED);
1074     }
1075
1076     function sandbox()
1077     {
1078         $this->grantRole(Profile_role::SANDBOXED);
1079     }
1080
1081     function unsandbox()
1082     {
1083         $this->revokeRole(Profile_role::SANDBOXED);
1084     }
1085
1086     function silence()
1087     {
1088         $this->grantRole(Profile_role::SILENCED);
1089         if (common_config('notice', 'hidespam')) {
1090             $this->flushVisibility();
1091         }
1092     }
1093
1094     function unsilence()
1095     {
1096         $this->revokeRole(Profile_role::SILENCED);
1097         if (common_config('notice', 'hidespam')) {
1098             $this->flushVisibility();
1099         }
1100     }
1101
1102     function flushVisibility()
1103     {
1104         // Get all notices
1105         $stream = new ProfileNoticeStream($this, $this);
1106         $ids = $stream->getNoticeIds(0, CachingNoticeStream::CACHE_WINDOW);
1107         foreach ($ids as $id) {
1108             self::blow('notice:in-scope-for:%d:null', $id);
1109         }
1110     }
1111
1112     /**
1113      * Does this user have the right to do X?
1114      *
1115      * With our role-based authorization, this is merely a lookup for whether the user
1116      * has a particular role. The implementation currently uses a switch statement
1117      * to determine if the user has the pre-defined role to exercise the right. Future
1118      * implementations may allow per-site roles, and different mappings of roles to rights.
1119      *
1120      * @param $right string Name of the right, usually a constant in class Right
1121      * @return boolean whether the user has the right in question
1122      */
1123     public function hasRight($right)
1124     {
1125         $result = false;
1126
1127         if ($this->hasRole(Profile_role::DELETED)) {
1128             return false;
1129         }
1130
1131         if (Event::handle('UserRightsCheck', array($this, $right, &$result))) {
1132             switch ($right)
1133             {
1134             case Right::DELETEOTHERSNOTICE:
1135             case Right::MAKEGROUPADMIN:
1136             case Right::SANDBOXUSER:
1137             case Right::SILENCEUSER:
1138             case Right::DELETEUSER:
1139             case Right::DELETEGROUP:
1140             case Right::TRAINSPAM:
1141             case Right::REVIEWSPAM:
1142                 $result = $this->hasRole(Profile_role::MODERATOR);
1143                 break;
1144             case Right::CONFIGURESITE:
1145                 $result = $this->hasRole(Profile_role::ADMINISTRATOR);
1146                 break;
1147             case Right::GRANTROLE:
1148             case Right::REVOKEROLE:
1149                 $result = $this->hasRole(Profile_role::OWNER);
1150                 break;
1151             case Right::NEWNOTICE:
1152             case Right::NEWMESSAGE:
1153             case Right::SUBSCRIBE:
1154             case Right::CREATEGROUP:
1155                 $result = !$this->isSilenced();
1156                 break;
1157             case Right::PUBLICNOTICE:
1158             case Right::EMAILONREPLY:
1159             case Right::EMAILONSUBSCRIBE:
1160             case Right::EMAILONFAVE:
1161                 $result = !$this->isSandboxed();
1162                 break;
1163             case Right::WEBLOGIN:
1164                 $result = !$this->isSilenced();
1165                 break;
1166             case Right::API:
1167                 $result = !$this->isSilenced();
1168                 break;
1169             case Right::BACKUPACCOUNT:
1170                 $result = common_config('profile', 'backup');
1171                 break;
1172             case Right::RESTOREACCOUNT:
1173                 $result = common_config('profile', 'restore');
1174                 break;
1175             case Right::DELETEACCOUNT:
1176                 $result = common_config('profile', 'delete');
1177                 break;
1178             case Right::MOVEACCOUNT:
1179                 $result = common_config('profile', 'move');
1180                 break;
1181             default:
1182                 $result = false;
1183                 break;
1184             }
1185         }
1186         return $result;
1187     }
1188
1189     // FIXME: Can't put Notice typing here due to ArrayWrapper
1190     public function hasRepeated($notice)
1191     {
1192         // XXX: not really a pkey, but should work
1193
1194         $notice = Notice::pkeyGet(array('profile_id' => $this->id,
1195                                         'repeat_of' => $notice->id));
1196
1197         return !empty($notice);
1198     }
1199
1200     /**
1201      * Returns an XML string fragment with limited profile information
1202      * as an Atom <author> element.
1203      *
1204      * Assumes that Atom has been previously set up as the base namespace.
1205      *
1206      * @param Profile $cur the current authenticated user
1207      *
1208      * @return string
1209      */
1210     function asAtomAuthor($cur = null)
1211     {
1212         $xs = new XMLStringer(true);
1213
1214         $xs->elementStart('author');
1215         $xs->element('name', null, $this->nickname);
1216         $xs->element('uri', null, $this->getUri());
1217         if ($cur != null) {
1218             $attrs = Array();
1219             $attrs['following'] = $cur->isSubscribed($this) ? 'true' : 'false';
1220             $attrs['blocking']  = $cur->hasBlocked($this) ? 'true' : 'false';
1221             $xs->element('statusnet:profile_info', $attrs, null);
1222         }
1223         $xs->elementEnd('author');
1224
1225         return $xs->getString();
1226     }
1227
1228     /**
1229      * Extra profile info for atom entries
1230      *
1231      * Clients use some extra profile info in the atom stream.
1232      * This gives it to them.
1233      *
1234      * @param User $cur Current user
1235      *
1236      * @return array representation of <statusnet:profile_info> element or null
1237      */
1238
1239     function profileInfo($cur)
1240     {
1241         $profileInfoAttr = array('local_id' => $this->id);
1242
1243         if ($cur != null) {
1244             // Whether the current user is a subscribed to this profile
1245             $profileInfoAttr['following'] = $cur->isSubscribed($this) ? 'true' : 'false';
1246             // Whether the current user is has blocked this profile
1247             $profileInfoAttr['blocking']  = $cur->hasBlocked($this) ? 'true' : 'false';
1248         }
1249
1250         return array('statusnet:profile_info', $profileInfoAttr, null);
1251     }
1252
1253     /**
1254      * Returns an XML string fragment with profile information as an
1255      * Activity Streams <activity:actor> element.
1256      *
1257      * Assumes that 'activity' namespace has been previously defined.
1258      *
1259      * @return string
1260      */
1261     function asActivityActor()
1262     {
1263         return $this->asActivityNoun('actor');
1264     }
1265
1266     /**
1267      * Returns an XML string fragment with profile information as an
1268      * Activity Streams noun object with the given element type.
1269      *
1270      * Assumes that 'activity', 'georss', and 'poco' namespace has been
1271      * previously defined.
1272      *
1273      * @param string $element one of 'actor', 'subject', 'object', 'target'
1274      *
1275      * @return string
1276      */
1277     function asActivityNoun($element)
1278     {
1279         $noun = ActivityObject::fromProfile($this);
1280         return $noun->asString('activity:' . $element);
1281     }
1282
1283     /**
1284      * Returns the profile's canonical url, not necessarily a uri/unique id
1285      *
1286      * @return string $profileurl
1287      */
1288     public function getUrl()
1289     {
1290         if (empty($this->profileurl) ||
1291                 !filter_var($this->profileurl, FILTER_VALIDATE_URL)) {
1292             throw new InvalidUrlException($this->profileurl);
1293         }
1294         return $this->profileurl;
1295     }
1296
1297     /**
1298      * Returns the best URI for a profile. Plugins may override.
1299      *
1300      * @return string $uri
1301      */
1302     public function getUri()
1303     {
1304         $uri = null;
1305
1306         // give plugins a chance to set the URI
1307         if (Event::handle('StartGetProfileUri', array($this, &$uri))) {
1308
1309             // check for a local user first
1310             $user = User::getKV('id', $this->id);
1311
1312             if (!empty($user)) {
1313                 $uri = $user->uri;
1314             }
1315
1316             Event::handle('EndGetProfileUri', array($this, &$uri));
1317         }
1318
1319         return $uri;
1320     }
1321
1322     function hasBlocked($other)
1323     {
1324         $block = Profile_block::exists($this, $other);
1325         return !empty($block);
1326     }
1327
1328     function getAtomFeed()
1329     {
1330         $feed = null;
1331
1332         if (Event::handle('StartProfileGetAtomFeed', array($this, &$feed))) {
1333             $user = User::getKV('id', $this->id);
1334             if (!empty($user)) {
1335                 $feed = common_local_url('ApiTimelineUser', array('id' => $user->id,
1336                                                                   'format' => 'atom'));
1337             }
1338             Event::handle('EndProfileGetAtomFeed', array($this, $feed));
1339         }
1340
1341         return $feed;
1342     }
1343
1344     static function fromURI($uri)
1345     {
1346         $profile = null;
1347
1348         if (Event::handle('StartGetProfileFromURI', array($uri, &$profile))) {
1349             // Get a local user or remote (OMB 0.1) profile
1350             $user = User::getKV('uri', $uri);
1351             if (!empty($user)) {
1352                 $profile = $user->getProfile();
1353             }
1354             Event::handle('EndGetProfileFromURI', array($uri, $profile));
1355         }
1356
1357         return $profile;
1358     }
1359
1360     function canRead(Notice $notice)
1361     {
1362         if ($notice->scope & Notice::SITE_SCOPE) {
1363             $user = $this->getUser();
1364             if (empty($user)) {
1365                 return false;
1366             }
1367         }
1368
1369         if ($notice->scope & Notice::ADDRESSEE_SCOPE) {
1370             $replies = $notice->getReplies();
1371
1372             if (!in_array($this->id, $replies)) {
1373                 $groups = $notice->getGroups();
1374
1375                 $foundOne = false;
1376
1377                 foreach ($groups as $group) {
1378                     if ($this->isMember($group)) {
1379                         $foundOne = true;
1380                         break;
1381                     }
1382                 }
1383
1384                 if (!$foundOne) {
1385                     return false;
1386                 }
1387             }
1388         }
1389
1390         if ($notice->scope & Notice::FOLLOWER_SCOPE) {
1391             $author = $notice->getProfile();
1392             if (!Subscription::exists($this, $author)) {
1393                 return false;
1394             }
1395         }
1396
1397         return true;
1398     }
1399
1400     static function current()
1401     {
1402         $user = common_current_user();
1403         if (empty($user)) {
1404             $profile = null;
1405         } else {
1406             $profile = $user->getProfile();
1407         }
1408         return $profile;
1409     }
1410
1411     /**
1412      * Magic function called at serialize() time.
1413      *
1414      * We use this to drop a couple process-specific references
1415      * from DB_DataObject which can cause trouble in future
1416      * processes.
1417      *
1418      * @return array of variable names to include in serialization.
1419      */
1420
1421     function __sleep()
1422     {
1423         $vars = parent::__sleep();
1424         $skip = array('_user', '_avatars');
1425         return array_diff($vars, $skip);
1426     }
1427
1428     public function getProfile()
1429     {
1430         return $this;
1431     }
1432 }