1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/data/user/UserAction.class.php

128 lines
4.4 KiB
PHP
Raw Normal View History

<?php
namespace chat\data\user;
use wcf\system\WCF;
/**
* User related chat actions.
*
* @author Maximilian Mader
* @copyright 2010-2014 Tim Düsterhus
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.chat
* @subpackage data.user
*/
class UserAction extends \wcf\data\AbstractDatabaseObjectAction {
/**
* @see \wcf\data\AbstractDatabaseObjectAction::$className
*/
protected $className = 'wcf\data\user\UserEditor';
/**
* Validates updating of chat user options
*/
public function validateUpdateOption() {
$this->readString('optionName');
$this->readBoolean('optionValue');
if (!preg_match('~^chat[A-Z]~', $this->parameters['optionName'])) throw new \wcf\system\exception\UserInputException('optionName');
$this->optionID = \wcf\data\user\User::getUserOptionID($this->parameters['optionName']);
if (!$this->optionID) throw new \wcf\system\exception\UserInputException('optionName');
}
/**
* Updates chat user options
*/
public function updateOption() {
$userAction = new \wcf\data\user\UserAction(array(WCF::getUser()), 'update', array(
'options' => array(
$this->optionID => $this->parameters['optionValue'] ? 1 : 0
)
));
$userAction->executeAction();
}
2015-03-21 00:03:15 +00:00
/**
* Validates invite preparation.
*/
2014-12-09 22:57:25 +00:00
public function validatePrepareInvite() {
2014-12-13 14:02:36 +00:00
WCF::getSession()->checkPermissions(array('user.chat.canInvite'));
if (!WCF::getUser()->chatRoomID) throw new \wcf\system\exception\PermissionDeniedException();
$room = \chat\data\room\RoomCache::getInstance()->getRoom(WCF::getUser()->chatRoomID);
if ($room === null) throw new \wcf\system\exception\IllegalLinkException();
if (!$room->canEnter()) throw new \wcf\system\exception\PermissionDeniedException();
2014-12-09 22:57:25 +00:00
}
/**
* Prepares invites.
*/
2014-12-09 22:57:25 +00:00
public function prepareInvite() {
$followingList = new \wcf\data\user\follow\UserFollowingList();
$followingList->getConditionBuilder()->add('user_follow.userID = ?', array(WCF::getUser()->userID));
$followingList->readObjects();
$users = $followingList->getObjects();
2014-12-12 22:15:58 +00:00
$json = array();
foreach ($users as $user) {
$json[] = array(
'userID' => $user->userID,
'username' => $user->username
);
}
2014-12-09 22:57:25 +00:00
return array(
2014-12-12 22:15:58 +00:00
'users' => $json
2014-12-09 22:57:25 +00:00
);
}
/**
* Validates invites.
*/
2014-12-09 22:57:25 +00:00
public function validateInvite() {
2014-12-13 14:02:36 +00:00
WCF::getSession()->checkPermissions(array('user.chat.canInvite'));
2014-12-09 22:57:25 +00:00
2014-12-13 14:02:36 +00:00
if (!WCF::getUser()->chatRoomID) throw new \wcf\system\exception\PermissionDeniedException();
$this->room = \chat\data\room\RoomCache::getInstance()->getRoom(WCF::getUser()->chatRoomID);
if ($this->room === null) throw new \wcf\system\exception\IllegalLinkException();
if (!$this->room->canEnter()) throw new \wcf\system\exception\PermissionDeniedException();
2014-12-13 14:02:36 +00:00
if (!isset($this->parameters['recipients'])) throw new \wcf\system\exception\UserInputException("recipients");
$this->parameters['recipients'] = \wcf\util\ArrayUtil::toIntegerArray($this->parameters['recipients']);
$ignoredByList = new \wcf\data\user\ignore\UserIgnoreList();
$ignoredByList->getConditionBuilder()->add('user_ignore.ignoreUserID = ?', array(WCF::getUser()->userID));
$ignoredByList->getConditionBuilder()->add('user_ignore.userID IN (?)', array($this->parameters['recipients']));
if (!empty($ignoredByList->sqlSelects)) $ignoredByList->sqlSelects .= ',';
$ignoredByList->sqlSelects .= "user_ignore.ignoreID";
$ignoredByList->sqlSelects .= ", user_table.username";
$ignoredByList->sqlJoins .= " LEFT JOIN wcf".WCF_N."_user user_table ON (user_table.userID = user_ignore.userID)";
$ignoredByList->readObjects();
$ignoredByUsers = $ignoredByList->getObjects();
if (!empty($ignoredByUsers)) {
$usernames = array();
foreach ($ignoredByUsers as $user) {
$usernames[] = $user->username;
}
throw new \wcf\system\exception\UserInputException("recipients", WCF::getLanguage()->getDynamicVariable('chat.error.invite.ignored', array('users' => $ignoredByUsers, 'usernames' => $usernames)));
}
2014-12-09 22:57:25 +00:00
}
/**
* Invites users.
*/
2014-12-09 22:57:25 +00:00
public function invite() {
\wcf\system\user\notification\UserNotificationHandler::getInstance()->fireEvent('invited', 'be.bastelstu.chat.room', new \chat\system\user\notification\object\RoomUserNotificationObject($this->room), $this->parameters['recipients'], array('userID' => WCF::getUser()->userID));
2014-12-09 22:57:25 +00:00
}
}