// // ------------------------------------------------------------------------ // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation; either version 2 of the License, or // // (at your option) any later version. // // // // You may not change or alter any portion of this comment or credits // // of supporting developers from this source code or any supporting // // source code which is considered copyrighted (c) material of the // // original comment or credit authors. // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program; if not, write to the Free Software // // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // ------------------------------------------------------------------------ // // Author: Kazumi Ono (AKA onokazu) // // URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ // // Project: The XOOPS Project // // ------------------------------------------------------------------------- // include_once XOOPS_ROOT_PATH."/class/xoopsobject.php"; class XoopsPollLog extends XoopsObject { var $db; // constructor function XoopsPollLog($id=null) { $this->db =& Database::getInstance(); $this->initVar("log_id", XOBJ_DTYPE_INT, 0); $this->initVar("poll_id", XOBJ_DTYPE_INT, null, true); $this->initVar("option_id", XOBJ_DTYPE_INT, null, true); $this->initVar("ip", XOBJ_DTYPE_OTHER, null); $this->initVar("user_id", XOBJ_DTYPE_INT, 0); $this->initVar("time", XOBJ_DTYPE_INT, null); if ( !empty($id) ) { if ( is_array($id) ) { $this->assignVars($id); } else { $this->load(intval($id)); } } } // public function store() { if ( !$this->cleanVars() ) { return false; } foreach ( $this->cleanVars as $k=>$v ) { $$k = $v; } $log_id = $this->db->genId($this->db->prefix("xoopspoll_log")."_log_id_seq"); $sql = "INSERT INTO ".$this->db->prefix("xoopspoll_log")." (log_id, poll_id, option_id, ip, user_id, time) VALUES ($log_id, $poll_id, $option_id, ".$this->db->quoteString($ip).", $user_id, ".time().")"; $result = $this->db->query($sql); if (!$result) { $this->setErrors("Could not store log data in the database."); return false; } return $option_id; } // private function load($id) { $sql = "SELECT * FROM ".$this->db->prefix("xoopspoll_log")." WHERE log_id=".$id.""; $myrow = $this->db->fetchArray($this->db->query($sql)); $this->assignVars($myrow); } // public function delete() { $sql = sprintf("DELETE FROM %s WHERE log_id = %u", $this->db->prefix("xoopspoll_log"), $this->getVar("log_id")); if ( !$this->db->query($sql) ) { return false; } return true; } // public static function &getAllByPollId($poll_id, $orderby="time ASC") { $db =& Database::getInstance(); $ret = array(); $sql = "SELECT * FROM ".$db->prefix("xoopspoll_log")." WHERE poll_id=".intval($poll_id)." ORDER BY $orderby"; $result = $db->query($sql); while ( $myrow = $db->fetchArray($result) ) { $ret[] = new XoopsPollLog($myrow); } //echo $sql; return $ret; } // public static function hasVoted($poll_id, $ip, $user_id=null) { $db =& Database::getInstance(); $sql = "SELECT COUNT(*) FROM ".$db->prefix("xoopspoll_log")." WHERE poll_id=".intval($poll_id)." AND"; if ( !empty($user_id) ) { $sql .= " user_id=".intval($user_id); } else { $sql .= " ip='".$ip."'"; } list($count) = $db->fetchRow($db->query($sql)); if ( $count > 0 ) { return true; } return false; } // public static function deleteByPollId($poll_id) { $db =& Database::getInstance(); $sql = sprintf("DELETE FROM %s WHERE poll_id = %u", $db->prefix("xoopspoll_log"), intval($poll_id)); if ( !$db->query($sql) ) { return false; } return true; } // public static function deleteByOptionId($option_id) { $db =& Database::getInstance(); $sql = sprintf("DELETE FROM %s WHERE option_id = %u", $db->prefix("xoopspoll_log"), intval($option_id)); if ( !$db->query($sql) ) { return false; } return true; } // public static function getTotalVotersByPollId($poll_id) { $db =& Database::getInstance(); $sql = "SELECT DISTINCT user_id FROM ".$db->prefix("xoopspoll_log")." WHERE poll_id=".intval($poll_id)." AND user_id > 0"; $users = $db->getRowsNum($db->query($sql)); $sql = "SELECT DISTINCT ip FROM ".$db->prefix("xoopspoll_log")." WHERE poll_id=".intval($poll_id)." AND user_id=0"; $anons = $db->getRowsNum($db->query($sql)); return $users+$anons; } // public static function getTotalVotesByPollId($poll_id) { $db =& Database::getInstance(); $sql = "SELECT COUNT(*) FROM ".$db->prefix("xoopspoll_log")." WHERE poll_id = ".intval($poll_id); list($votes) = $db->fetchRow($db->query($sql)); return $votes; } // public static function getTotalVotesByOptionId($option_id) { $db =& Database::getInstance(); $sql = "SELECT COUNT(*) FROM ".$db->prefix("xoopspoll_log")." WHERE option_id = ".intval($option_id); list($votes) = $db->fetchRow($db->query($sql)); return $votes; } } ?>