]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/Profile.php
239c368ca19fb0451369921ca0445594f440f91c
[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             return $notice;
190         } else {
191             return null;
192         }
193     }
194
195     function getTaggedNotices($tag, $offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
196     {
197         $ids = Notice::stream(array($this, '_streamTaggedDirect'),
198                               array($tag),
199                               'profile:notice_ids_tagged:' . $this->id . ':' . $tag,
200                               $offset, $limit, $since_id, $max_id);
201         return Notice::getStreamByIds($ids);
202     }
203
204     function getNotices($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
205     {
206         // XXX: I'm not sure this is going to be any faster. It probably isn't.
207         $ids = Notice::stream(array($this, '_streamDirect'),
208                               array(),
209                               'profile:notice_ids:' . $this->id,
210                               $offset, $limit, $since_id, $max_id);
211
212         return Notice::getStreamByIds($ids);
213     }
214
215     function _streamTaggedDirect($tag, $offset, $limit, $since_id, $max_id)
216     {
217         // XXX It would be nice to do this without a join
218
219         $notice = new Notice();
220
221         $query =
222           "select id from notice join notice_tag on id=notice_id where tag='".
223           $notice->escape($tag) .
224           "' and profile_id=" . $notice->escape($this->id);
225
226         if ($since_id != 0) {
227             $query .= " and id > $since_id";
228         }
229
230         if ($max_id != 0) {
231             $query .= " and id <= $max_id";
232         }
233
234         $query .= ' order by id DESC';
235
236         if (!is_null($offset)) {
237             $query .= " LIMIT $limit OFFSET $offset";
238         }
239
240         $notice->query($query);
241
242         $ids = array();
243
244         while ($notice->fetch()) {
245             $ids[] = $notice->id;
246         }
247
248         return $ids;
249     }
250
251     function _streamDirect($offset, $limit, $since_id, $max_id)
252     {
253         $notice = new Notice();
254
255         // Temporary hack until notice_profile_id_idx is updated
256         // to (profile_id, id) instead of (profile_id, created, id).
257         // It's been falling back to PRIMARY instead, which is really
258         // very inefficient for a profile that hasn't posted in a few
259         // months. Even though forcing the index will cause a filesort,
260         // it's usually going to be better.
261         if (common_config('db', 'type') == 'mysql') {
262             $index = '';
263             $query =
264               "select id from notice force index (notice_profile_id_idx) ".
265               "where profile_id=" . $notice->escape($this->id);
266
267             if ($since_id != 0) {
268                 $query .= " and id > $since_id";
269             }
270
271             if ($max_id != 0) {
272                 $query .= " and id <= $max_id";
273             }
274
275             $query .= ' order by id DESC';
276
277             if (!is_null($offset)) {
278                 $query .= " LIMIT $limit OFFSET $offset";
279             }
280
281             $notice->query($query);
282         } else {
283             $index = '';
284
285             $notice->profile_id = $this->id;
286
287             $notice->selectAdd();
288             $notice->selectAdd('id');
289
290             if ($since_id != 0) {
291                 $notice->whereAdd('id > ' . $since_id);
292             }
293
294             if ($max_id != 0) {
295                 $notice->whereAdd('id <= ' . $max_id);
296             }
297
298             $notice->orderBy('id DESC');
299
300             if (!is_null($offset)) {
301                 $notice->limit($offset, $limit);
302             }
303
304             $notice->find();
305         }
306
307         $ids = array();
308
309         while ($notice->fetch()) {
310             $ids[] = $notice->id;
311         }
312
313         return $ids;
314     }
315
316     function isMember($group)
317     {
318         $mem = new Group_member();
319
320         $mem->group_id = $group->id;
321         $mem->profile_id = $this->id;
322
323         if ($mem->find()) {
324             return true;
325         } else {
326             return false;
327         }
328     }
329
330     function isAdmin($group)
331     {
332         $mem = new Group_member();
333
334         $mem->group_id = $group->id;
335         $mem->profile_id = $this->id;
336         $mem->is_admin = 1;
337
338         if ($mem->find()) {
339             return true;
340         } else {
341             return false;
342         }
343     }
344
345     function getGroups($offset=0, $limit=null)
346     {
347         $qry =
348           'SELECT user_group.* ' .
349           'FROM user_group JOIN group_member '.
350           'ON user_group.id = group_member.group_id ' .
351           'WHERE group_member.profile_id = %d ' .
352           'ORDER BY group_member.created DESC ';
353
354         if ($offset>0 && !is_null($limit)) {
355             if ($offset) {
356                 if (common_config('db','type') == 'pgsql') {
357                     $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
358                 } else {
359                     $qry .= ' LIMIT ' . $offset . ', ' . $limit;
360                 }
361             }
362         }
363
364         $groups = new User_group();
365
366         $cnt = $groups->query(sprintf($qry, $this->id));
367
368         return $groups;
369     }
370
371     function avatarUrl($size=AVATAR_PROFILE_SIZE)
372     {
373         $avatar = $this->getAvatar($size);
374         if ($avatar) {
375             return $avatar->displayUrl();
376         } else {
377             return Avatar::defaultImage($size);
378         }
379     }
380
381     function getSubscriptions($offset=0, $limit=null)
382     {
383         $subs = Subscription::bySubscriber($this->id,
384                                            $offset,
385                                            $limit);
386
387         $profiles = array();
388
389         while ($subs->fetch()) {
390             $profiles[] = Profile::staticGet($subs->subscribed);
391         }
392
393         return new ArrayWrapper($profiles);
394     }
395
396     function getSubscribers($offset=0, $limit=null)
397     {
398         $subs = Subscription::bySubscribed($this->id,
399                                            $offset,
400                                            $limit);
401
402         $profiles = array();
403
404         while ($subs->fetch()) {
405             $profiles[] = Profile::staticGet($subs->subscriber);
406         }
407
408         return new ArrayWrapper($profiles);
409     }
410
411     function getConnectedApps($offset = 0, $limit = null)
412     {
413         $qry =
414           'SELECT u.* ' .
415           'FROM oauth_application_user u, oauth_application a ' .
416           'WHERE u.profile_id = %d ' .
417           'AND a.id = u.application_id ' .
418           'AND u.access_type > 0 ' .
419           'ORDER BY u.created DESC ';
420
421         if ($offset > 0) {
422             if (common_config('db','type') == 'pgsql') {
423                 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
424             } else {
425                 $qry .= ' LIMIT ' . $offset . ', ' . $limit;
426             }
427         }
428
429         $apps = new Oauth_application_user();
430
431         $cnt = $apps->query(sprintf($qry, $this->id));
432
433         return $apps;
434     }
435
436     function subscriptionCount()
437     {
438         $c = common_memcache();
439
440         if (!empty($c)) {
441             $cnt = $c->get(common_cache_key('profile:subscription_count:'.$this->id));
442             if (is_integer($cnt)) {
443                 return (int) $cnt;
444             }
445         }
446
447         $sub = new Subscription();
448         $sub->subscriber = $this->id;
449
450         $cnt = (int) $sub->count('distinct subscribed');
451
452         $cnt = ($cnt > 0) ? $cnt - 1 : $cnt;
453
454         if (!empty($c)) {
455             $c->set(common_cache_key('profile:subscription_count:'.$this->id), $cnt);
456         }
457
458         return $cnt;
459     }
460
461     function subscriberCount()
462     {
463         $c = common_memcache();
464         if (!empty($c)) {
465             $cnt = $c->get(common_cache_key('profile:subscriber_count:'.$this->id));
466             if (is_integer($cnt)) {
467                 return (int) $cnt;
468             }
469         }
470
471         $sub = new Subscription();
472         $sub->subscribed = $this->id;
473         $sub->whereAdd('subscriber != subscribed');
474         $cnt = (int) $sub->count('distinct subscriber');
475
476         if (!empty($c)) {
477             $c->set(common_cache_key('profile:subscriber_count:'.$this->id), $cnt);
478         }
479
480         return $cnt;
481     }
482
483     /**
484      * Is this profile subscribed to another profile?
485      *
486      * @param Profile $other
487      * @return boolean
488      */
489     function isSubscribed($other)
490     {
491         return Subscription::exists($this, $other);
492     }
493
494     /**
495      * Are these two profiles subscribed to each other?
496      *
497      * @param Profile $other
498      * @return boolean
499      */
500     function mutuallySubscribed($other)
501     {
502         return $this->isSubscribed($other) &&
503           $other->isSubscribed($this);
504     }
505
506     function hasFave($notice)
507     {
508         $cache = common_memcache();
509
510         // XXX: Kind of a hack.
511
512         if (!empty($cache)) {
513             // This is the stream of favorite notices, in rev chron
514             // order. This forces it into cache.
515
516             $ids = Fave::stream($this->id, 0, NOTICE_CACHE_WINDOW);
517
518             // If it's in the list, then it's a fave
519
520             if (in_array($notice->id, $ids)) {
521                 return true;
522             }
523
524             // If we're not past the end of the cache window,
525             // then the cache has all available faves, so this one
526             // is not a fave.
527
528             if (count($ids) < NOTICE_CACHE_WINDOW) {
529                 return false;
530             }
531
532             // Otherwise, cache doesn't have all faves;
533             // fall through to the default
534         }
535
536         $fave = Fave::pkeyGet(array('user_id' => $this->id,
537                                     'notice_id' => $notice->id));
538         return ((is_null($fave)) ? false : true);
539     }
540
541     function faveCount()
542     {
543         $c = common_memcache();
544         if (!empty($c)) {
545             $cnt = $c->get(common_cache_key('profile:fave_count:'.$this->id));
546             if (is_integer($cnt)) {
547                 return (int) $cnt;
548             }
549         }
550
551         $faves = new Fave();
552         $faves->user_id = $this->id;
553         $cnt = (int) $faves->count('distinct notice_id');
554
555         if (!empty($c)) {
556             $c->set(common_cache_key('profile:fave_count:'.$this->id), $cnt);
557         }
558
559         return $cnt;
560     }
561
562     function noticeCount()
563     {
564         $c = common_memcache();
565
566         if (!empty($c)) {
567             $cnt = $c->get(common_cache_key('profile:notice_count:'.$this->id));
568             if (is_integer($cnt)) {
569                 return (int) $cnt;
570             }
571         }
572
573         $notices = new Notice();
574         $notices->profile_id = $this->id;
575         $cnt = (int) $notices->count('distinct id');
576
577         if (!empty($c)) {
578             $c->set(common_cache_key('profile:notice_count:'.$this->id), $cnt);
579         }
580
581         return $cnt;
582     }
583
584     function blowFavesCache()
585     {
586         $cache = common_memcache();
587         if ($cache) {
588             // Faves don't happen chronologically, so we need to blow
589             // ;last cache, too
590             $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id));
591             $cache->delete(common_cache_key('fave:ids_by_user:'.$this->id.';last'));
592             $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id));
593             $cache->delete(common_cache_key('fave:ids_by_user_own:'.$this->id.';last'));
594         }
595         $this->blowFaveCount();
596     }
597
598     function blowSubscriberCount()
599     {
600         $c = common_memcache();
601         if (!empty($c)) {
602             $c->delete(common_cache_key('profile:subscriber_count:'.$this->id));
603         }
604     }
605
606     function blowSubscriptionCount()
607     {
608         $c = common_memcache();
609         if (!empty($c)) {
610             $c->delete(common_cache_key('profile:subscription_count:'.$this->id));
611         }
612     }
613
614     function blowFaveCount()
615     {
616         $c = common_memcache();
617         if (!empty($c)) {
618             $c->delete(common_cache_key('profile:fave_count:'.$this->id));
619         }
620     }
621
622     function blowNoticeCount()
623     {
624         $c = common_memcache();
625         if (!empty($c)) {
626             $c->delete(common_cache_key('profile:notice_count:'.$this->id));
627         }
628     }
629
630     static function maxBio()
631     {
632         $biolimit = common_config('profile', 'biolimit');
633         // null => use global limit (distinct from 0!)
634         if (is_null($biolimit)) {
635             $biolimit = common_config('site', 'textlimit');
636         }
637         return $biolimit;
638     }
639
640     static function bioTooLong($bio)
641     {
642         $biolimit = self::maxBio();
643         return ($biolimit > 0 && !empty($bio) && (mb_strlen($bio) > $biolimit));
644     }
645
646     function delete()
647     {
648         $this->_deleteNotices();
649         $this->_deleteSubscriptions();
650         $this->_deleteMessages();
651         $this->_deleteTags();
652         $this->_deleteBlocks();
653         $this->delete_avatars();
654
655         // Warning: delete() will run on the batch objects,
656         // not on individual objects.
657         $related = array('Reply',
658                          'Group_member',
659                          );
660         Event::handle('ProfileDeleteRelated', array($this, &$related));
661
662         foreach ($related as $cls) {
663             $inst = new $cls();
664             $inst->profile_id = $this->id;
665             $inst->delete();
666         }
667
668         parent::delete();
669     }
670
671     function _deleteNotices()
672     {
673         $notice = new Notice();
674         $notice->profile_id = $this->id;
675
676         if ($notice->find()) {
677             while ($notice->fetch()) {
678                 $other = clone($notice);
679                 $other->delete();
680             }
681         }
682     }
683
684     function _deleteSubscriptions()
685     {
686         $sub = new Subscription();
687         $sub->subscriber = $this->id;
688
689         $sub->find();
690
691         while ($sub->fetch()) {
692             $other = Profile::staticGet('id', $sub->subscribed);
693             if (empty($other)) {
694                 continue;
695             }
696             if ($other->id == $this->id) {
697                 continue;
698             }
699             Subscription::cancel($this, $other);
700         }
701
702         $subd = new Subscription();
703         $subd->subscribed = $this->id;
704         $subd->find();
705
706         while ($subd->fetch()) {
707             $other = Profile::staticGet('id', $subd->subscriber);
708             if (empty($other)) {
709                 continue;
710             }
711             if ($other->id == $this->id) {
712                 continue;
713             }
714             Subscription::cancel($other, $this);
715         }
716
717         $self = new Subscription();
718
719         $self->subscriber = $this->id;
720         $self->subscribed = $this->id;
721
722         $self->delete();
723     }
724
725     function _deleteMessages()
726     {
727         $msg = new Message();
728         $msg->from_profile = $this->id;
729         $msg->delete();
730
731         $msg = new Message();
732         $msg->to_profile = $this->id;
733         $msg->delete();
734     }
735
736     function _deleteTags()
737     {
738         $tag = new Profile_tag();
739         $tag->tagged = $this->id;
740         $tag->delete();
741     }
742
743     function _deleteBlocks()
744     {
745         $block = new Profile_block();
746         $block->blocked = $this->id;
747         $block->delete();
748
749         $block = new Group_block();
750         $block->blocked = $this->id;
751         $block->delete();
752     }
753
754     // XXX: identical to Notice::getLocation.
755
756     function getLocation()
757     {
758         $location = null;
759
760         if (!empty($this->location_id) && !empty($this->location_ns)) {
761             $location = Location::fromId($this->location_id, $this->location_ns);
762         }
763
764         if (is_null($location)) { // no ID, or Location::fromId() failed
765             if (!empty($this->lat) && !empty($this->lon)) {
766                 $location = Location::fromLatLon($this->lat, $this->lon);
767             }
768         }
769
770         if (is_null($location)) { // still haven't found it!
771             if (!empty($this->location)) {
772                 $location = Location::fromName($this->location);
773             }
774         }
775
776         return $location;
777     }
778
779     function hasRole($name)
780     {
781         $has_role = false;
782         if (Event::handle('StartHasRole', array($this, $name, &$has_role))) {
783             $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
784                                                 'role' => $name));
785             $has_role = !empty($role);
786             Event::handle('EndHasRole', array($this, $name, $has_role));
787         }
788         return $has_role;
789     }
790
791     function grantRole($name)
792     {
793         if (Event::handle('StartGrantRole', array($this, $name))) {
794
795             $role = new Profile_role();
796
797             $role->profile_id = $this->id;
798             $role->role       = $name;
799             $role->created    = common_sql_now();
800
801             $result = $role->insert();
802
803             if (!$result) {
804                 throw new Exception("Can't save role '$name' for profile '{$this->id}'");
805             }
806
807             Event::handle('EndGrantRole', array($this, $name));
808         }
809
810         return $result;
811     }
812
813     function revokeRole($name)
814     {
815         if (Event::handle('StartRevokeRole', array($this, $name))) {
816
817             $role = Profile_role::pkeyGet(array('profile_id' => $this->id,
818                                                 'role' => $name));
819
820             if (empty($role)) {
821                 // TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
822                 // TRANS: %1$s is the role name, %2$s is the user ID (number).
823                 throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; does not exist.'),$name, $this->id));
824             }
825
826             $result = $role->delete();
827
828             if (!$result) {
829                 common_log_db_error($role, 'DELETE', __FILE__);
830                 // TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
831                 // TRANS: %1$s is the role name, %2$s is the user ID (number).
832                 throw new Exception(sprintf(_('Cannot revoke role "%1$s" for user #%2$d; database error.'),$name, $this->id));
833             }
834
835             Event::handle('EndRevokeRole', array($this, $name));
836
837             return true;
838         }
839     }
840
841     function isSandboxed()
842     {
843         return $this->hasRole(Profile_role::SANDBOXED);
844     }
845
846     function isSilenced()
847     {
848         return $this->hasRole(Profile_role::SILENCED);
849     }
850
851     function sandbox()
852     {
853         $this->grantRole(Profile_role::SANDBOXED);
854     }
855
856     function unsandbox()
857     {
858         $this->revokeRole(Profile_role::SANDBOXED);
859     }
860
861     function silence()
862     {
863         $this->grantRole(Profile_role::SILENCED);
864     }
865
866     function unsilence()
867     {
868         $this->revokeRole(Profile_role::SILENCED);
869     }
870
871     /**
872      * Does this user have the right to do X?
873      *
874      * With our role-based authorization, this is merely a lookup for whether the user
875      * has a particular role. The implementation currently uses a switch statement
876      * to determine if the user has the pre-defined role to exercise the right. Future
877      * implementations may allow per-site roles, and different mappings of roles to rights.
878      *
879      * @param $right string Name of the right, usually a constant in class Right
880      * @return boolean whether the user has the right in question
881      */
882     function hasRight($right)
883     {
884         $result = false;
885
886         if ($this->hasRole(Profile_role::DELETED)) {
887             return false;
888         }
889
890         if (Event::handle('UserRightsCheck', array($this, $right, &$result))) {
891             switch ($right)
892             {
893             case Right::DELETEOTHERSNOTICE:
894             case Right::MAKEGROUPADMIN:
895             case Right::SANDBOXUSER:
896             case Right::SILENCEUSER:
897             case Right::DELETEUSER:
898             case Right::DELETEGROUP:
899                 $result = $this->hasRole(Profile_role::MODERATOR);
900                 break;
901             case Right::CONFIGURESITE:
902                 $result = $this->hasRole(Profile_role::ADMINISTRATOR);
903                 break;
904             case Right::GRANTROLE:
905             case Right::REVOKEROLE:
906                 $result = $this->hasRole(Profile_role::OWNER);
907                 break;
908             case Right::NEWNOTICE:
909             case Right::NEWMESSAGE:
910             case Right::SUBSCRIBE:
911                 $result = !$this->isSilenced();
912                 break;
913             case Right::PUBLICNOTICE:
914             case Right::EMAILONREPLY:
915             case Right::EMAILONSUBSCRIBE:
916             case Right::EMAILONFAVE:
917                 $result = !$this->isSandboxed();
918                 break;
919             default:
920                 $result = false;
921                 break;
922             }
923         }
924         return $result;
925     }
926
927     function hasRepeated($notice_id)
928     {
929         // XXX: not really a pkey, but should work
930
931         $notice = Memcached_DataObject::pkeyGet('Notice',
932                                                 array('profile_id' => $this->id,
933                                                       'repeat_of' => $notice_id));
934
935         return !empty($notice);
936     }
937
938     /**
939      * Returns an XML string fragment with limited profile information
940      * as an Atom <author> element.
941      *
942      * Assumes that Atom has been previously set up as the base namespace.
943      *
944      * @param Profile $cur the current authenticated user
945      *
946      * @return string
947      */
948     function asAtomAuthor($cur = null)
949     {
950         $xs = new XMLStringer(true);
951
952         $xs->elementStart('author');
953         $xs->element('name', null, $this->nickname);
954         $xs->element('uri', null, $this->getUri());
955         if ($cur != null) {
956             $attrs = Array();
957             $attrs['following'] = $cur->isSubscribed($this) ? 'true' : 'false';
958             $attrs['blocking']  = $cur->hasBlocked($this) ? 'true' : 'false';
959             $xs->element('statusnet:profile_info', $attrs, null);
960         }
961         $xs->elementEnd('author');
962
963         return $xs->getString();
964     }
965
966     /**
967      * Returns an XML string fragment with profile information as an
968      * Activity Streams <activity:actor> element.
969      *
970      * Assumes that 'activity' namespace has been previously defined.
971      *
972      * @return string
973      */
974     function asActivityActor()
975     {
976         return $this->asActivityNoun('actor');
977     }
978
979     /**
980      * Returns an XML string fragment with profile information as an
981      * Activity Streams noun object with the given element type.
982      *
983      * Assumes that 'activity', 'georss', and 'poco' namespace has been
984      * previously defined.
985      *
986      * @param string $element one of 'actor', 'subject', 'object', 'target'
987      *
988      * @return string
989      */
990     function asActivityNoun($element)
991     {
992         $noun = ActivityObject::fromProfile($this);
993         return $noun->asString('activity:' . $element);
994     }
995
996     /**
997      * Returns the best URI for a profile. Plugins may override.
998      *
999      * @return string $uri
1000      */
1001     function getUri()
1002     {
1003         $uri = null;
1004
1005         // give plugins a chance to set the URI
1006         if (Event::handle('StartGetProfileUri', array($this, &$uri))) {
1007
1008             // check for a local user first
1009             $user = User::staticGet('id', $this->id);
1010
1011             if (!empty($user)) {
1012                 $uri = $user->uri;
1013             } else {
1014                 // return OMB profile if any
1015                 $remote = Remote_profile::staticGet('id', $this->id);
1016                 if (!empty($remote)) {
1017                     $uri = $remote->uri;
1018                 }
1019             }
1020             Event::handle('EndGetProfileUri', array($this, &$uri));
1021         }
1022
1023         return $uri;
1024     }
1025
1026     function hasBlocked($other)
1027     {
1028         $block = Profile_block::get($this->id, $other->id);
1029
1030         if (empty($block)) {
1031             $result = false;
1032         } else {
1033             $result = true;
1034         }
1035
1036         return $result;
1037     }
1038
1039     function getAtomFeed()
1040     {
1041         $feed = null;
1042
1043         if (Event::handle('StartProfileGetAtomFeed', array($this, &$feed))) {
1044             $user = User::staticGet('id', $this->id);
1045             if (!empty($user)) {
1046                 $feed = common_local_url('ApiTimelineUser', array('id' => $user->id,
1047                                                                   'format' => 'atom'));
1048             }
1049             Event::handle('EndProfileGetAtomFeed', array($this, $feed));
1050         }
1051
1052         return $feed;
1053     }
1054
1055     static function fromURI($uri)
1056     {
1057         $profile = null;
1058
1059         if (Event::handle('StartGetProfileFromURI', array($uri, &$profile))) {
1060             // Get a local user or remote (OMB 0.1) profile
1061             $user = User::staticGet('uri', $uri);
1062             if (!empty($user)) {
1063                 $profile = $user->getProfile();
1064             } else {
1065                 $remote_profile = Remote_profile::staticGet('uri', $uri);
1066                 if (!empty($remote_profile)) {
1067                     $profile = Profile::staticGet('id', $remote_profile->profile_id);
1068                 }
1069             }
1070             Event::handle('EndGetProfileFromURI', array($uri, $profile));
1071         }
1072
1073         return $profile;
1074     }
1075 }