-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathContactRecipientAddForm.class.php
More file actions
201 lines (170 loc) · 5.39 KB
/
ContactRecipientAddForm.class.php
File metadata and controls
201 lines (170 loc) · 5.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
namespace wcf\acp\form;
use wcf\data\contact\recipient\ContactRecipient;
use wcf\data\contact\recipient\ContactRecipientAction;
use wcf\data\contact\recipient\ContactRecipientEditor;
use wcf\form\AbstractForm;
use wcf\system\email\Mailbox;
use wcf\system\exception\UserInputException;
use wcf\system\language\I18nHandler;
use wcf\system\request\LinkHandler;
use wcf\system\WCF;
/**
* Shows the form to create a new contact form recipient.
*
* @author Alexander Ebert
* @copyright 2001-2019 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
*/
class ContactRecipientAddForm extends AbstractForm
{
/**
* @inheritDoc
*/
public $activeMenuItem = 'wcf.acp.menu.link.contact.recipients.add';
/**
* @inheritDoc
*/
public $neededModules = ['MODULE_CONTACT_FORM'];
/**
* @inheritDoc
*/
public $neededPermissions = ['admin.contact.canManageContactForm'];
/**
* email address
* @var string
*/
public $email = '';
/**
* display name
* @var string
*/
public $name = '';
/**
* 1 if the recipient is disabled
* @var int
*/
public $isDisabled = 0;
/**
* order used to the show the recipients
* @var int
*/
public $showOrder = 0;
/**
* @inheritDoc
*/
public function readParameters()
{
parent::readParameters();
I18nHandler::getInstance()->register('email');
I18nHandler::getInstance()->register('name');
}
/**
* @inheritDoc
*/
public function readFormParameters()
{
parent::readFormParameters();
I18nHandler::getInstance()->readValues();
if (I18nHandler::getInstance()->isPlainValue('email')) {
$this->email = I18nHandler::getInstance()->getValue('email');
}
if (I18nHandler::getInstance()->isPlainValue('name')) {
$this->name = I18nHandler::getInstance()->getValue('name');
}
if (isset($_POST['isDisabled'])) {
$this->isDisabled = \intval($_POST['isDisabled']);
}
if (isset($_POST['showOrder'])) {
$this->showOrder = \intval($_POST['showOrder']);
}
}
/**
* @inheritDoc
*/
public function validate()
{
parent::validate();
if (!I18nHandler::getInstance()->validateValue('email')) {
if (I18nHandler::getInstance()->isPlainValue('email')) {
throw new UserInputException('email');
} else {
throw new UserInputException('email', 'multilingual');
}
} else {
foreach (I18nHandler::getInstance()->getValues('email') as $email) {
try {
new Mailbox($email);
} catch (\DomainException $e) {
throw new UserInputException('email', 'invalid');
}
}
}
if (!I18nHandler::getInstance()->validateValue('name')) {
if (I18nHandler::getInstance()->isPlainValue('name')) {
throw new UserInputException('name');
} else {
throw new UserInputException('name', 'multilingual');
}
}
}
/**
* @inheritDoc
*/
public function save()
{
parent::save();
$this->objectAction = new ContactRecipientAction([], 'create', [
'data' => \array_merge($this->additionalFields, [
'name' => $this->name,
'email' => $this->email,
'isDisabled' => ($this->isDisabled ? 1 : 0),
'showOrder' => $this->showOrder,
]),
]);
/** @var ContactRecipient $recipient */
$recipient = $this->objectAction->executeAction()['returnValues'];
$recipientID = $recipient->recipientID;
$data = [];
if (!I18nHandler::getInstance()->isPlainValue('email')) {
I18nHandler::getInstance()->save('email', 'wcf.contact.recipient.email' . $recipientID, 'wcf.contact', 1);
$data['email'] = 'wcf.contact.recipient.email' . $recipientID;
}
if (!I18nHandler::getInstance()->isPlainValue('name')) {
I18nHandler::getInstance()->save('name', 'wcf.contact.recipient.name' . $recipientID, 'wcf.contact', 1);
$data['name'] = 'wcf.contact.recipient.name' . $recipientID;
}
// update i18n values
if (!empty($data)) {
(new ContactRecipientEditor($recipient))->update($data);
}
$this->saved();
// show success message
WCF::getTPL()->assign([
'success' => true,
'objectEditLink' => LinkHandler::getInstance()->getControllerLink(
ContactRecipientEditForm::class,
['id' => $recipientID]
),
]);
// reset values
$this->email = $this->name = '';
$this->isDisabled = $this->showOrder = 0;
I18nHandler::getInstance()->reset();
}
/**
* @inheritDoc
*/
public function assignVariables()
{
parent::assignVariables();
I18nHandler::getInstance()->assignVariables();
WCF::getTPL()->assign([
'action' => 'add',
'email' => $this->email,
'name' => $this->name,
'isDisabled' => $this->isDisabled,
'showOrder' => $this->showOrder,
]);
}
}