]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/User_group.php
Merge branch 'sgmurphy-clone/0.7.x' into 0.7.x
[quix0rs-gnu-social.git] / classes / User_group.php
1 <?php
2 /**
3  * Table Definition for user_group
4  */
5
6 class User_group extends Memcached_DataObject
7 {
8     ###START_AUTOCODE
9     /* the code below is auto generated do not remove the above tag */
10
11     public $__table = 'user_group';                      // table name
12     public $id;                              // int(4)  primary_key not_null
13     public $nickname;                        // varchar(64)  unique_key
14     public $fullname;                        // varchar(255)
15     public $homepage;                        // varchar(255)
16     public $description;                     // varchar(140)
17     public $location;                        // varchar(255)
18     public $original_logo;                   // varchar(255)
19     public $homepage_logo;                   // varchar(255)
20     public $stream_logo;                     // varchar(255)
21     public $mini_logo;                       // varchar(255)
22     public $created;                         // datetime()   not_null
23     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
24
25     /* Static get */
26     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User_group',$k,$v); }
27
28     /* the code above is auto generated do not remove the tag below */
29     ###END_AUTOCODE
30
31     function defaultLogo($size)
32     {
33         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile',
34                                   AVATAR_STREAM_SIZE => 'stream',
35                                   AVATAR_MINI_SIZE => 'mini');
36         return theme_path('default-avatar-'.$sizenames[$size].'.png');
37     }
38
39     function homeUrl()
40     {
41         return common_local_url('showgroup',
42                                 array('nickname' => $this->nickname));
43     }
44
45     function permalink()
46     {
47         return common_local_url('groupbyid',
48                                 array('id' => $this->id));
49     }
50
51     function getNotices($offset, $limit)
52     {
53         $qry =
54           'SELECT notice.* ' .
55           'FROM notice JOIN group_inbox ON notice.id = group_inbox.notice_id ' .
56           'WHERE group_inbox.group_id = %d ';
57         return Notice::getStream(sprintf($qry, $this->id),
58                                  'group:notices:'.$this->id,
59                                  $offset, $limit);
60     }
61
62     function allowedNickname($nickname)
63     {
64         static $blacklist = array('new');
65         return !in_array($nickname, $blacklist);
66     }
67
68     function getMembers($offset=0, $limit=null)
69     {
70         $qry =
71           'SELECT profile.* ' .
72           'FROM profile JOIN group_member '.
73           'ON profile.id = group_member.profile_id ' .
74           'WHERE group_member.group_id = %d ' .
75           'ORDER BY group_member.created DESC ';
76
77         if ($limit != null) {
78             if (common_config('db','type') == 'pgsql') {
79                 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
80             } else {
81                 $qry .= ' LIMIT ' . $offset . ', ' . $limit;
82             }
83         }
84
85         $members = new Profile();
86
87         $members->query(sprintf($qry, $this->id));
88         return $members;
89     }
90
91     function setOriginal($filename)
92     {
93         $imagefile = new ImageFile($this->id, Avatar::path($filename));
94         
95         $orig = clone($this);
96         $this->original_logo = Avatar::url($filename);
97         $this->homepage_logo = Avatar::url($imagefile->resize(AVATAR_PROFILE_SIZE));
98         $this->stream_logo = Avatar::url($imagefile->resize(AVATAR_STREAM_SIZE));
99         $this->mini_logo = Avatar::url($imagefile->resize(AVATAR_MINI_SIZE));
100         common_debug(common_log_objstring($this));
101         return $this->update($orig);
102     }
103 }