7c9743c94da95763e4c128b41784d33068ec1cb8
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\bulk\processing\user;
3 use wcf\data\user\group\UserGroup;
4 use wcf\data\user\UserEditor;
5 use wcf\data\user\UserList;
6 use wcf\data\DatabaseObject;
7 use wcf\data\DatabaseObjectList;
8 use wcf\system\exception\UserInputException;
9 use wcf\system\user\storage\UserStorageHandler;
10 use wcf\system\WCF;
11 use wcf\util\ArrayUtil;
12
13 /**
14 * Abstract implementation of a user bulk processing action related to selecting
15 * user groups.
16 *
17 * @author Matthias Schmidt
18 * @copyright 2001-2016 WoltLab GmbH
19 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
20 * @package WoltLabSuite\Core\System\Bulk\Processing\User
21 * @since 3.0
22 */
23 abstract class AbstractUserGroupsUserBulkProcessingAction extends AbstractUserBulkProcessingAction {
24 /**
25 * list of available user groups
26 * @var UserGroup[]
27 */
28 public $availableUserGroups = [];
29
30 /**
31 * name of the inputs used to store the selected user group ids
32 * @var string
33 */
34 public $inputName = '';
35
36 /**
37 * ids of selected user groups
38 * @var integer[]
39 */
40 public $userGroupIDs = [];
41
42 /**
43 * @inheritDoc
44 */
45 public function __construct(DatabaseObject $object) {
46 parent::__construct($object);
47
48 $this->availableUserGroups = UserGroup::getAccessibleGroups([], [UserGroup::GUESTS, UserGroup::EVERYONE, UserGroup::USERS]);
49
50 uasort($this->availableUserGroups, function(UserGroup $groupA, UserGroup $groupB) {
51 return strcmp($groupA->getName(), $groupB->getName());
52 });
53 }
54
55 /**
56 * @inheritDoc
57 */
58 public function executeAction(DatabaseObjectList $objectList) {
59 if (!($objectList instanceof UserList)) {
60 throw new \InvalidArgumentException("Object list is no instance of '".UserList::class."', instance of '".get_class($objectList)."' given.");
61 }
62
63 $users = $this->getAccessibleUsers($objectList);
64
65 if (!empty($users)) {
66 WCF::getDB()->beginTransaction();
67 foreach ($users as $user) {
68 $user = new UserEditor($user);
69 $this->executeUserAction($user);
70 }
71 WCF::getDB()->commitTransaction();
72
73 UserStorageHandler::getInstance()->reset(array_keys($users), 'groupIDs');
74 }
75 }
76
77 /**
78 * Execute the action for the given user.
79 *
80 * @param UserEditor $user
81 */
82 abstract protected function executeUserAction(UserEditor $user);
83
84 /**
85 * @inheritDoc
86 */
87 public function getHTML() {
88 return WCF::getTPL()->fetch('userGroupListUserBulkProcessing', 'wcf', [
89 'availableUserGroups' => $this->availableUserGroups,
90 'inputName' => $this->inputName,
91 'selectedUserGroupIDs' => $this->userGroupIDs
92 ]);
93 }
94
95 /**
96 * @inheritDoc
97 */
98 public function isAvailable() {
99 return !empty($this->availableUserGroups);
100 }
101
102 /**
103 * @inheritDoc
104 */
105 public function readFormParameters() {
106 if (isset($_POST[$this->inputName])) $this->userGroupIDs = ArrayUtil::toIntegerArray($_POST[$this->inputName]);
107 }
108
109 /**
110 * @inheritDoc
111 */
112 public function reset() {
113 $this->userGroupIDs = [];
114 }
115
116 /**
117 * @inheritDoc
118 */
119 public function validate() {
120 if (empty($this->userGroupIDs)) {
121 throw new UserInputException($this->inputName);
122 }
123
124 foreach ($this->userGroupIDs as $groupID) {
125 if (!isset($this->availableUserGroups[$groupID])) {
126 throw new UserInputException($this->inputName, 'noValidSelection');
127 }
128 }
129 }
130 }