1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-02 22:45:02 +03:00
ifhub.club/application/classes/modules/vote/mapper/Vote.mapper.class.php

108 lines
2.9 KiB
PHP
Raw Normal View History

2009-06-28 01:35:26 +03:00
<?php
2014-10-08 08:20:29 +03:00
/*
* LiveStreet CMS
* Copyright © 2013 OOO "ЛС-СОФТ"
*
* ------------------------------------------------------
*
* Official site: www.livestreetcms.com
* Contact e-mail: office@livestreetcms.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* ------------------------------------------------------
*
* @link http://www.livestreetcms.com
* @copyright 2013 OOO "ЛС-СОФТ"
* @author Maxim Mzhelskiy <rus.engine@gmail.com>
*
*/
2009-06-28 01:35:26 +03:00
/**
* Маппер для работы с БД
*
2014-10-08 08:20:29 +03:00
* @package application.modules.vote
* @since 1.0
*/
class ModuleVote_MapperVote extends Mapper
{
/**
* Добавляет голосование
*
* @param ModuleVote_EntityVote $oVote Объект голосования
* @return bool
*/
public function AddVote(ModuleVote_EntityVote $oVote)
{
$sql = "INSERT INTO " . Config::Get('db.table.vote') . "
2009-06-28 01:35:26 +03:00
(target_id,
target_type,
user_voter_id,
vote_direction,
vote_value,
vote_date,
vote_ip
2009-06-28 01:35:26 +03:00
)
VALUES(?d, ?, ?d, ?d, ?f, ?, ?)
";
if ($this->oDb->query($sql, $oVote->getTargetId(), $oVote->getTargetType(), $oVote->getVoterId(),
$oVote->getDirection(), $oVote->getValue(), $oVote->getDate(), $oVote->getIp()) === 0
) {
return true;
}
return false;
}
/**
* Получить список голосований по списку айдишников
*
* @param array $aArrayId Список ID владельцев
* @param string $sTargetType Тип владельца
* @param int $sUserId ID пользователя
* @return array
*/
public function GetVoteByArray($aArrayId, $sTargetType, $sUserId)
{
if (!is_array($aArrayId) or count($aArrayId) == 0) {
return array();
}
$sql = "SELECT
2009-06-28 01:35:26 +03:00
*
FROM
" . Config::Get('db.table.vote') . "
2009-06-28 01:35:26 +03:00
WHERE
target_id IN(?a)
AND
target_type = ?
AND
user_voter_id = ?d ";
$aVotes = array();
if ($aRows = $this->oDb->select($sql, $aArrayId, $sTargetType, $sUserId)) {
foreach ($aRows as $aRow) {
$aVotes[] = Engine::GetEntity('Vote', $aRow);
}
}
return $aVotes;
}
/**
* Удаляет голосование из базы по списку идентификаторов таргета
*
* @param array|int $aTargetId Список ID владельцев
* @param string $sTargetType Тип владельца
* @return bool
*/
public function DeleteVoteByTarget($aTargetId, $sTargetType)
{
$sql = "
DELETE FROM " . Config::Get('db.table.vote') . "
WHERE
target_id IN(?a)
AND
target_type = ?
";
$res = $this->oDb->query($sql, $aTargetId, $sTargetType);
return $this->IsSuccessful($res);
}
}