Вход Регистрация
Файл: system/controllers/comments/actions/rate.php
Строк: 32
<?php

class actionCommentsRate extends cmsAction {

    public function 
run(){

        if (!
$this->request->isAjax()){ cmsCore::error404(); }

        
$comment_id $this->request->get('comment_id');
        
$score $this->request->get('score');

        
// Проверяем валидность
        
$is_valid is_numeric($comment_id) &&
                    
in_array($score, array(-11));

        
$template cmsTemplate::getInstance();

        if (!
$is_valid){ $template->renderJSON(array('error' => true)); }

        
$user cmsUser::getInstance();

        
$is_can_rate cmsUser::isAllowed('comments''rate');

        if (!
$is_can_rate){ $template->renderJSON(array('error' => true)); }

        
$is_voted $this->model->isUserVoted($comment_id$user->id);

        if (
$is_voted){ $template->renderJSON(array('error' => true)); }

        
$comment $this->model->getComment($comment_id);

        if (
$comment['user_id'] == $user->id) { $template->renderJSON(array('error' => true)); }

        
$success $this->model->rateComment($comment_id$user->id$score);

        
$template->renderJSON(array('error' => !$success));

    }

}
Онлайн: 2
Реклама