2 namespace wcf\system\bulk\processing\user;
3 use wcf\data\user\UserList;
4 use wcf\data\DatabaseObjectList;
6 use wcf\util\StringUtil;
9 * Bulk processing action implementation for exporting mail addresses of users.
11 * @author Matthias Schmidt
12 * @copyright 2001-2019 WoltLab GmbH
13 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
14 * @package WoltLabSuite\Core\System\Bulk\Processing\User
17 class ExportMailAddressUserBulkProcessingAction extends AbstractUserBulkProcessingAction {
19 * type of the file the email addresses will be saved in (csv or xml)
22 public $fileType = 'csv';
25 * separates the exported email addresses
28 public $separator = ',';
31 * encloses the exported email addresses
34 public $textSeparator = '"';
37 * indicates whether output was generated (i.e. executeAction was called)
40 private $executed = false;
45 public function executeAction(DatabaseObjectList $objectList) {
46 if (!($objectList instanceof UserList)) {
47 throw new \InvalidArgumentException("Object list is no instance of '".UserList::class."', instance of '".get_class($objectList)."' given.");
50 $this->executed = true;
53 header('Content-Type: text/'.$this->fileType.'; charset=UTF-8');
54 header('Content-Disposition: attachment; filename="export.'.$this->fileType.'"');
56 if ($this->fileType == 'xml') {
57 echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<addresses>\n";
60 $userCount = count($objectList);
62 foreach ($objectList as $user) {
63 if ($this->fileType == 'xml') {
64 echo "<address><![CDATA[".StringUtil::escapeCDATA($user->email)."]]></address>\n";
67 echo $this->textSeparator.$user->email.$this->textSeparator.($i < $userCount ? $this->separator : '');
73 if ($this->fileType == 'xml') {
81 public function getHTML() {
82 return WCF::getTPL()->fetch('exportMailAddressUserBulkProcessing', 'wcf', [
83 'fileType' => $this->fileType,
84 'separator' => $this->separator,
85 'textSeparator' => $this->textSeparator
92 public function getObjectList() {
93 $userList = parent::getObjectList();
95 $userList->sqlOrderBy = 'user_table.email';
103 public function readFormParameters() {
104 if (isset($_POST['fileType']) && $_POST['fileType'] == 'xml') $this->fileType = $_POST['fileType'];
105 if (isset($_POST['separator'])) $this->separator = $_POST['separator'];
106 if (isset($_POST['textSeparator'])) $this->textSeparator = $_POST['textSeparator'];
112 public function reset() {
113 if (!$this->executed) return;
114 $this->executed = false;