]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Profile.php
Work in progress: subscription approval policy field in place on user, hooked up...
[quix0rs-gnu-social.git] / classes / Profile.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')) { exit(1); }
21
22 /**
23  * Table Definition for profile
24  */
25 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
26
27 class Profile extends Memcached_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     /* Static get */
48     function staticGet($k,$v=NULL) {
49         return Memcached_DataObject::staticGet('Profile',$k,$v);
50     }
51
52     /* the code above is auto generated do not remove the tag below */
53     ###END_AUTOCODE
54
55     function getUser()
56     {
57         return User::staticGet('id', $this->id);
58     }
59
60     function getAvatar($width, $height=null)
61     {
62         if (is_null($height)) {
63             $height = $width;
64         }
65         return Avatar::pkeyGet(array('profile_id' => $this->id,
66                                      'width' => $width,
67                                      'height' => $height));
68     }
69
70     function getOriginalAvatar()
71     {
72         $avatar = DB_DataObject::factory('avatar');
73         $avatar->profile_id = $this->id;
74         $avatar->original = true;
75         if ($avatar->find(true)) {
76             return $avatar;
77         } else {
78             return null;
79         }
80     }
81
82     function setOriginal($filename)
83     {
84         $imagefile = new ImageFile($this->id, Avatar::path($filename));
85
86         $avatar = new Avatar();
87         $avatar->profile_id = $this->id;
88         $avatar->width = $imagefile->width;
89         $avatar->height = $imagefile->height;
90         $avatar->mediatype = image_type_to_mime_type($imagefile->type);
91         $avatar->filename = $filename;
92         $avatar->original = true;
93         $avatar->url = Avatar::url($filename);
94         $avatar->created = DB_DataObject_Cast::dateTime(); # current time
95
96         // XXX: start a transaction here
97
98         if (!$this->delete_avatars() || !$avatar->insert()) {
99             @unlink(Avatar::path($filename));
100             return null;
101         }
102
103         foreach (array(AVATAR_PROFILE_SIZE, AVATAR_STREAM_SIZE, AVATAR_MINI_SIZE) as $size) {
104             // We don't do a scaled one if original is our scaled size
105             if (!($avatar->width == $size && $avatar->height == $size)) {
106                 $scaled_filename = $imagefile->resize($size);
107
108                 //$scaled = DB_DataObject::factory('avatar');
109                 $scaled = new Avatar();
110                 $scaled->profile_id = $this->id;
111                 $scaled->width = $size;
112                 $scaled->height = $size;
113                 $scaled->original = false;
114                 $scaled->mediatype = image_type_to_mime_type($imagefile->type);
115                 $scaled->filename = $scaled_filename;
116                 $scaled->url = Avatar::url($scaled_filename);
117                 $scaled->created = DB_DataObject_Cast::dateTime(); # current time
118
119                 if (!$scaled->insert()) {
120                     return null;
121                 }
122             }
123         }
124
125         return $avatar;
126     }
127
128     /**
129      * Delete attached avatars for this user from the database and filesystem.
130      * This should be used instead of a batch delete() to ensure that files
131      * get removed correctly.
132      *
133      * @param boolean $original true to delete only the original-size file
134      * @return <type>
135      */
136     function delete_avatars($original=true)
137     {
138         $avatar = new Avatar();
139         $avatar->profile_id = $this->id;
140         $avatar->find();
141         while ($avatar->fetch()) {
142             if ($avatar->original) {
143                 if ($original == false) {
144                     continue;
145                 }
146             }
147             $avatar->delete();
148         }
149         return true;
150     }
151
152     /**
153      * Gets either the full name (if filled) or the nickname.
154      *
155      * @return string
156      */
157     function getBestName()
158     {
159         return ($this->fullname) ? $this->fullname : $this->nickname;
160     }
161
162     /**
163      * Gets the full name (if filled) with nickname as a parenthetical, or the nickname alone
164      * if no fullname is provided.
165      *
166      * @return string
167      */
168     function getFancyName()
169     {
170         if ($this->fullname) {
171             // TRANS: Full name of a profile or group followed by nickname in parens
172             return sprintf(_m('FANCYNAME','%1$s (%2$s)'), $this->fullname, $this->nickname);
173         } else {
174             return $this->nickname;
175         }
176     }
177
178     /**
179      * Get the most recent notice posted by this user, if any.
180      *
181      * @return mixed Notice or null
182      */
183
184     function getCurrentNotice()
185     {
186         $notice = $this->getNotices(0, 1);
187
188         if ($notice->fetch()) {
189             if ($notice instanceof ArrayWrapper) {
190                 // hack for things trying to work with single notices
191                 return $notice->_items[0];
192             }
193             return $notice;
194         } else {
195             return null;
196         }
197     }
198
199     function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
200     {
201         $stream = new TaggedProfileNoticeStream($this, $tag);
202
203         return $stream->getNotices($offset, $limit, $since_id, $max_id);
204     }
205
206     function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
207     {
208         $stream = new ProfileNoticeStream($this);
209
210         return $stream->getNotices($offset, $limit, $since_id, $max_id);
211     }
212
213     function isMember($group)
214     {
215         $mem = new Group_member();
216
217         $mem->group_id = $group->id;
218         $mem->profile_id = $this->id;
219
220         if ($mem->find()) {
221             return true;
222         } else {
223             return false;
224         }
225     }
226
227     function isAdmin($group)
228     {
229         $mem = new Group_member();
230
231         $mem->group_id = $group->id;
232         $mem->profile_id = $this->id;
233         $mem->is_admin = 1;
234
235         if ($mem->find()) {
236             return true;
237         } else {
238             return false;
239         }
240     }
241
242     function isPendingMember($group)
243     {
244         $request = Group_join_queue::pkeyGet(array('profile_id' => $this->id,
245                                                    'group_id' => $group->id));
246         return !empty($request);
247     }
248
249     function getGroups($offset=0, $limit=null)
250     {
251         $qry =
252           'SELECT user_group.* ' .
253           'FROM user_group JOIN group_member '.
254           'ON user_group.id = group_member.group_id ' .
255           'WHERE group_member.profile_id = %d ' .
256           'ORDER BY group_member.created DESC ';
257
258         if ($offset>0 && !is_null($limit)) {
259             if ($offset) {
260                 if (common_config('db','type') == 'pgsql') {
261                     $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
262                 } else {
263                     $qry .= ' LIMIT ' . $offset . ', ' . $limit;
264                 }
265             }
266         }
267
268         $groups = new User_group();
269
270         $cnt = $groups->query(sprintf($qry, $this->id));
271
272         return $groups;
273     }
274
275     /**
276      * Request to join the given group.
277      * May throw exceptions on failure.
278      *
279      * @param User_group $group
280      * @return mixed: Group_member on success, Group_join_queue if pending approval, null on some cancels?
281      */
282     function joinGroup(User_group $group)
283     {
284         $join = null;
285         if ($group->join_policy == User_group::JOIN_POLICY_MODERATE) {
286             $join = Group_join_queue::saveNew($this, $group);
287         } else {
288             if (Event::handle('StartJoinGroup', array($group, $this))) {
289                 $join = Group_member::join($group->id, $this->id);
290                 Event::handle('EndJoinGroup', array($group, $this));
291             }
292         }
293         if ($join) {
294             // Send any applicable notifications...
295             $join->notify();
296         }
297         return $join;
298     }
299
300     /**
301      * Leave a group that this profile is a member of.
302      *
303      * @param User_group $group
304      */
305     function leaveGroup(User_group $group)
306     {
307         if (Event::handle('StartLeaveGroup', array($group, $this))) {
308             Group_member::leave($group->id, $this->id);
309             Event::handle('EndLeaveGroup', array($group, $this));
310         }
311     }
312
313     function avatarUrl($size=AVATAR_PROFILE_SIZE)
314     {
315         $avatar = $this->getAvatar($size);
316         if ($avatar) {
317             return $avatar->displayUrl();
318         } else {
319             return Avatar::defaultImage($size);
320         }
321     }
322
323     function getSubscriptions($offset=0, $limit=null)
324     {
325         $subs = Subscription::bySubscriber($this->id,
326                                            $offset,
327                                            $limit);
328
329         $profiles = array();
330
331         while ($subs->fetch()) {
332             $profile = Profile::staticGet($subs->subscribed);
333             if ($profile) {
334                 $profiles[] = $profile;
335             }
336         }
337
338         return new ArrayWrapper($profiles);
339     }
340
341     function getSubscribers($offset=0, $limit=null)
342     {
343         $subs = Subscription::bySubscribed($this->id,
344                                            $offset,
345                                            $limit);
346
347         $profiles = array();
348
349         while ($subs->fetch()) {
350             $profile = Profile::staticGet($subs->subscriber);
351             if ($profile) {
352                 $profiles[] = $profile;
353             }
354         }
355
356         return new ArrayWrapper($profiles);
357     }
358
359     function subscriptionCount()
360     {
361         $c = Cache::instance();
362
363         if (!empty($c)) {
364             $cnt = $c->get(Cache::key('profile:subscription_count:'.$this->id));
365             if (is_integer($cnt)) {
366                 return (int) $cnt;
367             }
368         }
369
370         $sub = new Subscription();
371         $sub->subscriber = $this->id;
372
373         $cnt = (int) $sub->count('distinct subscribed');
374
375         $cnt = ($cnt > 0) ? $cnt - 1 : $cnt;
376
377         if (!empty($c)) {
378             $c->set(Cache::key('profile:subscription_count:'.$this->id), $cnt);
379         }
380
381         return $cnt;
382     }
383
384     function subscriberCount()
385     {
386         $c = Cache::instance();
387         if (!empty($c)) {
388             $cnt = $c->get(Cache::key('profile:subscriber_count:'.$this->id));
389             if (is_integer($cnt)) {
390                 return (int) $cnt;
391             }
392         }
393
394         $sub = new Subscription();
395         $sub->subscribed = $this->id;
396         $sub->whereAdd('subscriber != subscribed');
397         $cnt = (int) $sub->count('distinct subscriber');
398
399         if (!empty($c)) {
400             $c->set(Cache::key('profile:subscriber_count:'.$this->id), $cnt);
401         }
402
403         return $cnt;
404     }
405
406     /**
407      * Is this profile subscribed to another profile?
408      *
409      * @param Profile $other
410      * @return boolean
411      */
412     function isSubscribed($other)
413     {
414         return Subscription::exists($this, $other);
415     }
416
417     /**
418      * Are these two profiles subscribed to each other?
419      *
420      * @param Profile $other
421      * @return boolean
422      */
423     function mutuallySubscribed($other)
424     {
425         return $this->isSubscribed($other) &&
426           $other->isSubscribed($this);
427     }
428
429     function hasFave($notice)
430     {
431         $cache = Cache::instance();
432
433         // XXX: Kind of a hack.
434
435         if (!empty($cache)) {
436             // This is the stream of favorite notices, in rev chron
437             // order. This forces it into cache.
438
439             $ids = Fave::idStream($this->id, 0, CachingNoticeStream::CACHE_WINDOW);
440
441             // If it's in the list, then it's a fave
442
443             if (in_array($notice->id, $ids)) {
444                 return true;
445             }
446
447             // If we're not past the end of the cache window,
448             // then the cache has all available faves, so this one
449             // is not a fave.
450
451             if (count($ids) < CachingNoticeStream::CACHE_WINDOW) {
452                 return false;
453             }
454
455             // Otherwise, cache doesn't have all faves;
456             // fall through to the default
457         }
458
459         $fave = Fave::pkeyGet(array('user_id' => $this->id,
460                                     'notice_id' => $notice->id));
461         return ((is_null($fave)) ? false : true);
462     }
463
464     function faveCount()
465     {
466         $c = Cache::instance();
467         if (!empty($c)) {
468             $cnt = $c->get(Cache::key('profile:fave_count:'.$this->id));
469             if (is_integer($cnt)) {
470                 return (int) $cnt;
471             }
472         }
473
474         $faves = new Fave();
475         $faves->user_id = $this->id;
476         $cnt = (int) $faves->count('distinct notice_id');
477
478         if (!empty($c)) {
479             $c->set(Cache::key('profile:fave_count:'.$this->id), $cnt);
480         }
481
482         return $cnt;
483     }
484
485     function noticeCount()
486     {
487         $c = Cache::instance();
488
489         if (!empty($c)) {
490             $cnt = $c->get(Cache::key('profile:notice_count:'.$this->id));
491             if (is_integer($cnt)) {
492                 return (int) $cnt;
493             }
494         }
495
496         $notices = new Notice();
497         $notices->profile_id = $this->id;
498         $cnt = (int) $notices->count('distinct id');
499
500         if (!empty($c)) {
501             $c->set(Cache::key('profile:notice_count:'.$this->id), $cnt);
502         }
503
504         return $cnt;
505     }
506
507     function blowFavesCache()
508     {
509         $cache = Cache::instance();
510         if ($cache) {
511             // Faves don't happen chronologically, so we need to blow
512             // ;last cache, too
513             $cache->delete(Cache::key('fave:ids_by_user:'.$this->id));
514             $cache->delete(Cache::key('fave:ids_by_user:'.$this->id.';last'));
515             $cache->delete(Cache::key('fave:ids_by_user_own:'.$this->id));
516             $cache->delete(Cache::key('fave:ids_by_user_own:'.$this->id.';last'));
517         }
518         $this->blowFaveCount();
519     }
520
521     function blowSubscriberCount()
522     {
523         $c = Cache::instance();
524         if (!empty($c)) {
525             $c->delete(Cache::key('profile:subscriber_count:'.$this->id));
526         }
527     }
528
529     function blowSubscriptionCount()
530     {
531         $c = Cache::instance();
532         if (!empty($c)) {
533             $c->delete(Cache::key('profile:subscription_count:'.$this->id));
534         }
535     }
536
537     function blowFaveCount()
538     {
539         $c = Cache::instance();
540         if (!empty($c)) {
541             $c->delete(Cache::key('profile:fave_count:'.$this->id));
542         }
543     }
544
545     function blowNoticeCount()
546     {
547         $c = Cache::instance();
548         if (!empty($c)) {
549             $c->delete(Cache::key('profile:notice_count:'.$this->id));
550         }
551     }
552
553     static function maxBio()
554     {
555         $biolimit = common_config('profile', 'biolimit');
556         // null => use global limit (distinct from 0!)
557         if (is_null($biolimit)) {
558             $biolimit = common_config('site', 'textlimit');
559         }
560         return $biolimit;
561     }
562
563     static function bioTooLong($bio)
564     {
565         $biolimit = self::maxBio();
566         return ($biolimit > 0 && !empty($bio) && (mb_strlen($bio) > $biolimit));
567     }
568
569     function delete()
570     {
571         $this->_deleteNotices();
572         $this->_deleteSubscriptions();
573         $this->_deleteMessages();
574         $this->_deleteTags();
575         $this->_deleteBlocks();
576         $this->delete_avatars();
577
578         // Warning: delete() will run on the batch objects,
579         // not on individual objects.
580         $related = array('Reply',
581                          'Group_member',
582                          );
583         Event::handle('ProfileDeleteRelated', array($this, &$related));
584
585         foreach ($related as $cls) {
586             $inst = new $cls();
587             $inst->profile_id = $this->id;
588             $inst->delete();
589         }
590
591         parent::delete();
592     }
593
594     function _deleteNotices()
595     {
596         $notice = new Notice();
597         $notice->profile_id = $this->id;
598
599         if ($notice->find()) {
600             while ($notice->fetch()) {
601                 $other = clone($notice);
602                 $other->delete();
603             }
604         }
605     }
606
607     function _deleteSubscriptions()
608     {
609         $sub = new Subscription();
610         $sub->subscriber = $this->id;
611
612         $sub->find();
613
614         while ($sub->fetch()) {
615             $other = Profile::staticGet('id', $sub->subscribed);
616             if (empty($other)) {
617                 continue;
618             }
619             if ($other->id == $this->id) {
620                 continue;
621             }
622             Subscription::cancel($this, $other);
623         }
624
625         $subd = new Subscription();
626         $subd->subscribed = $this->id;
627         $subd->find();
628
629         while ($subd->fetch()) {
630             $other = Profile::staticGet('id', $subd->subscriber);
631             if (empty($other)) {
632                 continue;
633             }
634             if ($other->id == $this->id) {
635                 continue;
636             }
637             Subscription::cancel($other, $this);
638         }
639
640         $self = new Subscription();
641
642         $self->subscriber = $this->id;
643         $self->subscribed = $this->id;
644
645         $self->delete();
646     }
647
648     function _deleteMessages()
649     {
650         $msg = new Message();
651         $msg->from_profile = $this->id;
652         $msg->delete();
653
654         $msg = new Message();
655         $msg->to_profile = $this->id;
656         $msg->delete();
657     }
658
659     function _deleteTags()
660     {
661         $tag = new Profile_tag();
662         $tag->tagged = $this->id;
663         $tag->delete();
664     }
665
666     function _deleteBlocks()
667     {
668         $block = new Profile_block();
669         $block->blocked = $this->id;
670         $block->delete();
671
672         $block = new Group_block();
673         $block->blocked = $this->id;
674         $block->delete();
675     }
676
677     // XXX: identical to Notice::getLocation.
678
679     function getLocation()
680     {
681         $location = null;
682
683         if (!empty($this->location_id) && !empty($this->location_ns)) {
684             $location = Location::fromId($this->location_id, $this->location_ns);
685         }
686
687         if (is_null($location)) { // no ID, or Location::fromId() failed
688             if (!empty($this->lat) && !empty($this->lon)) {
689                 $location = Location::fromLatLon($this->lat, $this->lon);
690             }
691         }
692
693         if (is_null($location)) { // still haven't found it!
694             if (!empty($this->location)) {
695                 $location = Location::fromName($this->location);
696             }
697         }
698
699         return $location;
700     }
701
702     function hasRole($name)
703     {
704         $has_role = false;
705         if (Event::handle('StartHasRole', array($this, $name, &$has_role))) {
706             $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
707                                                 'role' => $name));
708             $has_role = !empty($role);
709             Event::handle('EndHasRole', array($this, $name, $has_role));
710         }
711         return $has_role;
712     }
713
714     function grantRole($name)
715     {
716         if (Event::handle('StartGrantRole', array($this, $name))) {
717
718             $role = new Profile_role();
719
720             $role->profile_id = $this->id;
721             $role->role       = $name;
722             $role->created    = common_sql_now();
723
724             $result = $role->insert();
725
726             if (!$result) {
727                 throw new Exception("Can't save role '$name' for profile '{$this->id}'");
728             }
729
730             if ($name == 'owner') {
731                 User::blow('user:site_owner');
732             }
733
734             Event::handle('EndGrantRole', array($this, $name));
735         }
736
737         return $result;
738     }
739
740     function revokeRole($name)
741     {
742         if (Event::handle('StartRevokeRole', array($this, $name))) {
743
744             $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
745                                                 'role' => $name));
746
747             if (empty($role)) {
748                 // TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
749                 // TRANS: %1$s is the role name, %2$s is the user ID (number).
750                 throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; does not exist.'),$name, $this->id));
751             }
752
753             $result = $role->delete();
754
755             if (!$result) {
756                 common_log_db_error($role, 'DELETE', __FILE__);
757                 // TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
758                 // TRANS: %1$s is the role name, %2$s is the user ID (number).
759                 throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; database error.'),$name, $this->id));
760             }
761
762             if ($name == 'owner') {
763                 User::blow('user:site_owner');
764             }
765
766             Event::handle('EndRevokeRole', array($this, $name));
767
768             return true;
769         }
770     }
771
772     function isSandboxed()
773     {
774         return $this->hasRole(Profile_role::SANDBOXED);
775     }
776
777     function isSilenced()
778     {
779         return $this->hasRole(Profile_role::SILENCED);
780     }
781
782     function sandbox()
783     {
784         $this->grantRole(Profile_role::SANDBOXED);
785     }
786
787     function unsandbox()
788     {
789         $this->revokeRole(Profile_role::SANDBOXED);
790     }
791
792     function silence()
793     {
794         $this->grantRole(Profile_role::SILENCED);
795     }
796
797     function unsilence()
798     {
799         $this->revokeRole(Profile_role::SILENCED);
800     }
801
802     /**
803      * Does this user have the right to do X?
804      *
805      * With our role-based authorization, this is merely a lookup for whether the user
806      * has a particular role. The implementation currently uses a switch statement
807      * to determine if the user has the pre-defined role to exercise the right. Future
808      * implementations may allow per-site roles, and different mappings of roles to rights.
809      *
810      * @param $right string Name of the right, usually a constant in class Right
811      * @return boolean whether the user has the right in question
812      */
813     function hasRight($right)
814     {
815         $result = false;
816
817         if ($this->hasRole(Profile_role::DELETED)) {
818             return false;
819         }
820
821         if (Event::handle('UserRightsCheck', array($this, $right, &$result))) {
822             switch ($right)
823             {
824             case Right::DELETEOTHERSNOTICE:
825             case Right::MAKEGROUPADMIN:
826             case Right::SANDBOXUSER:
827             case Right::SILENCEUSER:
828             case Right::DELETEUSER:
829             case Right::DELETEGROUP:
830                 $result = $this->hasRole(Profile_role::MODERATOR);
831                 break;
832             case Right::CONFIGURESITE:
833                 $result = $this->hasRole(Profile_role::ADMINISTRATOR);
834                 break;
835             case Right::GRANTROLE:
836             case Right::REVOKEROLE:
837                 $result = $this->hasRole(Profile_role::OWNER);
838                 break;
839             case Right::NEWNOTICE:
840             case Right::NEWMESSAGE:
841             case Right::SUBSCRIBE:
842             case Right::CREATEGROUP:
843                 $result = !$this->isSilenced();
844                 break;
845             case Right::PUBLICNOTICE:
846             case Right::EMAILONREPLY:
847             case Right::EMAILONSUBSCRIBE:
848             case Right::EMAILONFAVE:
849                 $result = !$this->isSandboxed();
850                 break;
851             case Right::WEBLOGIN:
852                 $result = !$this->isSilenced();
853                 break;
854             case Right::API:
855                 $result = !$this->isSilenced();
856                 break;
857             case Right::BACKUPACCOUNT:
858                 $result = common_config('profile', 'backup');
859                 break;
860             case Right::RESTOREACCOUNT:
861                 $result = common_config('profile', 'restore');
862                 break;
863             case Right::DELETEACCOUNT:
864                 $result = common_config('profile', 'delete');
865                 break;
866             case Right::MOVEACCOUNT:
867                 $result = common_config('profile', 'move');
868                 break;
869             default:
870                 $result = false;
871                 break;
872             }
873         }
874         return $result;
875     }
876
877     function hasRepeated($notice_id)
878     {
879         // XXX: not really a pkey, but should work
880
881         $notice = Memcached_DataObject::pkeyGet('Notice',
882                                                 array('profile_id' => $this->id,
883                                                       'repeat_of' => $notice_id));
884
885         return !empty($notice);
886     }
887
888     /**
889      * Returns an XML string fragment with limited profile information
890      * as an Atom <author> element.
891      *
892      * Assumes that Atom has been previously set up as the base namespace.
893      *
894      * @param Profile $cur the current authenticated user
895      *
896      * @return string
897      */
898     function asAtomAuthor($cur = null)
899     {
900         $xs = new XMLStringer(true);
901
902         $xs->elementStart('author');
903         $xs->element('name', null, $this->nickname);
904         $xs->element('uri', null, $this->getUri());
905         if ($cur != null) {
906             $attrs = Array();
907             $attrs['following'] = $cur->isSubscribed($this) ? 'true' : 'false';
908             $attrs['blocking']  = $cur->hasBlocked($this) ? 'true' : 'false';
909             $xs->element('statusnet:profile_info', $attrs, null);
910         }
911         $xs->elementEnd('author');
912
913         return $xs->getString();
914     }
915
916     /**
917      * Extra profile info for atom entries
918      *
919      * Clients use some extra profile info in the atom stream.
920      * This gives it to them.
921      *
922      * @param User $cur Current user
923      *
924      * @return array representation of <statusnet:profile_info> element or null
925      */
926
927     function profileInfo($cur)
928     {
929         $profileInfoAttr = array('local_id' => $this->id);
930
931         if ($cur != null) {
932             // Whether the current user is a subscribed to this profile
933             $profileInfoAttr['following'] = $cur->isSubscribed($this) ? 'true' : 'false';
934             // Whether the current user is has blocked this profile
935             $profileInfoAttr['blocking']  = $cur->hasBlocked($this) ? 'true' : 'false';
936         }
937
938         return array('statusnet:profile_info', $profileInfoAttr, null);
939     }
940
941     /**
942      * Returns an XML string fragment with profile information as an
943      * Activity Streams <activity:actor> element.
944      *
945      * Assumes that 'activity' namespace has been previously defined.
946      *
947      * @return string
948      */
949     function asActivityActor()
950     {
951         return $this->asActivityNoun('actor');
952     }
953
954     /**
955      * Returns an XML string fragment with profile information as an
956      * Activity Streams noun object with the given element type.
957      *
958      * Assumes that 'activity', 'georss', and 'poco' namespace has been
959      * previously defined.
960      *
961      * @param string $element one of 'actor', 'subject', 'object', 'target'
962      *
963      * @return string
964      */
965     function asActivityNoun($element)
966     {
967         $noun = ActivityObject::fromProfile($this);
968         return $noun->asString('activity:' . $element);
969     }
970
971     /**
972      * Returns the best URI for a profile. Plugins may override.
973      *
974      * @return string $uri
975      */
976     function getUri()
977     {
978         $uri = null;
979
980         // give plugins a chance to set the URI
981         if (Event::handle('StartGetProfileUri', array($this, &$uri))) {
982
983             // check for a local user first
984             $user = User::staticGet('id', $this->id);
985
986             if (!empty($user)) {
987                 $uri = $user->uri;
988             } else {
989                 // return OMB profile if any
990                 $remote = Remote_profile::staticGet('id', $this->id);
991                 if (!empty($remote)) {
992                     $uri = $remote->uri;
993                 }
994             }
995             Event::handle('EndGetProfileUri', array($this, &$uri));
996         }
997
998         return $uri;
999     }
1000
1001     function hasBlocked($other)
1002     {
1003         $block = Profile_block::get($this->id, $other->id);
1004
1005         if (empty($block)) {
1006             $result = false;
1007         } else {
1008             $result = true;
1009         }
1010
1011         return $result;
1012     }
1013
1014     function getAtomFeed()
1015     {
1016         $feed = null;
1017
1018         if (Event::handle('StartProfileGetAtomFeed', array($this, &$feed))) {
1019             $user = User::staticGet('id', $this->id);
1020             if (!empty($user)) {
1021                 $feed = common_local_url('ApiTimelineUser', array('id' => $user->id,
1022                                                                   'format' => 'atom'));
1023             }
1024             Event::handle('EndProfileGetAtomFeed', array($this, $feed));
1025         }
1026
1027         return $feed;
1028     }
1029
1030     static function fromURI($uri)
1031     {
1032         $profile = null;
1033
1034         if (Event::handle('StartGetProfileFromURI', array($uri, &$profile))) {
1035             // Get a local user or remote (OMB 0.1) profile
1036             $user = User::staticGet('uri', $uri);
1037             if (!empty($user)) {
1038                 $profile = $user->getProfile();
1039             } else {
1040                 $remote_profile = Remote_profile::staticGet('uri', $uri);
1041                 if (!empty($remote_profile)) {
1042                     $profile = Profile::staticGet('id', $remote_profile->profile_id);
1043                 }
1044             }
1045             Event::handle('EndGetProfileFromURI', array($uri, $profile));
1046         }
1047
1048         return $profile;
1049     }
1050 }