2009-01-13 05:35:41 +00: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)
|
|
|
|
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 07:22:10 +00:00
|
|
|
|
2009-01-21 14:51:55 +00:00
|
|
|
function defaultLogo($size)
|
|
|
|
{
|
2009-01-21 07:22:10 +00: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 14:51:55 +00:00
|
|
|
function homeUrl()
|
|
|
|
{
|
2009-01-21 07:22:10 +00:00
|
|
|
return common_local_url('showgroup',
|
|
|
|
array('nickname' => $this->nickname));
|
|
|
|
}
|
|
|
|
|
2009-01-21 14:51:55 +00:00
|
|
|
function permalink()
|
|
|
|
{
|
2009-01-21 07:22:10 +00:00
|
|
|
return common_local_url('groupbyid',
|
|
|
|
array('id' => $this->id));
|
|
|
|
}
|
|
|
|
|
2009-01-21 14:51:55 +00:00
|
|
|
function getNotices($offset, $limit)
|
|
|
|
{
|
2009-01-21 07:22:10 +00:00
|
|
|
$qry =
|
|
|
|
'SELECT notice.* ' .
|
|
|
|
'FROM notice JOIN group_inbox ON notice.id = group_inbox.notice_id ' .
|
|
|
|
'WHERE group_inbox.group_id = %d ';
|
|
|
|
return Notice::getStream(sprintf($qry, $this->id),
|
|
|
|
'group:notices:'.$this->id,
|
|
|
|
$offset, $limit);
|
|
|
|
}
|
2009-01-21 14:51:55 +00: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 ';
|
|
|
|
|
|
|
|
if (common_config('db','type') == 'pgsql') {
|
|
|
|
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
|
|
|
} else {
|
|
|
|
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$members = new Profile();
|
|
|
|
|
|
|
|
$cnt = $members->query(sprintf($qry, $this->id));
|
|
|
|
|
|
|
|
return $members;
|
|
|
|
}
|
2009-01-23 07:15:29 +00:00
|
|
|
|
|
|
|
function setOriginal($filename, $type)
|
|
|
|
{
|
|
|
|
$orig = clone($this);
|
|
|
|
$this->original_logo = common_avatar_url($filename);
|
|
|
|
$this->homepage_logo = common_avatar_url($this->scale($filename,
|
2009-01-29 03:57:29 +00:00
|
|
|
AVATAR_PROFILE_SIZE,
|
|
|
|
$type));
|
2009-01-23 07:15:29 +00:00
|
|
|
$this->stream_logo = common_avatar_url($this->scale($filename,
|
2009-01-29 03:57:29 +00:00
|
|
|
AVATAR_STREAM_SIZE,
|
|
|
|
$type));
|
2009-01-23 07:15:29 +00:00
|
|
|
$this->mini_logo = common_avatar_url($this->scale($filename,
|
2009-01-29 03:57:29 +00:00
|
|
|
AVATAR_MINI_SIZE,
|
|
|
|
$type));
|
2009-01-23 07:15:29 +00:00
|
|
|
common_debug(common_log_objstring($this));
|
|
|
|
return $this->update($orig);
|
|
|
|
}
|
|
|
|
|
|
|
|
function scale($filename, $size, $type)
|
|
|
|
{
|
|
|
|
$filepath = common_avatar_path($filename);
|
|
|
|
|
|
|
|
if (!file_exists($filepath)) {
|
|
|
|
$this->serverError(_('Lost our file.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$info = @getimagesize($filepath);
|
|
|
|
|
|
|
|
switch ($type) {
|
2009-01-29 03:57:29 +00:00
|
|
|
case IMAGETYPE_GIF:
|
2009-01-23 07:15:29 +00:00
|
|
|
$image_src = imagecreatefromgif($filepath);
|
|
|
|
break;
|
2009-01-29 03:57:29 +00:00
|
|
|
case IMAGETYPE_JPEG:
|
2009-01-23 07:15:29 +00:00
|
|
|
$image_src = imagecreatefromjpeg($filepath);
|
|
|
|
break;
|
2009-01-29 03:57:29 +00:00
|
|
|
case IMAGETYPE_PNG:
|
2009-01-23 07:15:29 +00:00
|
|
|
$image_src = imagecreatefrompng($filepath);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->serverError(_('Unknown file type'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$image_dest = imagecreatetruecolor($size, $size);
|
|
|
|
|
|
|
|
$background = imagecolorallocate($image_dest, 0, 0, 0);
|
|
|
|
ImageColorTransparent($image_dest, $background);
|
|
|
|
imagealphablending($image_dest, false);
|
|
|
|
|
2009-01-29 03:57:29 +00:00
|
|
|
imagecopyresized($image_dest, $image_src,
|
|
|
|
0, 0, 0, 0,
|
|
|
|
$size, $size, $info[0], $info[1]);
|
2009-01-23 07:15:29 +00:00
|
|
|
|
2009-01-29 03:57:29 +00:00
|
|
|
$outname = common_avatar_filename($this->id,
|
2009-01-23 07:15:29 +00:00
|
|
|
image_type_to_extension($type),
|
2009-01-29 03:57:29 +00:00
|
|
|
$size,
|
2009-01-23 07:15:29 +00:00
|
|
|
common_timestamp());
|
|
|
|
|
|
|
|
$outpath = common_avatar_path($outname);
|
|
|
|
|
|
|
|
switch ($type) {
|
2009-01-29 03:57:29 +00:00
|
|
|
case IMAGETYPE_GIF:
|
2009-01-23 07:15:29 +00:00
|
|
|
imagegif($image_dest, $outpath);
|
|
|
|
break;
|
2009-01-29 03:57:29 +00:00
|
|
|
case IMAGETYPE_JPEG:
|
2009-01-23 07:15:29 +00:00
|
|
|
imagejpeg($image_dest, $outpath);
|
|
|
|
break;
|
2009-01-29 03:57:29 +00:00
|
|
|
case IMAGETYPE_PNG:
|
2009-01-23 07:15:29 +00:00
|
|
|
imagepng($image_dest, $outpath);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->serverError(_('Unknown file type'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $outname;
|
|
|
|
}
|
2009-01-13 05:35:41 +00:00
|
|
|
}
|