164 lines
4.8 KiB
PHP
164 lines
4.8 KiB
PHP
<?php if(!defined('APPLICATION')) exit();
|
|
/* Copyright 2013 Zachary Doll */
|
|
|
|
/**
|
|
* All is the base class for controllers throughout the gamification applicati0n.
|
|
*
|
|
* @since 1.0
|
|
* @package Yaga
|
|
*/
|
|
class ReactController extends Gdn_Controller {
|
|
|
|
/** @var array List of objects to prep. They will be available as $this->$Name. */
|
|
public $Uses = array('ActionModel', 'ReactionModel');
|
|
|
|
/**
|
|
* If you use a constructor, always call parent.
|
|
* Delete this if you don't need it.
|
|
*
|
|
* @access public
|
|
*/
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* This is a good place to include JS, CSS, and modules used by all methods of this controller.
|
|
*
|
|
* Always called by dispatcher before controller's requested method.
|
|
*
|
|
* @since 1.0
|
|
* @access public
|
|
*/
|
|
public function Initialize() {
|
|
parent::Initialize();
|
|
if(!$this->Request->IsPostBack()) {
|
|
throw PermissionException('Javascript');
|
|
}
|
|
}
|
|
|
|
public function Index() {
|
|
decho($this);
|
|
$this->Render('Blank', 'Utility', 'Dashboard');
|
|
}
|
|
|
|
public function Discussion($DiscussionID, $ActionID) {
|
|
// check to see if allowed to react
|
|
$this->Permission('Plugins.Reactions.Add');
|
|
|
|
if(!$this->ActionModel->ActionExists($ActionID)) {
|
|
throw new Gdn_UserException('Invalid Action');
|
|
}
|
|
|
|
$DiscussionModel = new DiscussionModel();
|
|
$Discussion = $DiscussionModel->GetID($DiscussionID);
|
|
|
|
if($Discussion) {
|
|
$Anchor = '#Discussion_' . $DiscussionID . ' .ReactMenu';
|
|
}
|
|
else {
|
|
throw new Gdn_UserException('Invalid ID');
|
|
}
|
|
|
|
$UserID = Gdn::Session()->UserID;
|
|
|
|
if($Discussion->InsertUserID == $UserID) {
|
|
throw new Gdn_UserException('You cannot react to your own content.');
|
|
}
|
|
|
|
// It has passed through the gauntlet
|
|
$this->ReactionModel->SetReaction($DiscussionID, 'discussion', $Discussion->InsertUserID, $UserID, $ActionID);
|
|
|
|
$this->JsonTarget($Anchor, $this->_RenderActions($DiscussionID, 'discussion', FALSE), 'ReplaceWith');
|
|
|
|
$this->Render('Blank', 'Utility', 'Dashboard');
|
|
}
|
|
|
|
public function Comment($CommentID, $ActionID) {
|
|
// check to see if allowed to react
|
|
$this->Permission('Plugins.Reactions.Add');
|
|
|
|
if(!$this->ActionModel->ActionExists($ActionID)) {
|
|
throw new Gdn_UserException('Invalid Action');
|
|
}
|
|
|
|
$CommentModel = new CommentModel();
|
|
$Comment = $CommentModel->GetID($CommentID);
|
|
|
|
if($Comment) {
|
|
$Anchor = '#Comment_' . $CommentID . ' .ReactMenu';
|
|
}
|
|
else {
|
|
throw new Gdn_UserException('Invalid ID');
|
|
}
|
|
|
|
$UserID = Gdn::Session()->UserID;
|
|
|
|
if($Comment->InsertUserID == $UserID) {
|
|
throw new Gdn_UserException('You cannot react to your own content.');
|
|
}
|
|
|
|
// It has passed through the gauntlet
|
|
$this->ReactionModel->SetReaction($CommentID, 'comment', $Comment->InsertUserID, $UserID, $ActionID);
|
|
|
|
$this->JsonTarget($Anchor, $this->_RenderActions($CommentID, 'comment', FALSE), 'ReplaceWith');
|
|
|
|
$this->Render('Blank', 'Utility', 'Dashboard');
|
|
}
|
|
|
|
public function Activity($ActivityID, $ActionID) {
|
|
// check to see if allowed to react
|
|
$this->Permission('Plugins.Reactions.Add');
|
|
|
|
if(!$this->ActionModel->ActionExists($ActionID)) {
|
|
throw new Gdn_UserException('Invalid Action');
|
|
}
|
|
|
|
$ActivityModel = new ActivityModel();
|
|
$Activity = $ActivityModel->GetID($ActivityID);
|
|
|
|
if($Activity) {
|
|
$Anchor = '#Activity_' . $ActivityID . ' .ReactMenu';
|
|
}
|
|
else {
|
|
throw new Gdn_UserException('Invalid ID');
|
|
}
|
|
|
|
$UserID = Gdn::Session()->UserID;
|
|
|
|
if($Activity->InsertUserID == $UserID) {
|
|
throw new Gdn_UserException('You cannot react to your own content.');
|
|
}
|
|
|
|
// It has passed through the gauntlet
|
|
$this->ReactionModel->SetReaction($ActivityID, 'activity', $Activity->InsertUserID, $UserID, $ActionID);
|
|
|
|
$this->JsonTarget($Anchor, $this->_RenderActions($ActivityID, 'activity', FALSE), 'ReplaceWith');
|
|
|
|
$this->Render('Blank', 'Utility', 'Dashboard');
|
|
}
|
|
|
|
private function _RenderActions($ID, $Type, $Echo = TRUE) {
|
|
$Reactions = $this->ReactionModel->GetReactions($ID, $Type);
|
|
$ActionsString = '';
|
|
foreach($Reactions as $Action) {
|
|
$ActionsString .= Anchor(
|
|
Wrap(' ', 'span', array('class' => 'ReactSprite React-' . $Action->ActionID . ' ' . $Action->CssClass)) .
|
|
WrapIf(count($Action->UserIDs), 'span', array('class' => 'Count')) .
|
|
Wrap($Action->Name, 'span', array('class' => 'ReactLabel')), 'react/' . $Type . '/' . $ID . '/' . $Action->ActionID,
|
|
'Hijack ReactButton'
|
|
);
|
|
}
|
|
|
|
$AllActionsString = Wrap($ActionsString, 'span', array('class' => 'ReactMenu'));
|
|
|
|
if($Echo) {
|
|
echo $AllActionsString;
|
|
}
|
|
else {
|
|
return $AllActionsString;
|
|
}
|
|
|
|
}
|
|
}
|