mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
120 lines
3.9 KiB
PHP
120 lines
3.9 KiB
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
/*
|
|
* LimeSurvey
|
|
* Copyright (C) 2013 The LimeSurvey Project Team / Carsten Schmitz
|
|
* All rights reserved.
|
|
* License: GNU/GPL License v2 or later, see LICENSE.php
|
|
* LimeSurvey is free software. This version may have been modified pursuant
|
|
* to the GNU General Public License, and as distributed it includes or
|
|
* is derivative of works licensed under the GNU General Public License or
|
|
* other free or open source software licenses.
|
|
* See COPYRIGHT.php for copyright notices and details.
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* optin
|
|
*
|
|
* @package LimeSurvey
|
|
* @copyright 2011
|
|
* @access public
|
|
*/
|
|
class OptinController extends LSYii_Controller {
|
|
|
|
public $layout = 'bare';
|
|
public $defaultAction = 'tokens';
|
|
|
|
function actiontokens($surveyid, $token, $langcode = '')
|
|
{
|
|
Yii::app()->loadHelper('database');
|
|
Yii::app()->loadHelper('sanitize');
|
|
$sLanguageCode = $langcode;
|
|
$iSurveyID = $surveyid;
|
|
$sToken = $token;
|
|
$sToken = sanitize_token($sToken);
|
|
|
|
if (!$iSurveyID)
|
|
{
|
|
$this->redirect(array('/'));
|
|
}
|
|
$iSurveyID = (int)$iSurveyID;
|
|
|
|
//Check that there is a SID
|
|
// Get passed language from form, so that we dont loose this!
|
|
if (!isset($sLanguageCode) || $sLanguageCode == "" || !$sLanguageCode)
|
|
{
|
|
$sBaseLanguage = Survey::model()->findByPk($iSurveyID)->language;
|
|
Yii::import('application.libraries.Limesurvey_lang', true);
|
|
$clang = new Limesurvey_lang($sBaseLanguage);
|
|
}
|
|
else
|
|
{
|
|
$sLanguageCode = sanitize_languagecode($sLanguageCode);
|
|
Yii::import('application.libraries.Limesurvey_lang', true);
|
|
$clang = new Limesurvey_lang($sLanguageCode);
|
|
$sBaseLanguage = $sLanguageCode;
|
|
}
|
|
|
|
Yii::app()->lang = $clang;
|
|
|
|
$aSurveyInfo=getSurveyInfo($iSurveyID,$sBaseLanguage);
|
|
|
|
if ($aSurveyInfo == false || !tableExists("{{tokens_{$iSurveyID}}}"))
|
|
{
|
|
$sMessage = $clang->gT('This survey does not seem to exist.');
|
|
}
|
|
else
|
|
{
|
|
$oToken = Token::model($iSurveyID)->findByAttributes(array('token' => $token));
|
|
|
|
if (!isset($oToken))
|
|
{
|
|
$sMessage = $clang->gT('You are not a participant in this survey.');
|
|
}
|
|
else
|
|
{
|
|
if ($oToken->emailstatus =='OptOut')
|
|
{
|
|
$oToken->emailstatus = 'OK';
|
|
$oToken->save();
|
|
$sMessage = $clang->gT('You have been successfully added back to this survey.');
|
|
}
|
|
elseif ($oToken->emailstatus == 'OK')
|
|
{
|
|
$sMessage = $clang->gT('You are already a part of this survey.');
|
|
}
|
|
else
|
|
{
|
|
$sMessage = $clang->gT('You have been already removed from this survey.');
|
|
}
|
|
}
|
|
}
|
|
|
|
//PRINT COMPLETED PAGE
|
|
if (!$aSurveyInfo['templatedir'])
|
|
{
|
|
$sTemplate=getTemplatePath(Yii::app()->getConfig("defaulttemplate"));
|
|
}
|
|
else
|
|
{
|
|
$sTemplate=getTemplatePath($aSurveyInfo['templatedir']);
|
|
}
|
|
$this->_renderHtml($sMessage,$sTemplate,$clang,$aSurveyInfo);
|
|
}
|
|
|
|
private function _renderHtml($html,$thistpl, $oLanguage, $aSurveyInfo)
|
|
{
|
|
sendCacheHeaders();
|
|
doHeader();
|
|
$aSupportData=array('thissurvey'=>$aSurveyInfo, 'clang'=>$oLanguage);
|
|
echo templatereplace(file_get_contents($thistpl.DIRECTORY_SEPARATOR.'startpage.pstpl'),array(), $aSupportData);
|
|
$aData['html'] = $html;
|
|
$aData['thistpl'] = $thistpl;
|
|
$this->render('/opt_view',$aData);
|
|
echo templatereplace(file_get_contents($thistpl.DIRECTORY_SEPARATOR.'endpage.pstpl'),array(), $aSupportData);
|
|
doFooter();
|
|
}
|
|
|
|
}
|