Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / specialpage / FormSpecialPage.php
1 <?php
2 /**
3 * Special page which uses an HTMLForm to handle processing.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Special page which uses an HTMLForm to handle processing. This is mostly a
26 * clone of FormAction. More special pages should be built this way; maybe this could be
27 * a new structure for SpecialPages.
28 *
29 * @ingroup SpecialPage
30 */
31 abstract class FormSpecialPage extends SpecialPage {
32 /**
33 * The sub-page of the special page.
34 * @var string
35 */
36 protected $par = null;
37
38 /**
39 * Get an HTMLForm descriptor array
40 * @return array
41 */
42 abstract protected function getFormFields();
43
44 /**
45 * Add pre-text to the form
46 * @return string HTML which will be sent to $form->addPreText()
47 */
48 protected function preText() {
49 return '';
50 }
51
52 /**
53 * Add post-text to the form
54 * @return string HTML which will be sent to $form->addPostText()
55 */
56 protected function postText() {
57 return '';
58 }
59
60 /**
61 * Play with the HTMLForm if you need to more substantially
62 * @param HTMLForm $form
63 */
64 protected function alterForm( HTMLForm $form ) {
65 }
66
67 /**
68 * Get message prefix for HTMLForm
69 *
70 * @since 1.21
71 * @return string
72 */
73 protected function getMessagePrefix() {
74 return strtolower( $this->getName() );
75 }
76
77 /**
78 * Get display format for the form. See HTMLForm documentation for available values.
79 *
80 * @since 1.25
81 * @return string
82 */
83 protected function getDisplayFormat() {
84 return 'table';
85 }
86
87 /**
88 * Get the HTMLForm to control behavior
89 * @return HTMLForm|null
90 */
91 protected function getForm() {
92 $form = HTMLForm::factory(
93 $this->getDisplayFormat(),
94 $this->getFormFields(),
95 $this->getContext(),
96 $this->getMessagePrefix()
97 );
98 $form->setSubmitCallback( [ $this, 'onSubmit' ] );
99 if ( $this->getDisplayFormat() !== 'ooui' ) {
100 // No legend and wrapper by default in OOUI forms, but can be set manually
101 // from alterForm()
102 $form->setWrapperLegendMsg( $this->getMessagePrefix() . '-legend' );
103 }
104
105 $headerMsg = $this->msg( $this->getMessagePrefix() . '-text' );
106 if ( !$headerMsg->isDisabled() ) {
107 $form->addHeaderText( $headerMsg->parseAsBlock() );
108 }
109
110 // Retain query parameters (uselang etc)
111 $params = array_diff_key(
112 $this->getRequest()->getQueryValues(), [ 'title' => null ] );
113 $form->addHiddenField( 'redirectparams', wfArrayToCgi( $params ) );
114
115 $form->addPreText( $this->preText() );
116 $form->addPostText( $this->postText() );
117 $this->alterForm( $form );
118
119 // Give hooks a chance to alter the form, adding extra fields or text etc
120 Hooks::run( 'SpecialPageBeforeFormDisplay', [ $this->getName(), &$form ] );
121
122 return $form;
123 }
124
125 /**
126 * Process the form on POST submission.
127 * @param array $data
128 * @param HTMLForm $form
129 * @return bool|string|array|Status As documented for HTMLForm::trySubmit.
130 */
131 abstract public function onSubmit( array $data /* $form = null */ );
132
133 /**
134 * Do something exciting on successful processing of the form, most likely to show a
135 * confirmation message
136 * @since 1.22 Default is to do nothing
137 */
138 public function onSuccess() {
139 }
140
141 /**
142 * Basic SpecialPage workflow: get a form, send it to the user; get some data back,
143 *
144 * @param string $par Subpage string if one was specified
145 */
146 public function execute( $par ) {
147 $this->setParameter( $par );
148 $this->setHeaders();
149
150 // This will throw exceptions if there's a problem
151 $this->checkExecutePermissions( $this->getUser() );
152
153 $form = $this->getForm();
154 if ( $form->show() ) {
155 $this->onSuccess();
156 }
157 }
158
159 /**
160 * Maybe do something interesting with the subpage parameter
161 * @param string $par
162 */
163 protected function setParameter( $par ) {
164 $this->par = $par;
165 }
166
167 /**
168 * Called from execute() to check if the given user can perform this action.
169 * Failures here must throw subclasses of ErrorPageError.
170 * @param User $user
171 * @throws UserBlockedError
172 */
173 protected function checkExecutePermissions( User $user ) {
174 $this->checkPermissions();
175
176 if ( $this->requiresUnblock() && $user->isBlocked() ) {
177 $block = $user->getBlock();
178 throw new UserBlockedError( $block );
179 }
180
181 if ( $this->requiresWrite() ) {
182 $this->checkReadOnly();
183 }
184 }
185
186 /**
187 * Whether this action requires the wiki not to be locked
188 * @return bool
189 */
190 public function requiresWrite() {
191 return true;
192 }
193
194 /**
195 * Whether this action cannot be executed by a blocked user
196 * @return bool
197 */
198 public function requiresUnblock() {
199 return true;
200 }
201 }