b3137f0bf5efbd8a37c6305090b047c2ced794c6
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\moderation\queue\report;
3 use wcf\data\moderation\queue\ModerationQueue;
4 use wcf\data\moderation\queue\ViewableModerationQueue;
5 use wcf\data\user\User;
6 use wcf\data\user\UserProfile;
7 use wcf\system\cache\runtime\UserRuntimeCache;
8 use wcf\system\exception\SystemException;
9 use wcf\system\moderation\queue\AbstractModerationQueueHandler;
10 use wcf\system\moderation\queue\ModerationQueueManager;
11 use wcf\system\WCF;
12
13 /**
14 * An implementation of IModerationQueueReportHandler for user profiles.
15 *
16 * @author Marcel Werk
17 * @copyright 2001-2016 WoltLab GmbH
18 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
19 * @package com.woltlab.wcf
20 * @subpackage system.moderation.queue
21 * @category Community Framework
22 */
23 class UserModerationQueueReportHandler extends AbstractModerationQueueHandler implements IModerationQueueReportHandler {
24 /**
25 * @inheritDoc
26 */
27 protected $className = User::class;
28
29 /**
30 * @inheritDoc
31 */
32 protected $definitionName = 'com.woltlab.wcf.moderation.report';
33
34 /**
35 * @inheritDoc
36 */
37 protected $objectType = 'com.woltlab.wcf.user';
38
39 /**
40 * @inheritDoc
41 */
42 public function assignQueues(array $queues) {
43 $assignments = [];
44 foreach ($queues as $queue) {
45 $assignUser = false;
46 if (WCF::getSession()->getPermission('mod.general.canUseModeration')) {
47 $assignUser = true;
48 }
49
50 $assignments[$queue->queueID] = $assignUser;
51 }
52
53 ModerationQueueManager::getInstance()->setAssignment($assignments);
54 }
55
56 /**
57 * @inheritDoc
58 */
59 public function canReport($objectID) {
60 if (!$this->isValid($objectID)) {
61 return false;
62 }
63
64 return true;
65 }
66
67 /**
68 * @inheritDoc
69 */
70 public function getContainerID($objectID) {
71 return 0;
72 }
73
74 /**
75 * @inheritDoc
76 */
77 public function getReportedContent(ViewableModerationQueue $queue) {
78 /** @noinspection PhpParamsInspection */
79 WCF::getTPL()->assign([
80 'user' => new UserProfile($queue->getAffectedObject())
81 ]);
82
83 return WCF::getTPL()->fetch('moderationUser');
84 }
85
86 /**
87 * @inheritDoc
88 */
89 public function getReportedObject($objectID) {
90 if ($this->isValid($objectID)) {
91 return $this->getUser($objectID);
92 }
93
94 return null;
95 }
96
97 /**
98 * @inheritDoc
99 */
100 public function isValid($objectID) {
101 if ($this->getUser($objectID) === null) {
102 return false;
103 }
104
105 return true;
106 }
107
108 /**
109 * Returns a user object by user id or null if user id is invalid.
110 *
111 * @param integer $objectID
112 * @return User|null
113 */
114 protected function getUser($objectID) {
115 return UserRuntimeCache::getInstance()->getObject($objectID);
116 }
117
118 /**
119 * @inheritDoc
120 */
121 public function populate(array $queues) {
122 $objectIDs = [];
123 foreach ($queues as $object) {
124 $objectIDs[] = $object->objectID;
125 }
126
127 $users = UserRuntimeCache::getInstance()->getObjects($objectIDs);
128 foreach ($queues as $object) {
129 if ($users[$object->objectID] !== null) {
130 $object->setAffectedObject($users[$object->objectID]);
131 }
132 else {
133 $object->setIsOrphaned();
134 }
135 }
136 }
137
138 /**
139 * @inheritDoc
140 */
141 public function canRemoveContent(ModerationQueue $queue) {
142 return false;
143 }
144
145 /**
146 * @inheritDoc
147 */
148 public function removeContent(ModerationQueue $queue, $message) {
149 throw new SystemException("it's not allowed to delete users using the moderation");
150 }
151 }