X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fgroup.php;h=b5f45007b879f5ceff6697d276be76e0eb8a752a;hb=1c4a1d0a32c52851e9ffbbf585bb206c9a472dc9;hp=c75191b5db01475f6d048cd322545982462ad711;hpb=89274a92006f2e3d3124667cd77525f7d01f8012;p=platal.git diff --git a/classes/group.php b/classes/group.php index c75191b..b5f4500 100644 --- a/classes/group.php +++ b/classes/group.php @@ -1,6 +1,6 @@ id, $admin); + $cond = new PFC_And(new UFC_Group($this->id, $admin), new PFC_Not(new UFC_Dead())); if (!is_null($extra_cond)) { - $cond = new UFC_And($cond, $extra_cond); + $cond->addChild($extra_cond); + } + if ($this->cat == self::CAT_PROMOTIONS) { + $cond->addChild(new UFC_Registered()); } return new UserFilter($cond, $sort); } - public function getMembers($extra_cond = null, $sort = null) + public function getMembersFilter($extra_cond = null, $sort = null) { return $this->getUF(false, $extra_cond, $sort); } - public function getAdmins($extra_cond = null, $sort = null) + public function getAdminsFilter($extra_cond = null, $sort = null) { return $this->getUF(true, $extra_cond, $sort); } - static public function get($id) + public function iterMembers($extra_cond = null, $sort = null, $limit = null) + { + $uf = $this->getMembersFilter($extra_cond, $sort); + return $uf->iterUsers($limit); + } + + public function iterAdmins($extra_cond = null, $sort = null, $limit = null) + { + $uf = $this->getAdminsFilter($extra_cond, $sort); + return $uf->iterUsers($limit); + } + + public function getLogo($fallback = true) + { + if (!empty($this->logo)) { + return PlImage::fromData($this->logo, $this->logo_mime); + } else if ($fallback) { + return PlImage::fromFile(dirname(__FILE__).'/../htdocs/images/dflt_carre.jpg', 'image/jpeg'); + } + return null; + } + + static public function get($id, $can_be_shortname = true) { if (!$id) { return null; } - if (ctype_digit($id)) { - $where = XDB::format('id = {?}', $id); + if (!$can_be_shortname) { + $where = XDB::format('a.id = {?}', $id); } else { - $where = XDB::format('diminutif = {?}', $id); + $where = XDB::format('a.diminutif = {?}', $id); } $res = XDB::query('SELECT a.*, d.nom AS domnom, FIND_IN_SET(\'wiki_desc\', a.flags) AS wiki_desc, FIND_IN_SET(\'notif_unsub\', a.flags) AS notif_unsub - FROM groupex.asso AS a - LEFT JOIN groupex.dom AS d ON d.id = a.dom + FROM groups AS a + LEFT JOIN group_dom AS d ON d.id = a.dom WHERE ' . $where); if ($res->numRows() != 1) { + if ($can_be_shortname && (is_int($id) || ctype_digit($id))) { + return Group::get($id, false); + } return null; } return new Group($res->fetchOneAssoc());