X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fsurvey%2Fsurvey.inc.php;h=497a7f86db54ed9224e826136903659615b3e1b3;hb=3a2985f931bdbbae9d1c689263a1dc15d9b3b7dc;hp=670075e4e97617181350cd53cacd4a37bbfeada8;hpb=f74509fbb4f06820dc3d028e3ffd2145f151b013;p=platal.git diff --git a/modules/survey/survey.inc.php b/modules/survey/survey.inc.php index 670075e..497a7f8 100644 --- a/modules/survey/survey.inc.php +++ b/modules/survey/survey.inc.php @@ -1,6 +1,6 @@ title = $args['title']; $this->description = $args['description']; $this->end = $args['end']; - $this->mode = (isset($args['mode']))? $args['mode'] : self::MODE_ALL; + $this->mode = (isset($args['mode']))? $args['mode'] : self::MODE_ALL; + $this->creator = $args['uid']; if ($this->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'] : '#'; } + + public function canSeeEarlyResults(User $user) + { + return $user->id() == $this->creator || $user->checkPerms('admin'); + } // }}} // {{{ functions to access general information @@ -356,7 +363,7 @@ class Survey // {{{ static function retrieveSurvey() : gets a survey in database (and unserialize the survey object structure) public static function retrieveSurvey($sid) { - $sql = 'SELECT questions, title, description, end, mode, promos + $sql = 'SELECT questions, title, description, end, mode, promos, uid FROM surveys WHERE id={?}'; $res = XDB::query($sql, $sid); @@ -383,7 +390,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; @@ -401,7 +407,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(); } @@ -421,7 +426,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; @@ -435,7 +439,8 @@ class Survey public function vote($uid, $args) { XDB::execute('INSERT INTO survey_votes - SET survey_id = {?}, uid = {?};', $this->id, $uid); // notes the user as having voted + SET survey_id = {?}, uid = {?}', + $this->id, ($uid == 0) ? null : $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]);