HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/apklausos/application/models/Condition.php
<?php

/*
* 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.
*
*/

/**
 * Class Condition
 *
 * @property integer $cid ID (primary key)
 * @property integer $qid Question id (subquestion)
 * @property integer $cqid Question id (grouping question)
 * @property string $cfieldname Condition field-name as <a href = "https://www.limesurvey.org/manual/SGQA_identifier">SGQA identifier</a>
 * @property string $method Logical operator see <a href="https://www.limesurvey.org/manual/Setting_conditions#Select_the_comparison_operator">here</a>
 * @property string $value Value to be compared against
 * @property integer $scenario Scenario number
 *
 * @property Question $questions
 */
class Condition extends LSActiveRecord
{
    /**
     * @inheritdoc
     * @return Condition
     */
    public static function model($className = __CLASS__)
    {
        /** @var self $model */
        $model = parent::model($className);
        return $model;
    }

    /**
     * Returns the setting's table name to be used by the model
     *
     * @access public
     * @return string
     */
    public function tableName()
    {
        return '{{conditions}}';
    }

    /**
     * Returns the primary key of this table
     *
     * @access public
     * @return string
     */
    public function primaryKey()
    {
        return 'cid';
    }

    /**
     * Defines the relations for this model
     *
     * @access public
     * @return array
     */
    public function relations()
    {
        $alias = $this->getTableAlias();
        return array(
            // TODO should be singular, not plural
            'questions' => array(self::HAS_ONE, 'Question', '',
                'on' => "$alias.cqid = questions.qid",
            ),
        );
    }


    /**
     * @param bool|mixed $condition
     * @return int
     */
    public function deleteRecords($condition = false)
    {
        $criteria = new CDbCriteria();

        if ($condition != false) {
            if (is_array($condition)) {
                foreach ($condition as $column => $value) {
                    $criteria->addCondition("$column='$value'");
                }
            } else {
                $criteria->addCondition($condition);
            }
        }

        return $this->deleteAll($criteria);
    }


    /**
     * Updates the group ID for all conditions
     *
     * @param integer $iSurveyID
     * @param integer $iQuestionID
     * @param integer $iOldGroupID
     * @param integer $iNewGroupID
     */
    public function updateCFieldName($iSurveyID, $iQuestionID, $iOldGroupID, $iNewGroupID)
    {
        $oResults = $this->findAllByAttributes(array('cqid' => $iQuestionID));
        foreach ($oResults as $oRow) {
            $cfnregs = [];
            if (preg_match('/(\S*?)' . $iSurveyID . "X" . $iOldGroupID . "X" . $iQuestionID . "(.*)/", $oRow->cfieldname, $cfnregs) > 0) {
                $sNewCfn = $cfnregs[1] . $iSurveyID . "X" . $iNewGroupID . "X" . $iQuestionID . $cfnregs[2];
                Yii::app()->db->createCommand()
                    ->update(
                        $this->tableName(),
                        array('cfieldname' => $sNewCfn),
                        'cid=:cid',
                        array(':cid' => $oRow->cid)
                    );
                LimeExpressionManager::UpgradeConditionsToRelevance($iSurveyID, $oRow->qid);
            }
        }
    }



    public function insertRecords($data, $update = false, $condition = false)
    {
        $record = new self();
        foreach ($data as $k => $v) {
            $v = str_replace(array("'", '"'), '', (string) $v);
            $record->$k = $v;
        }

        if ($update) {
            $criteria = new CdbCriteria();
            if (is_array($condition)) {
                $criteria->addColumnCondition($condition);
            } else {
                $criteria->where = $condition;
            }

            return $record->updateAll($data, $criteria);
        } else {
            return $record->save();
        }
    }

    /**
     * @param integer $qid
     * @return CDbDataReader
     */
    public function getScenarios($qid)
    {
        $query = "SELECT DISTINCT scenario FROM " . $this->tableName() . " WHERE qid=:qid ORDER BY scenario";
        $command = Yii::app()->db->createCommand($query);
        $command->params = [':qid' => $qid];
        return $command->query();
    }

    /**
     * @param array $fields
     * @param mixed $condition
     * @param string $order
     * @param array $group
     * @return CDbDataReader
     */
    public function getSomeConditions($fields, $condition, $order, $group)
    {
        $record = Yii::app()->db->createCommand()
        ->select($fields)
        ->from($this->tableName())
        ->where($condition);

        if ($order != null) {
            $record->order($order);
        }
        if ($group != null) {
            $record->group($group);
        }

        return $record->query();
    }

    public function getConditionsQuestions($distinctrow, $deqrow, $scenariorow, $surveyprintlang)
    {
        $conquery = "SELECT cid, cqid, q.title, question, value, q.type, cfieldname "
        . "FROM {{conditions}} c "
        . "JOIN {{questions}} q on c.cqid=q.qid "
        . "JOIN {{question_l10ns}} l on l.qid=q.qid "
        . "WHERE c.cqid=:distinctrow "
        . "AND c.qid=:deqrow "
        . "AND c.scenario=:scenariorow "
        . "AND language=:surveyprintlang ";
        return Yii::app()->db->createCommand($conquery)
            ->bindParam(":distinctrow", $distinctrow, PDO::PARAM_INT)
            ->bindParam(":deqrow", $deqrow, PDO::PARAM_INT)
            ->bindParam(":scenariorow", $scenariorow, PDO::PARAM_INT)
            ->bindParam(":surveyprintlang", $surveyprintlang, PDO::PARAM_STR)
            ->query();
    }

