| 
									
										
										
										
											2009-01-13 00:35:41 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Table Definition for user_group | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class User_group extends Memcached_DataObject | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ###START_AUTOCODE
 | 
					
						
							|  |  |  |     /* the code below is auto generated do not remove the above tag */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public $__table = 'user_group';                      // table name
 | 
					
						
							|  |  |  |     public $id;                              // int(4)  primary_key not_null
 | 
					
						
							|  |  |  |     public $nickname;                        // varchar(64)  unique_key
 | 
					
						
							|  |  |  |     public $fullname;                        // varchar(255)
 | 
					
						
							|  |  |  |     public $homepage;                        // varchar(255)
 | 
					
						
							|  |  |  |     public $description;                     // varchar(140)
 | 
					
						
							|  |  |  |     public $location;                        // varchar(255)
 | 
					
						
							|  |  |  |     public $original_logo;                   // varchar(255)
 | 
					
						
							|  |  |  |     public $homepage_logo;                   // varchar(255)
 | 
					
						
							|  |  |  |     public $stream_logo;                     // varchar(255)
 | 
					
						
							|  |  |  |     public $mini_logo;                       // varchar(255)
 | 
					
						
							| 
									
										
										
										
											2009-06-17 22:16:09 -07:00
										 |  |  |     public $design_id;                       // int(4)
 | 
					
						
							| 
									
										
										
										
											2009-01-13 00:35:41 -05:00
										 |  |  |     public $created;                         // datetime()   not_null
 | 
					
						
							|  |  |  |     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Static get */ | 
					
						
							|  |  |  |     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User_group',$k,$v); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* the code above is auto generated do not remove the tag below */ | 
					
						
							|  |  |  |     ###END_AUTOCODE
 | 
					
						
							| 
									
										
										
										
											2009-01-21 02:22:10 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-21 09:51:55 -05:00
										 |  |  |     function defaultLogo($size) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-21 02:22:10 -05:00
										 |  |  |         static $sizenames = array(AVATAR_PROFILE_SIZE => 'profile', | 
					
						
							|  |  |  |                                   AVATAR_STREAM_SIZE => 'stream', | 
					
						
							|  |  |  |                                   AVATAR_MINI_SIZE => 'mini'); | 
					
						
							|  |  |  |         return theme_path('default-avatar-'.$sizenames[$size].'.png'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-21 09:51:55 -05:00
										 |  |  |     function homeUrl() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-21 02:22:10 -05:00
										 |  |  |         return common_local_url('showgroup', | 
					
						
							|  |  |  |                                 array('nickname' => $this->nickname)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-21 09:51:55 -05:00
										 |  |  |     function permalink() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-21 02:22:10 -05:00
										 |  |  |         return common_local_url('groupbyid', | 
					
						
							|  |  |  |                                 array('id' => $this->id)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-21 09:51:55 -05:00
										 |  |  |     function getNotices($offset, $limit) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-05-01 11:38:50 -07:00
										 |  |  |         $ids = Notice::stream(array($this, '_streamDirect'), | 
					
						
							|  |  |  |                               array(), | 
					
						
							|  |  |  |                               'user_group:notice_ids:' . $this->id, | 
					
						
							|  |  |  |                               $offset, $limit); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return Notice::getStreamByIds($ids); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-29 16:32:55 -07:00
										 |  |  |     function _streamDirect($offset, $limit, $since_id, $max_id, $since) | 
					
						
							| 
									
										
										
										
											2009-05-01 11:38:50 -07:00
										 |  |  |     { | 
					
						
							|  |  |  |         $inbox = new Group_inbox(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $inbox->group_id = $this->id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $inbox->selectAdd(); | 
					
						
							|  |  |  |         $inbox->selectAdd('notice_id'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($since_id != 0) { | 
					
						
							|  |  |  |             $inbox->whereAdd('notice_id > ' . $since_id); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-29 16:32:55 -07:00
										 |  |  |         if ($max_id != 0) { | 
					
						
							| 
									
										
										
										
											2009-05-29 16:54:24 -07:00
										 |  |  |             $inbox->whereAdd('notice_id <= ' . $max_id); | 
					
						
							| 
									
										
										
										
											2009-05-01 11:38:50 -07:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!is_null($since)) { | 
					
						
							|  |  |  |             $inbox->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\''); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $inbox->orderBy('notice_id DESC'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!is_null($offset)) { | 
					
						
							|  |  |  |             $inbox->limit($offset, $limit); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $ids = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($inbox->find()) { | 
					
						
							|  |  |  |             while ($inbox->fetch()) { | 
					
						
							|  |  |  |                 $ids[] = $inbox->notice_id; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $ids; | 
					
						
							| 
									
										
										
										
											2009-01-21 02:22:10 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-21 09:51:55 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function allowedNickname($nickname) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         static $blacklist = array('new'); | 
					
						
							|  |  |  |         return !in_array($nickname, $blacklist); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function getMembers($offset=0, $limit=null) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $qry = | 
					
						
							|  |  |  |           'SELECT profile.* ' . | 
					
						
							|  |  |  |           'FROM profile JOIN group_member '. | 
					
						
							|  |  |  |           'ON profile.id = group_member.profile_id ' . | 
					
						
							|  |  |  |           'WHERE group_member.group_id = %d ' . | 
					
						
							|  |  |  |           'ORDER BY group_member.created DESC '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 22:24:54 +01:00
										 |  |  |         if ($limit != null) { | 
					
						
							|  |  |  |             if (common_config('db','type') == 'pgsql') { | 
					
						
							|  |  |  |                 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $qry .= ' LIMIT ' . $offset . ', ' . $limit; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-01-21 09:51:55 -05:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $members = new Profile(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-01 22:24:54 +01:00
										 |  |  |         $members->query(sprintf($qry, $this->id)); | 
					
						
							| 
									
										
										
										
											2009-01-21 09:51:55 -05:00
										 |  |  |         return $members; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-23 08:15:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-14 16:17:44 -07:00
										 |  |  |     function getBlocked($offset=0, $limit=null) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $qry = | 
					
						
							|  |  |  |           'SELECT profile.* ' . | 
					
						
							|  |  |  |           'FROM profile JOIN group_block '. | 
					
						
							|  |  |  |           'ON profile.id = group_block.blocked ' . | 
					
						
							|  |  |  |           'WHERE group_block.group_id = %d ' . | 
					
						
							|  |  |  |           'ORDER BY group_block.modified DESC '; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($limit != null) { | 
					
						
							|  |  |  |             if (common_config('db','type') == 'pgsql') { | 
					
						
							|  |  |  |                 $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $qry .= ' LIMIT ' . $offset . ', ' . $limit; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $blocked = new Profile(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $blocked->query(sprintf($qry, $this->id)); | 
					
						
							|  |  |  |         return $blocked; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-04 19:32:15 -05:00
										 |  |  |     function setOriginal($filename) | 
					
						
							| 
									
										
										
										
											2009-01-23 08:15:29 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-02-06 03:13:08 -05:00
										 |  |  |         $imagefile = new ImageFile($this->id, Avatar::path($filename)); | 
					
						
							| 
									
										
										
										
											2009-05-01 11:38:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 08:15:29 +01:00
										 |  |  |         $orig = clone($this); | 
					
						
							| 
									
										
										
										
											2009-02-06 03:13:08 -05:00
										 |  |  |         $this->original_logo = Avatar::url($filename); | 
					
						
							|  |  |  |         $this->homepage_logo = Avatar::url($imagefile->resize(AVATAR_PROFILE_SIZE)); | 
					
						
							|  |  |  |         $this->stream_logo = Avatar::url($imagefile->resize(AVATAR_STREAM_SIZE)); | 
					
						
							|  |  |  |         $this->mini_logo = Avatar::url($imagefile->resize(AVATAR_MINI_SIZE)); | 
					
						
							| 
									
										
										
										
											2009-01-23 08:15:29 +01:00
										 |  |  |         common_debug(common_log_objstring($this)); | 
					
						
							|  |  |  |         return $this->update($orig); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-06-14 15:47:39 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function getBestName() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return ($this->fullname) ? $this->fullname : $this->nickname; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-06-14 23:37:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function getAliases() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $aliases = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // XXX: cache this
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $alias = new Group_alias(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $alias->group_id = $this->id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($alias->find()) { | 
					
						
							|  |  |  |             while ($alias->fetch()) { | 
					
						
							|  |  |  |                 $aliases[] = $alias->alias; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $alias->free(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $aliases; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function setAliases($newaliases) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $newaliases = array_unique($newaliases); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $oldaliases = $this->getAliases(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Delete stuff that's old that not in new
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $to_delete = array_diff($oldaliases, $newaliases); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Insert stuff that's in new and not in old
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $to_insert = array_diff($newaliases, $oldaliases); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $alias = new Group_alias(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $alias->group_id = $this->id; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($to_delete as $delalias) { | 
					
						
							|  |  |  |             $alias->alias = $delalias; | 
					
						
							|  |  |  |             $result = $alias->delete(); | 
					
						
							|  |  |  |             if (!$result) { | 
					
						
							|  |  |  |                 common_log_db_error($alias, 'DELETE', __FILE__); | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($to_insert as $insalias) { | 
					
						
							|  |  |  |             $alias->alias = $insalias; | 
					
						
							|  |  |  |             $result = $alias->insert(); | 
					
						
							|  |  |  |             if (!$result) { | 
					
						
							|  |  |  |                 common_log_db_error($alias, 'INSERT', __FILE__); | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-06-14 23:43:47 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     static function getForNickname($nickname) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $nickname = common_canonical_nickname($nickname); | 
					
						
							|  |  |  |         $group = User_group::staticGet('nickname', $nickname); | 
					
						
							|  |  |  |         if (!empty($group)) { | 
					
						
							|  |  |  |             return $group; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $alias = Group_alias::staticGet('alias', $nickname); | 
					
						
							|  |  |  |         if (!empty($alias)) { | 
					
						
							|  |  |  |             return User_group::staticGet('id', $alias->group_id); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return null; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-06-17 22:16:09 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function getDesign() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return Design::staticGet('id', $this->design_id); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-13 00:35:41 -05:00
										 |  |  | } |