X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FUser_group.php;h=406537dd8a40f32a84d34ee4c034ae66b173c29e;hb=3ad3535cd8d12787d1af95969b9576620abce4a9;hp=0f1cc40b28f38e42a50b4e93323144962a40a021;hpb=7d64d8c78cfa102b91975598ef9e574d2ef14b8c;p=quix0rs-gnu-social.git diff --git a/classes/User_group.php b/classes/User_group.php index 0f1cc40b28..406537dd8a 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -7,6 +7,7 @@ class User_group extends Managed_DataObject { const JOIN_POLICY_OPEN = 0; const JOIN_POLICY_MODERATE = 1; + const CACHE_WINDOW = 201; ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -141,27 +142,52 @@ class User_group extends Managed_DataObject return !in_array($nickname, $blacklist); } - function getMembers($offset=0, $limit=null) + function getMembers($offset=0, $limit=null) { + $ids = null; + if (is_null($limit) || $offset + $limit > User_group::CACHE_WINDOW) { + $ids = $this->getMemberIDs($offset, + $limit); + } else { + $key = sprintf('group:member_ids:%d', $this->id); + $window = self::cacheGet($key); + if ($window === false) { + $window = $this->getMemberIDs(0, + User_group::CACHE_WINDOW); + self::cacheSet($key, $window); + } + + $ids = array_slice($window, + $offset, + $limit); + } + + return Profile::multiGet('id', $ids); + } + + function getMemberIDs($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 '; + $gm = new Group_member(); - if ($limit != null) { - if (common_config('db','type') == 'pgsql') { - $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; - } else { - $qry .= ' LIMIT ' . $offset . ', ' . $limit; - } + $gm->selectAdd(); + $gm->selectAdd('profile_id'); + + $gm->group_id = $this->id; + + $gm->orderBy('created DESC'); + + if (!is_null($limit)) { + $gm->limit($offset, $limit); } - $members = new Profile(); + $ids = array(); - $members->query(sprintf($qry, $this->id)); - return $members; + if ($gm->find()) { + while ($gm->fetch()) { + $ids[] = $gm->profile_id; + } + } + + return $ids; } /** @@ -196,17 +222,24 @@ class User_group extends Managed_DataObject function getMemberCount() { - // XXX: WORM cache this + $key = sprintf("group:member_count:%d", $this->id); - $members = $this->getMembers(); - $member_count = 0; + $cnt = self::cacheGet($key); - /** $member->count() doesn't work. */ - while ($members->fetch()) { - $member_count++; + if (is_integer($cnt)) { + return (int) $cnt; } - return $member_count; + $mem = new Group_member(); + $mem->group_id = $this->id; + + // XXX: why 'distinct'? + + $cnt = (int) $mem->count('distinct profile_id'); + + self::cacheSet($key, $cnt); + + return $cnt; } function getBlockedCount()