    /**
     * @param integer $sid
     * @return mixed
     */
    public function getAllCfieldnameWithDependenciesForOneSurvey($sid)
    {
        $Qids = Yii::app()->db->createCommand()
                ->select('cfieldname')
                ->from('{{questions}} questions')
                ->join('{{conditions}} conditions', 'questions.qid=conditions.cqid')
                ->where('sid=:sid', array(':sid' => $sid))
                ->queryRow();

        return $Qids;
    }

    /**
     * @param int $qid
     * @param string $language
     * @param Condition $scenarionr
     * @return int
     */
    public function getConditionCount($qid, $language, Condition $scenarionr)
    {
        // Need to quote columns for Postgres.
        $db = Yii::app()->db;
        $quotedQL10ns = $db->quoteTableName('questionl10ns');
        $quotedLanguage = $db->quoteColumnName('language');
        $quotedQGL10ns = $db->quoteTableName('questiongroupl10ns');

        $result = Condition::model()->with(array(
            'questions' => array(
                'condition' => 'questions.parent_qid = :parent_qid',
                'params' => array(':parent_qid' => 0)
            ),
            'questions.questionl10ns' => array(
                'condition' => $quotedQL10ns . '.' . $quotedLanguage . ' = :lang1',
                'params' => array(':lang1' => $language)
            ),
            'questions.group',
            'questions.group.questiongroupl10ns' => array(
                'condition' => $quotedQGL10ns . '.' . $quotedLanguage . ' = :lang2',
                'params' => array(':lang2' => $language)
            )
            ))->findAll(
                't.qid = ' . $qid . ' and scenario = ' . $scenarionr['scenario'] . ' and cfieldname NOT LIKE \'{%\''
            );

        return (int) count($result);
    }

    /**
     * @param int $qid
     * @param $language
     * @param Condition $scenarionr
     * @return array
     */
    public function getConditions($qid, $language, Condition $scenarionr)
    {
        // Need to quote columns for Postgres.
        $db = Yii::app()->db;
        $quotedQL10ns = $db->quoteTableName('questionl10ns');
        $quotedLanguage = $db->quoteColumnName('language');
        $quotedQGL10ns = $db->quoteTableName('questiongroupl10ns');

        $results = Condition::model()->with(array(
            'questions' => array(
                'condition' => 'questions.parent_qid = :parent_qid',
                'params' => array(':parent_qid' => 0)
            ),
            'questions.questionl10ns' => array(
                'condition' => $quotedQL10ns . '.' . $quotedLanguage . ' = :lang1',
                'params' => array(':lang1' => $language)
            ),
            'questions.group',
            'questions.group.questiongroupl10ns' => array(
                'condition' => $quotedQGL10ns . '.' . $quotedLanguage . ' = :lang2',
                'params' => array(':lang2' => $language)
            )
            ))->findAll(
                array(
                    'select' => 't.cid, t.scenario, t.cqid, t.cfieldname, t.method, t.value',
                    'condition' => 't.qid = ' . $qid . ' and scenario = ' . $scenarionr['scenario'] . ' and cfieldname NOT LIKE \'{%\''
                )
            );

        $aResults = array();
        $i = 0;
        foreach ($results as $result) {
            $aResults[$i] = $result->attributes;
            $aResults[$i]['type'] = $result->questions->type;
            $i += 1;
        }

        return $aResults;
    }

    /**
     * @param int $qid
     * @param Condition $scenarionr
     * @return int
     * @throws CException
     */
    public function getConditionCountToken($qid, Condition $scenarionr)
    {
        $querytoken = "SELECT count(*) as recordcount "
            . "FROM {{conditions}} "
            . "WHERE "
            . " {{conditions}}.qid=:qid "
            . "AND {{conditions}}.scenario=:scenario "
            . "AND {{conditions}}.cfieldname LIKE '{%' "; // only catching SRCtokenAttr conditions
        $resulttoken = Yii::app()->db->createCommand($querytoken)
            ->bindValue(":scenario", $scenarionr['scenario'], PDO::PARAM_INT)
            ->bindValue(":qid", $qid, PDO::PARAM_INT)
            ->queryRow();

        if (empty($resulttoken)) {
            throw new \CException('Faulty query in getConditionCountToken');
        }

        return (int) $resulttoken['recordcount'];
    }

    /**
     * @param int $qid
     * @param Condition $scenarionr
     * @return CDbDataReader
     */
    public function getConditionsToken($qid, Condition $scenarionr)
    {
        $querytoken = "SELECT {{conditions}}.cid, "
            . "{{conditions}}.scenario, "
            . "{{conditions}}.cqid, "
            . "{{conditions}}.cfieldname, "
            . "{{conditions}}.method, "
            . "{{conditions}}.value, "
            . "'' AS type "
            . "FROM {{conditions}} "
            . "WHERE "
            . " {{conditions}}.qid=:qid "
            . "AND {{conditions}}.scenario=:scenario "
            . "AND {{conditions}}.cfieldname LIKE '{%' " // only catching SRCtokenAttr conditions
            . "ORDER BY {{conditions}}.cfieldname";
        $result = Yii::app()->db->createCommand($querytoken)
            ->bindValue(":scenario", $scenarionr['scenario'], PDO::PARAM_INT)
            ->bindValue(":qid", $qid, PDO::PARAM_INT)
            ->query();
        return $result;
    }
}