X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fsurvey%2Fsurvey.inc.php;h=7057a0dc88934cf9b663036b0ed18b89261c8ff0;hb=ee4556f02ff16b68e98d5c49a0732fbb48f287b7;hp=5d5087ae0e362443917f522f9616599f57ee97de;hpb=d1e6167749fdad08c81e23d09e1bbbf76e3b989b;p=platal.git diff --git a/modules/survey/survey.inc.php b/modules/survey/survey.inc.php index 5d5087a..7057a0d 100644 --- a/modules/survey/survey.inc.php +++ b/modules/survey/survey.inc.php @@ -1,6 +1,6 @@ mode == self::MODE_ALL) { $args['promos'] = ''; } + $args['promos'] = str_replace(' ', '', $args['promos']); $this->promos = ($args['promos'] == '' || preg_match('#^(\d{4}-?|(\d{4})?-\d{4})(,(\d{4}-?|(\d{4})?-\d{4}))*$#', $args['promos']))? $args['promos'] : '#'; } // }}} @@ -103,7 +104,9 @@ class Survey if ((preg_match('#^\d{4}$#', $p) && $p == $promo) || (preg_match('#^\d{4}-$#', $p) && intval(substr($p, 0, 4)) <= $promo) || (preg_match('#^-\d{4}$#', $p) && intval(substr($p, 1)) >= $promo) || - (preg_match('#^\d{4}-\d{4}$#', $p) && intval(substr($p, 0, 4)) <= $promo && intval(substr($p, 5)) >= $promo)) { + (preg_match('#^\d{4}-\d{4}$#', $p) && + (intval(substr($p, 0, 4)) <= $promo && intval(substr($p, 5)) >= $promo || + intval(substr($p, 0, 4)) >= $promo && intval(substr($p, 5)) <= $promo ))) { return true; } } @@ -189,7 +192,7 @@ class Survey $nbf = count($line); $users = array(); if ($this->isMode(self::MODE_XIDENT)) { // if the mode is non anonymous - $users = User::getBulkUsersWithUIDs(XDB::fetchAllAssoc('vid', 'SELECT v.id AS vid, v.user_id + $users = User::getBulkUsersWithUIDs(XDB::fetchAllAssoc('vid', 'SELECT v.id AS vid, v.uid FROM survey_votes AS v WHERE v.survey_id = {?} ORDER BY vid ASC', @@ -197,10 +200,9 @@ class Survey } $sql = 'SELECT v.id AS vid, a.question_id AS qid, a.answer AS answer FROM survey_votes AS v - LEFT JOIN survey_answers AS a - ON a.vote_id=v.id + INNER JOIN survey_answers AS a ON a.vote_id=v.id WHERE v.survey_id={?} - ORDER BY vid ASC, qid ASC, answer ASC;'; + ORDER BY vid ASC, qid ASC, answer ASC'; $res = XDB::iterator($sql, $this->id); // retrieves all answers from database $vid = -1; $vid_ = 0; @@ -340,7 +342,7 @@ class Survey return null; } $sql = 'SELECT id, title, end, mode - FROM survey_surveys + FROM surveys WHERE '.$where.' ORDER BY end DESC;'; if ($tpl) { @@ -355,7 +357,7 @@ class Survey public static function retrieveSurvey($sid) { $sql = 'SELECT questions, title, description, end, mode, promos - FROM survey_surveys + FROM surveys WHERE id={?}'; $res = XDB::query($sql, $sid); $data = $res->fetchOneAssoc(); @@ -371,7 +373,7 @@ class Survey public static function retrieveSurveyInfo($sid) { $sql = 'SELECT title, description, end, mode, promos - FROM survey_surveys + FROM surveys WHERE id={?}'; $res = XDB::query($sql, $sid); return $res->fetchOneAssoc(); @@ -381,7 +383,6 @@ class Survey // {{{ static function retrieveSurveyReq() : gets a survey request to validate public static function retrieveSurveyReq($id) { - require_once 'validations.inc.php'; $surveyreq = Validate::get_request_by_id($id); if ($surveyreq == null) { return null; @@ -399,7 +400,6 @@ class Survey // {{{ function proposeSurvey() : stores a proposition of survey in database (before validation) public function proposeSurvey() { - require_once 'validations.inc.php'; $surveyreq = new SurveyReq($this->title, $this->description, $this->end, $this->mode, $this->promos, $this->questions, S::user()); return $surveyreq->submit(); } @@ -409,7 +409,7 @@ class Survey public function updateSurvey() { if ($this->valid) { - $sql = 'UPDATE survey_surveys + $sql = 'UPDATE surveys SET questions={?}, title={?}, description={?}, @@ -419,7 +419,6 @@ class Survey WHERE id={?};'; return XDB::execute($sql, serialize($this->questions), $this->title, $this->description, $this->end, $this->mode, $this->promos, $this->id); } else { - require_once 'validations.inc.php'; $surveyreq = Validate::get_request_by_id($this->id); if ($surveyreq == null) { return false; @@ -432,8 +431,8 @@ class Survey // {{{ functions vote() and hasVoted() : handles vote to a survey public function vote($uid, $args) { - XDB::execute('INSERT INTO survey_votes - SET survey_id={?}, user_id={?};', $this->id, $uid); // notes the user as having voted + XDB::execute('INSERT INTO survey_votes + SET survey_id = {?}, uid = {?};', $this->id, $uid); // notes the user as having voted $vid = XDB::insertId(); for ($i = 0; $i < count($this->questions); $i++) { $ans = $this->questions[$i]->checkAnswer($args[$i]); @@ -450,9 +449,9 @@ class Survey public function hasVoted($uid) { - $res = XDB::query('SELECT id - FROM survey_votes - WHERE survey_id={?} AND user_id={?};', $this->id, $uid); // checks whether the user has already voted + $res = XDB::query('SELECT id + FROM survey_votes + WHERE survey_id = {?} AND uid = {?};', $this->id, $uid); // checks whether the user has already voted return ($res->numRows() != 0); } // }}} @@ -461,7 +460,7 @@ class Survey public static function deleteSurvey($sid) { $sql = 'DELETE s.*, v.*, a.* - FROM survey_surveys AS s + FROM surveys AS s LEFT JOIN survey_votes AS v ON v.survey_id=s.id LEFT JOIN survey_answers AS a