Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / views / src / Plugin / views / pager / SqlBase.php
1 <?php
2
3 namespace Drupal\views\Plugin\views\pager;
4
5 use Drupal\Core\Cache\Cache;
6 use Drupal\Core\Cache\CacheableDependencyInterface;
7 use Drupal\Core\Form\FormStateInterface;
8
9 /**
10  * A common base class for sql based pager.
11  */
12 abstract class SqlBase extends PagerPluginBase implements CacheableDependencyInterface {
13
14   protected function defineOptions() {
15     $options = parent::defineOptions();
16     $options['items_per_page'] = ['default' => 10];
17     $options['offset'] = ['default' => 0];
18     $options['id'] = ['default' => 0];
19     $options['total_pages'] = ['default' => ''];
20     $options['expose'] = [
21       'contains' => [
22         'items_per_page' => ['default' => FALSE],
23         'items_per_page_label' => ['default' => $this->t('Items per page')],
24         'items_per_page_options' => ['default' => '5, 10, 25, 50'],
25         'items_per_page_options_all' => ['default' => FALSE],
26         'items_per_page_options_all_label' => ['default' => $this->t('- All -')],
27
28         'offset' => ['default' => FALSE],
29         'offset_label' => ['default' => $this->t('Offset')],
30       ],
31     ];
32     $options['tags'] = [
33       'contains' => [
34         'previous' => ['default' => $this->t('‹ Previous')],
35         'next' => ['default' => $this->t('Next ›')],
36       ],
37     ];
38     return $options;
39   }
40
41   /**
42    * Provide the default form for setting options.
43    */
44   public function buildOptionsForm(&$form, FormStateInterface $form_state) {
45     parent::buildOptionsForm($form, $form_state);
46     $pager_text = $this->displayHandler->getPagerText();
47     $form['items_per_page'] = [
48       '#title' => $pager_text['items per page title'],
49       '#type' => 'number',
50       '#description' => $pager_text['items per page description'],
51       '#default_value' => $this->options['items_per_page'],
52     ];
53
54     $form['offset'] = [
55       '#type' => 'number',
56       '#title' => $this->t('Offset (number of items to skip)'),
57       '#description' => $this->t('For example, set this to 3 and the first 3 items will not be displayed.'),
58       '#default_value' => $this->options['offset'],
59     ];
60
61     $form['id'] = [
62       '#type' => 'number',
63       '#title' => $this->t('Pager ID'),
64       '#description' => $this->t("Unless you're experiencing problems with pagers related to this view, you should leave this at 0. If using multiple pagers on one page you may need to set this number to a higher value so as not to conflict within the ?page= array. Large values will add a lot of commas to your URLs, so avoid if possible."),
65       '#default_value' => $this->options['id'],
66     ];
67
68     $form['total_pages'] = [
69       '#type' => 'number',
70       '#title' => $this->t('Number of pages'),
71       '#description' => $this->t('Leave empty to show all pages.'),
72       '#default_value' => $this->options['total_pages'],
73     ];
74
75     $form['tags'] = [
76       '#type' => 'details',
77       '#open' => TRUE,
78       '#tree' => TRUE,
79       '#title' => $this->t('Pager link labels'),
80       '#input' => TRUE,
81     ];
82
83     $form['tags']['previous'] = [
84       '#type' => 'textfield',
85       '#title' => $this->t('Previous page link text'),
86       '#default_value' => $this->options['tags']['previous'],
87     ];
88
89     $form['tags']['next'] = [
90       '#type' => 'textfield',
91       '#title' => $this->t('Next page link text'),
92       '#default_value' => $this->options['tags']['next'],
93     ];
94
95     $form['expose'] = [
96       '#type' => 'details',
97       '#open' => TRUE,
98       '#tree' => TRUE,
99       '#title' => $this->t('Exposed options'),
100       '#input' => TRUE,
101       '#description' => $this->t('Allow user to control selected display options for this view.'),
102     ];
103
104     $form['expose']['items_per_page'] = [
105       '#type' => 'checkbox',
106       '#title' => $this->t('Allow user to control the number of items displayed in this view'),
107       '#default_value' => $this->options['expose']['items_per_page'],
108     ];
109
110     $form['expose']['items_per_page_label'] = [
111       '#type' => 'textfield',
112       '#title' => $this->t('Items per page label'),
113       '#required' => TRUE,
114       '#default_value' => $this->options['expose']['items_per_page_label'],
115       '#states' => [
116         'invisible' => [
117           'input[name="pager_options[expose][items_per_page]"]' => ['checked' => FALSE],
118         ],
119       ],
120     ];
121
122     $form['expose']['items_per_page_options'] = [
123       '#type' => 'textfield',
124       '#title' => $this->t('Exposed items per page options'),
125       '#required' => TRUE,
126       '#description' => $this->t('Set between which values the user can choose when determining the items per page. Separated by comma.'),
127       '#default_value' => $this->options['expose']['items_per_page_options'],
128       '#states' => [
129         'invisible' => [
130           'input[name="pager_options[expose][items_per_page]"]' => ['checked' => FALSE],
131         ],
132       ],
133     ];
134
135     $form['expose']['items_per_page_options_all'] = [
136       '#type' => 'checkbox',
137       '#title' => $this->t('Allow user to display all items'),
138       '#default_value' => $this->options['expose']['items_per_page_options_all'],
139     ];
140
141     $form['expose']['items_per_page_options_all_label'] = [
142       '#type' => 'textfield',
143       '#title' => $this->t('All items label'),
144       '#default_value' => $this->options['expose']['items_per_page_options_all_label'],
145       '#states' => [
146         'invisible' => [
147           'input[name="pager_options[expose][items_per_page_options_all]"]' => ['checked' => FALSE],
148         ],
149       ],
150     ];
151
152     $form['expose']['offset'] = [
153       '#type' => 'checkbox',
154       '#title' => $this->t('Allow user to specify number of items skipped from beginning of this view.'),
155       '#default_value' => $this->options['expose']['offset'],
156     ];
157
158     $form['expose']['offset_label'] = [
159       '#type' => 'textfield',
160       '#title' => $this->t('Offset label'),
161       '#required' => TRUE,
162       '#default_value' => $this->options['expose']['offset_label'],
163       '#states' => [
164         'invisible' => [
165           'input[name="pager_options[expose][offset]"]' => ['checked' => FALSE],
166         ],
167       ],
168     ];
169   }
170
171   public function validateOptionsForm(&$form, FormStateInterface $form_state) {
172     // Only accept integer values.
173     $error = FALSE;
174     $exposed_options = $form_state->getValue(['pager_options', 'expose', 'items_per_page_options']);
175     if (strpos($exposed_options, '.') !== FALSE) {
176       $error = TRUE;
177     }
178     $options = explode(',', $exposed_options);
179     if (!$error && is_array($options)) {
180       foreach ($options as $option) {
181         if (!is_numeric($option) || intval($option) == 0) {
182           $error = TRUE;
183         }
184       }
185     }
186     else {
187       $error = TRUE;
188     }
189     if ($error) {
190       $form_state->setErrorByName('pager_options][expose][items_per_page_options', $this->t('Insert a list of integer numeric values separated by commas: e.g: 10, 20, 50, 100'));
191     }
192
193     // Make sure that the items_per_page is part of the expose settings.
194     if (!$form_state->isValueEmpty(['pager_options', 'expose', 'items_per_page']) && !$form_state->isValueEmpty(['pager_options', 'items_per_page'])) {
195       $items_per_page = $form_state->getValue(['pager_options', 'items_per_page']);
196       if (array_search($items_per_page, $options) === FALSE) {
197         $form_state->setErrorByName('pager_options][expose][items_per_page_options', $this->t("The <em>Exposed items per page</em> field's options must include the value from the <em>Items per page</em> field (@items_per_page).",
198           ['@items_per_page' => $items_per_page])
199         );
200       }
201     }
202   }
203
204   public function query() {
205     if ($this->itemsPerPageExposed()) {
206       $query = $this->view->getRequest()->query;
207       $items_per_page = $query->get('items_per_page');
208       if ($items_per_page > 0) {
209         $this->options['items_per_page'] = $items_per_page;
210       }
211       elseif ($items_per_page == 'All' && $this->options['expose']['items_per_page_options_all']) {
212         $this->options['items_per_page'] = 0;
213       }
214     }
215     if ($this->isOffsetExposed()) {
216       $query = $this->view->getRequest()->query;
217       $offset = $query->get('offset');
218       if (isset($offset) && $offset >= 0) {
219         $this->options['offset'] = $offset;
220       }
221     }
222
223     $limit = $this->options['items_per_page'];
224     $offset = $this->current_page * $this->options['items_per_page'] + $this->options['offset'];
225     if (!empty($this->options['total_pages'])) {
226       if ($this->current_page >= $this->options['total_pages']) {
227         $limit = $this->options['items_per_page'];
228         $offset = $this->options['total_pages'] * $this->options['items_per_page'];
229       }
230     }
231
232     $this->view->query->setLimit($limit);
233     $this->view->query->setOffset($offset);
234   }
235
236   /**
237    * Set the current page.
238    *
239    * @param $number
240    *   If provided, the page number will be set to this. If NOT provided,
241    *   the page number will be set from the global page array.
242    */
243   public function setCurrentPage($number = NULL) {
244     if (isset($number)) {
245       $this->current_page = max(0, $number);
246       return;
247     }
248
249     // If the current page number was not specified, extract it from the global
250     // page array.
251     global $pager_page_array;
252
253     if (empty($pager_page_array)) {
254       $pager_page_array = [];
255     }
256
257     // Fill in missing values in the global page array, in case the global page
258     // array hasn't been initialized before.
259     $page = $this->view->getRequest()->query->get('page');
260     $page = isset($page) ? explode(',', $page) : [];
261
262     for ($i = 0; $i <= $this->options['id'] || $i < count($pager_page_array); $i++) {
263       $pager_page_array[$i] = empty($page[$i]) ? 0 : $page[$i];
264     }
265
266     // Don't allow the number to be less than zero.
267     $this->current_page = max(0, intval($pager_page_array[$this->options['id']]));
268   }
269
270   public function getPagerTotal() {
271     if ($items_per_page = intval($this->getItemsPerPage())) {
272       return ceil($this->total_items / $items_per_page);
273     }
274     else {
275       return 1;
276     }
277   }
278
279   /**
280    * Update global paging info.
281    *
282    * This is called after the count query has been run to set the total
283    * items available and to update the current page if the requested
284    * page is out of range.
285    */
286   public function updatePageInfo() {
287     if (!empty($this->options['total_pages'])) {
288       if (($this->options['total_pages'] * $this->options['items_per_page']) < $this->total_items) {
289         $this->total_items = $this->options['total_pages'] * $this->options['items_per_page'];
290       }
291     }
292
293     // Don't set pager settings for items per page = 0.
294     $items_per_page = $this->getItemsPerPage();
295     if (!empty($items_per_page)) {
296       // Dump information about what we already know into the globals.
297       global $pager_page_array, $pager_total, $pager_total_items, $pager_limits;
298       // Set the limit.
299       $pager_limits[$this->options['id']] = $this->options['items_per_page'];
300       // Set the item count for the pager.
301       $pager_total_items[$this->options['id']] = $this->total_items;
302       // Calculate and set the count of available pages.
303       $pager_total[$this->options['id']] = $this->getPagerTotal();
304
305       // See if the requested page was within range:
306       if ($this->current_page >= $pager_total[$this->options['id']]) {
307         // Pages are numbered from 0 so if there are 10 pages, the last page is 9.
308         $this->setCurrentPage($pager_total[$this->options['id']] - 1);
309       }
310
311       // Put this number in to guarantee that we do not generate notices when the pager
312       // goes to look for it later.
313       $pager_page_array[$this->options['id']] = $this->current_page;
314     }
315   }
316
317   public function usesExposed() {
318     return $this->itemsPerPageExposed() || $this->isOffsetExposed();
319   }
320
321   protected function itemsPerPageExposed() {
322     return !empty($this->options['expose']['items_per_page']);
323   }
324
325   protected function isOffsetExposed() {
326     return !empty($this->options['expose']['offset']);
327   }
328
329   public function exposedFormAlter(&$form, FormStateInterface $form_state) {
330     if ($this->itemsPerPageExposed()) {
331       $options = explode(',', $this->options['expose']['items_per_page_options']);
332       $sanitized_options = [];
333       if (is_array($options)) {
334         foreach ($options as $option) {
335           $sanitized_options[intval($option)] = intval($option);
336         }
337         if (!empty($this->options['expose']['items_per_page_options_all']) && !empty($this->options['expose']['items_per_page_options_all_label'])) {
338           $sanitized_options['All'] = $this->options['expose']['items_per_page_options_all_label'];
339         }
340         $form['items_per_page'] = [
341           '#type' => 'select',
342           '#title' => $this->options['expose']['items_per_page_label'],
343           '#options' => $sanitized_options,
344           '#default_value' => $this->getItemsPerPage(),
345         ];
346       }
347     }
348
349     if ($this->isOffsetExposed()) {
350       $form['offset'] = [
351         '#type' => 'textfield',
352         '#size' => 10,
353         '#maxlength' => 10,
354         '#title' => $this->options['expose']['offset_label'],
355         '#default_value' => $this->getOffset(),
356       ];
357     }
358   }
359
360   public function exposedFormValidate(&$form, FormStateInterface $form_state) {
361     if (!$form_state->isValueEmpty('offset') && trim($form_state->getValue('offset'))) {
362       if (!is_numeric($form_state->getValue('offset')) || $form_state->getValue('offset') < 0) {
363         $form_state->setErrorByName('offset', $this->t('Offset must be a number greater than or equal to 0.'));
364       }
365     }
366   }
367
368   /**
369    * {@inheritdoc}
370    */
371   public function getCacheMaxAge() {
372     return Cache::PERMANENT;
373   }
374
375   /**
376    * {@inheritdoc}
377    */
378   public function getCacheContexts() {
379     // The rendered link needs to play well with any other query parameter used
380     // on the page, like other pagers and exposed filter.
381     return ['url.query_args'];
382   }
383
384   /**
385    * {@inheritdoc}
386    */
387   public function getCacheTags() {
388     return [];
389   }
390
391 }