X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fuserset.inc.php;h=be7564db8ff4b53f52db6f639a067011fa8cb9a2;hb=4b8668886619b89c4c66b7b24deefaa1c28ef696;hp=7ffe768f0f0e44ded71ca8fea8c2fc5de33a1aab;hpb=245923e335d0da5bec9495991a7846be9f0563ab;p=platal.git diff --git a/include/userset.inc.php b/include/userset.inc.php index 7ffe768..be7564d 100644 --- a/include/userset.inc.php +++ b/include/userset.inc.php @@ -1,6 +1,6 @@ quick = $quick; - if (is_null($cond)) { $conds = new PFC_And(); } else if ($cond instanceof PFC_And) { @@ -68,30 +62,6 @@ class SearchSet extends ProfileSet $conds = new PFC_And($cond); } - if ($quick) { - $this->getQuick($conds); - } else { - $this->getAdvanced($conds); - } - } - - public function isValid() - { - return $this->valid; - } - - /** Sets up the conditions for a Quick Search - * @param $conds Additional conds (as a PFC_And) - */ - private function getQuick($conds) - { - if (!S::logged()) { - Env::kill('with_soundex'); - } - - require_once 'ufbuilder.inc.php'; - $ufb = new UFB_QuickSearch(); - if (!$ufb->isValid()) { $this->valid = false; return; @@ -102,36 +72,12 @@ class SearchSet extends ProfileSet $orders = $ufb->getOrders(); - if (S::logged() && Env::has('nonins')) { - $conds = new PFC_And($conds, - new PFC_Not(new UFC_Dead()), - new PFC_Not(new UFC_Registered()) - ); - } - parent::__construct($conds, $orders); } - /** Sets up the conditions for an Advanced Search - * @param $conds Additional conds (as a PFC_And) - */ - private function getAdvanced($conds) + public function isValid() { - $this->advanced = true; - require_once 'ufbuilder.inc.php'; - $ufb = new UFB_AdvancedSearch(); - - if (!$ufb->isValid()) { - $this->valid = false; - return; - } - - $ufc = $ufb->getUFC(); - $conds->addChild($ufc); - - $orders = $ufb->getOrders(); - - parent::__construct($conds, $orders); + return $this->valid; } /** Add a "rechercher=Chercher" field to the query to simulate the POST @@ -146,13 +92,37 @@ class SearchSet extends ProfileSet return $args; } - protected function &getFilterResults(PlFilter &$pf, PlLimit $limit) + protected function &getFilterResults(PlFilter $pf, PlLimit $limit) { $profiles = $pf->getProfiles($limit, Profile::FETCH_MINIFICHES); return $profiles; } } +// Specialized SearchSet for quick search. +class QuickSearchSet extends SearchSet +{ + public function __construct(PlFilterCondition $cond = null) + { + if (!S::logged()) { + Env::kill('with_soundex'); + } + + parent::__construct(new UFB_QuickSearch(), $cond); + } +} + +// Specialized SearchSet for advanced search. +class AdvancedSearchSet extends SearchSet +{ + public function __construct($xorg_admin_fields, $ax_admin_fields, + PlFilterCondition $cond = null) + { + parent::__construct(new UFB_AdvancedSearch($xorg_admin_fields, $ax_admin_fields), + $cond); + } +} + /** Simple set based on an array of User objects */ class ArraySet extends ProfileSet @@ -221,7 +191,7 @@ abstract class ProfileView extends MultipageView */ class MinificheView extends ProfileView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { global $globals; $this->entriesPerPage = $globals->search->per_page; @@ -249,7 +219,7 @@ class MinificheView extends ProfileView parent::__construct($set, $params); } - public function apply(PlPage &$page) + public function apply(PlPage $page) { if (array_key_exists('starts_with', $this->params) && $this->params['starts_with'] != "" @@ -271,7 +241,7 @@ class MinificheView extends ProfileView class MentorView extends ProfileView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { $this->entriesPerPage = 10; $this->addSort(new PlViewOrder('rand', array(new PFO_Random(S::i('uid'))), 'aléatoirement')); @@ -296,7 +266,7 @@ class MentorView extends ProfileView class TrombiView extends ProfileView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { $this->entriesPerPage = 24; $this->defaultkey = 'name'; @@ -322,7 +292,7 @@ class TrombiView extends ProfileView return 'include/plview.trombi.tpl'; } - public function apply(PlPage &$page) + public function apply(PlPage $page) { if (!empty($GLOBALS['IS_XNET_SITE'])) { global $globals; @@ -332,14 +302,76 @@ class TrombiView extends ProfileView } } +/** A multipage view for users + * Allows the display of bounds when sorting by name or promo. + */ +abstract class UserView extends MultipageView +{ + protected function getBoundValue($user) + { + if ($user instanceof User) { + switch ($this->bound_field) { + case 'name': + $name = $user->lastName(); + return strtoupper($name); + case 'promo': + if ($user->hasProfile()) { + return $user->profile()->promo(); + } else { + return null; + } + default: + return null; + } + } + return null; + } + + public function bounds() + { + $order = Env::v('order', $this->defaultkey); + $show_bounds = 0; + if (($order == "name") || ($order == "-name")) { + $this->bound_field = "name"; + $show_bounds = 1; + } elseif (($order == "promo") || ($order == "-promo")) { + $this->bound_field = "promo"; + $show_bounds = -1; + } + if ($order{0} == '-') { + $show_bounds = -$show_bounds; + } + return $show_bounds; + } +} + +class XnetFicheView extends UserView +{ + public function __construct(PlSet $set, array $params) + { + $this->entriesPerPage = 20; + $this->addSort(new PlViewOrder('name', array(new UFO_Name(Profile::DN_SORT)), 'nom')); + $this->addSort(new PlViewOrder('promo', array( + new UFO_Promo(UserFilter::DISPLAY, true), + new UFO_Name(Profile::DN_SORT), + ), 'promotion')); + parent::__construct($set, $params); + } + + public function templateName() + { + return 'include/plview.xnetuser.tpl'; + } +} + class GadgetView implements PlView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { $this->set =& $set; } - public function apply(PlPage &$page) + public function apply(PlPage $page) { $page->assign_by_ref('set', $this->set->get(new PlLimit(5, 0))); } @@ -350,5 +382,70 @@ class GadgetView implements PlView } } +class AddressesView implements PlView +{ + private $set; + + public function __construct(PlSet $set, array $params) + { + $this->set =& $set; + } + + public function apply(PlPage $page) + { + $pids = $this->set->getIds(new PlLimit()); + $visibility = new ProfileVisibility(ProfileVisibility::VIS_AX); + pl_cached_content_headers('text/x-csv', 1); + + $csv = fopen('php://output', 'w'); + fputcsv($csv, array('adresses'), ';'); + $res = XDB::query('SELECT pd.public_name, pa.postalText + FROM profile_addresses AS pa + INNER JOIN profile_display AS pd ON (pd.pid = pa.pid) + WHERE pa.type = \'home\' AND pa.pub IN (\'public\', \'ax\') AND FIND_IN_SET(\'mail\', pa.flags) AND pa.pid IN {?} + GROUP BY pa.pid', $pids); + foreach ($res->fetchAllAssoc() as $item) { + fputcsv($csv, $item, ';'); + } + fclose($csv); + exit(); + } + + public function args() + { + return $this->set->args(); + } +} + +class JSonView implements PlView +{ + private $set; + private $params; + + public function __construct(PlSet $set, array $params) + { + $this->set = $set; + $this->params = $params; + } + + public function apply(PlPage $page) + { + $export = array(); + $start = isset($this->params['offset']) ? $this->params['offset'] : 0; + $count = isset($this->params['count']) ? $this->params['count'] : 10; + $profiles = $this->set->get(new PlLimit($start, $count)); + foreach ($profiles as $profile) { + $export[] = $profile->export(); + } + $page->jsonAssign('profile_count', $this->set->count()); + $page->jsonAssign('profiles', $export); + } + + public function args() + { + return $this->set->args(); + } +} + // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>