foldershare-8.x-1.2/src/Plugin/FolderShareCommand/CopyMoveBase.php

src/Plugin/FolderShareCommand/CopyMoveBase.php
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<?php
 
namespace Drupal\foldershare\Plugin\FolderShareCommand;
 
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Entity\View;
 
use Symfony\Component\HttpKernel\Exception\ConflictHttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
 
use Drupal\foldershare\Constants;
use Drupal\foldershare\ManageLog;
use Drupal\foldershare\Form\UIAncestorMenu;
use Drupal\foldershare\Entity\FolderShare;
use Drupal\foldershare\FolderShareInterface;
 
/**
 * Defines a command plugin base class to copy or move files and folders.
 *
 * @ingroup foldershare
 */
abstract class CopyMoveBase extends FolderShareCommandBase {
 
  /*--------------------------------------------------------------------
   *
   * Configuration form.
   *
   *--------------------------------------------------------------------*/
 
  /**
   * {@inheritdoc}
   */
  public function hasConfigurationForm() {
    // Copy and move both require a destination ID. If there isn't one
    // yet, then a configuration form is required.
    return ($this->getDestinationId() === self::EMPTY_ITEM_ID);
  }
 
  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(
    array $form,
    FormStateInterface $formState) {
 
    //
    // Validate destination.
    // ---------------------
    // Get the destination ID from the form state, or use a default.
    $destinationId = NULL;
 
    // If there is prior form state, and it includes a destination ID,
    // then get it. The ID might still be NULL, or it might be a word
    // naming a root list.
    if ($formState !== NULL) {
      $userInput = $formState->getUserInput();
      if (isset($userInput['destinationid']) === TRUE) {
        $destinationId = $userInput['destinationid'];
        // The destination ID coming back from the UI could be an integer
        // ID, or one of several words like "personal", "public", and "all",
        // to indicate specific root lists.
      }
    }
 
    // If the destination ID is still NULL, then default to the current parent.
    if ($destinationId === NULL) {
      $destinationId = $this->getParentId();
      if ($destinationId < 0) {
        $destinationId = FolderShareInterface::USER_ROOT_LIST;
      }
    }
 
    // Convert special root list names to negative numbers that flag the
    // equivalent root lists. This lets us pass around and compare integers,
    // rather than consider string values as well.
    switch ($destinationId) {
      case FolderShareInterface::USER_ROOT_LIST:
      case 'personal':
        $destinationId = FolderShareInterface::USER_ROOT_LIST;
        $displayName = Constants::VIEW_DISPLAY_DIALOG_PERSONAL;
        break;
 
      case FolderShareInterface::PUBLIC_ROOT_LIST:
      case 'public':
        // The public root list, and its children, is never an allowed
        // destination. Public items are created as shared-with-anonymous
        // and then managed via the personal list by the owner and those
        // the owner allows author access.
        //
        // So, treat 'public' as 'personal'.
        $destinationId = FolderShareInterface::USER_ROOT_LIST;
        $displayName = Constants::VIEW_DISPLAY_DIALOG_PERSONAL;
        break;
 
      case FolderShareInterface::ALL_ROOT_LIST:
      case 'all':
        $destinationId = FolderShareInterface::ALL_ROOT_LIST;
        $displayName = Constants::VIEW_DISPLAY_DIALOG_ALL;
        break;
 
      default:
        $destinationId = (int) $destinationId;
        $displayName = Constants::VIEW_DISPLAY_DIALOG_FOLDER;
        if ($destinationId < 0) {
          $destinationId = FolderShareInterface::USER_ROOT_LIST;
          $displayName = Constants::VIEW_DISPLAY_DIALOG_PERSONAL;
        }
        break;
    }
 
    // And save the destination ID.
    $this->setDestinationId($destinationId);
 
    //
    // Set up view.
    // ------------
    // Find the embedded view and display, confirming that both exist and
    // that the user has access. Log errors if something is wrong.
    $error          = FALSE;
    $view           = NULL;
    $viewExecutable = NULL;
    $displayConfig  = NULL;
    $viewName       = Constants::VIEW_LISTS;
 
    if (($view = View::load($viewName)) === NULL ||
        ($viewExecutable = $view->getExecutable()) === NULL) {
      // Unknown view!
      ManageLog::critical(
        "Misconfigured website: The required view '%viewName' is missing.\nPlease check the views module configuration and, if needed, restore the view from the module's configuration page.",
        [
          '%viewName'   => $viewName,
        ]);
      $error = TRUE;
    }
    elseif ($viewExecutable->setDisplay($displayName) === FALSE) {
      // Unknown display!
      ManageLog::critical(
        "Misconfigured website: The required '%displayName' display for the '%viewName' view is missing.\nPlease check the views module configuration and, if needed, restore the view from the module's configuration page.",
        [
          '%viewName'    => $viewName,
          '%displayName' => $displayName,
        ]);
      $error = TRUE;
    }
    elseif ($viewExecutable->getDisplay()->ajaxEnabled() === FALSE) {
      // AJAX is not enabled.
      ManageLog::critical(
        "Misconfigured website: The '%displayName' display of the '%viewName' view does not have AJAX enabled.\nThe file and folder user interface will not function without AJAX. Please enable it or restore the view to defaults by using the module's configuration page.",
        [
          '%viewName'    => $viewName,
          '%displayName' => $displayName,
        ]);
      $error = TRUE;
    }
    elseif ($viewExecutable->access($displayName) === FALSE) {
      // Access denied to view display.
      $error = TRUE;
    }
    else {
      // Verify that the view is properly configured.
      try {
        $displayConfig = $view->getDisplay($displayName);
        if ($displayConfig === NULL) {
          $error = TRUE;
        }
      }
      catch (\Exception $e) {
        $error = TRUE;
      }
 
      if ($error === TRUE) {
        ManageLog::critical(
          "Misconfigured website: The required '%displayName' display for the '%viewName' view is missing.\nPlease check the views module configuration and, if needed, restore the view using the module's configuration page.",
          [
            '%viewName'    => $viewName,
            '%displayName' => $displayName,
          ]);
      }
      elseif (isset($displayConfig['display_options']['fields']['name']) === FALSE) {
        ManageLog::critical(
          "Misconfigured website: The '%fieldName' field is missing in the '%displayName' display of the '%viewName' view.\nThe field MUST be included and use the module's '%formatterName' field formatter. This formatter adds essential data to the name column that is needed by the user interface. Please reconfigure the field formatter or restore the view to defaults by using the module's configuration page.",
          [
            '%fieldName'     => 'name',
            '%viewName'      => $viewName,
            '%displayName'   => $displayName,
            '%formatterName' => Constants::INTERNAL_FOLDER_NAME_FORMATTER,
          ]);
        $error = TRUE;
      }
      elseif ($displayConfig['display_options']['fields']['name']['type'] !== Constants::INTERNAL_FOLDER_NAME_FORMATTER) {
        ManageLog::critical(
          "Misconfigured website: The '%fieldName' field does not use the required field formatter on the '%displayName' display of the '%viewName' view.\nThe field MUST use the module's '%formatterName' field formatter. This formatter adds essential data to the name column that is needed by the user interface. Please reconfigure the field formatter or restore the view to defaults by using the module's configuration page.",
          [
            '%fieldName'     => 'name',
            '%viewName'      => $viewName,
            '%displayName'   => $displayName,
            '%formatterName' => Constants::INTERNAL_FOLDER_NAME_FORMATTER,
          ]);
        $error = TRUE;
      }
    }
 
    // If the view could not be found, there is nothing to embed and there
    // is no point in adding a UI. Return an error message in place of the
    // view's content.
    if ($error === TRUE) {
      $form['destinationselector'] = [
        '#attributes' => [
          'class'   => [
            'foldershare-error',
          ],
        ],
 
        // Do not cache this page. If any of the above conditions change,
        // the page needs to be regenerated.
        '#cache' => [
          'max-age' => 0,
        ],
 
        '#weight'   => 10,
 
        'error'     => [
          '#type'   => 'item',
          '#markup' => t(
            "The website has encountered an administrator configuration problem with this page.\nPlease report this to the website administrator."),
        ],
      ];
      return $form;
    }
 
    //
    // Build view.
    // -----------
    // Add an embedded view to show the destination folder.
    //
    // Include hidden fields containing the current destination ID,
    // and the current destination selection ID. Add a hidden refresh
    // button that, when clicked by Javascript, triggers use of the
    // destination ID to create a new folder list.
    $form['foldershare-folder-selection'] = [
      '#type'       => 'container',
      '#name'       => 'foldershare-folder-selection',
      '#weight'     => 10,
      '#attributes' => [
        'class'     => [
          'foldershare-folder-selection',
        ],
      ],
 
      // Add prefix/suffix so that this entire section of the content is
      // replaced whenever the view needs to be refreshed for a new
      // destination.
      '#prefix'     => '<div id="foldershare-refresh"',
      '#suffix'     => '</div>',
 
      // Do not cache this. If anybody adds or removes a folder or changes
      // sharing, the view will change and this needs to be regenerated.
      '#cache'        => [
        'max-age'     => 0,
      ],
 
      // Include a hidden text field filled in by Javascript as the user
      // selects new destination folders by double-clicks or selecting from
      // the ancestor menu.
      'destinationid' => [
        '#type'           => 'textfield',
        '#name'           => 'destinationid',
        '#default_value'  => $destinationId,
        '#attributes'     => [
          'class'         => [
            'hidden',
          ],
        ],
      ],
 
      // Include a hidden refresh button "clicked" by Javascript each time the
      // destination ID above is changed. Below we add AJAX callbacks
      // to trigger a refresh of this part of the form.
      'refresh'           => [
        '#type'           => 'button',
        '#name'           => 'refresh',
        '#value'          => 'Refresh',
        '#attributes'     => [
          'class'         => [
            'hidden',
          ],
        ],
      ],
 
      // Include a hidden text field filled in by Javascript if the user
      // selects, but does not double-click, a folder in the list. This
      // becomes the selected destination. If nothing is selected, then
      // the parent of the current view is the destination.
      'selectionid' => [
        '#type'           => 'textfield',
        '#name'           => 'selectionid',
        '#default_value'  => self::EMPTY_ITEM_ID,
        '#attributes'     => [
          'class'         => [
            'hidden',
          ],
        ],
      ],
 
      // Include a toolbar with an ancestor menu like that found on
      // regular folder lists. Javascript adjusts the ancestor menu
      // so that it selects destination folders rather than jumping
      // to a new page.
      'toolbar'       => [
        '#type'       => 'container',
        '#attributes' => [
          'class'     => [
            'foldershare-toolbar',
          ],
        ],
 
        'ancestormenu' => UIAncestorMenu::build($destinationId, FALSE),
      ],
 
      // Add the view showing the destination folder.
      'view'          => [
        '#type'       => 'view',
        '#name'       => $viewName,
        '#embed'      => TRUE,
        '#display_id' => $displayName,
        '#arguments'  => [$destinationId],
        '#attributes' => [
          'autofocus' => 'autofocus',
          'class'     => [
            'foldershare-folder-selection-table',
          ],
        ],
      ],
    ];
 
    // When AJAX is in use, copy the AJAX configuration from the submit
    // button and use it for the refresh button as well.
    //
    // @todo What to do if AJAX is not in use?
    if (isset($form['actions']['submit']['#ajax']) === TRUE) {
      // Copy the main dialog AJAX configuration. This gets us the right
      // submit URL, etc.
      $form['foldershare-folder-selection']['refresh']['#ajax'] =
        $form['actions']['submit']['#ajax'];
 
      // Override the submit callback since we don't want to submit the
      // form on a refresh.
      $form['foldershare-folder-selection']['refresh']['#ajax']['callback'] =
        [$this, 'refreshConfigurationFormAjax'];
 
      // Set the wrapper for the part of the dialog to refresh.
      $form['foldershare-folder-selection']['refresh']['#ajax']['wrapper'] =
        'foldershare-refresh';
    }
 
    return $form;
  }
 
  /**
   * {@inheritdoc}
   */
  public function validateConfigurationForm(
    array &$form,
    FormStateInterface $formState) {
 
    //
    // Validate trigger.
    // -----------------
    // Ignore triggers other than 'submit' and 'refresh'.
    $triggerName = $formState->getTriggeringElement()['#name'];
    if ($triggerName !== 'refresh' && $triggerName !== 'submit') {
      // @todo Is this right? Simply returning from validation will cause
      // the caller to call submit function next.
      return;
    }
 
    //
    // Validate form input.
    // --------------------
    // Get the user's input to the form, if any, and the current parent.
    $userInput     = $formState->getUserInput();
    $destinationId = $userInput['destinationid'];
    $selectionId   = $userInput['selectionid'];
 
    if ($selectionId === NULL) {
      $selectionId = self::EMPTY_ITEM_ID;
    }
 
    // If the destination ID is NULL or negative:
    // - For a submit, if there is a selection then use it as the destination.
    // - Otherwise use the current parent as the destination.
    if ($destinationId === NULL || $destinationId < 0) {
      if ($triggerName === 'submit' && $selectionId >= 0) {
        $destinationId = $selectionId;
      }
      else {
        $destinationId = $this->getParentId();
        if ($destinationId < 0) {
          $destinationId = FolderShareInterface::USER_ROOT_LIST;
        }
      }
    }
 
    // Convert special root list names to negative numbers that flag the
    // equivalent root lists. This lets us pass around and compare integers,
    // rather than consider string values as well.
    switch ($destinationId) {
      case FolderShareInterface::USER_ROOT_LIST:
      case 'personal':
        $destinationId = FolderShareInterface::USER_ROOT_LIST;
        break;
 
      case FolderShareInterface::PUBLIC_ROOT_LIST:
      case 'public':
        // The public root list is not supported. Map it to the personal list.
        $destinationId = FolderShareInterface::USER_ROOT_LIST;
        break;
 
      case FolderShareInterface::ALL_ROOT_LIST:
      case 'all':
        $destinationId = FolderShareInterface::ALL_ROOT_LIST;
        break;
 
      default:
        if (is_numeric($destinationId) === FALSE) {
          throw new NotFoundHttpException(t(
            "A top-level item with ID '@id' could not be found.",
            [
              '@id' => $destinationId,
            ]));
        }
 
        $destinationId = (int) $destinationId;
        if ($destinationId < 0) {
          $destinationId = FolderShareInterface::USER_ROOT_LIST;
        }
        else {
          $destination = FolderShare::load($destinationId);
 
          if ($destination === NULL ||
              $destination->isSystemHidden() === TRUE) {
            throw new NotFoundHttpException(
              FolderShare::getStandardHiddenMessage($destination->getName()));
          }
 
          if ($destination->isSystemDisabled() === TRUE) {
            throw new ConflictHttpException(
              FolderShare::getStandardDisabledMessage(
                'accessed',
                $destination->getName()));
          }
        }
        break;
    }
 
    // Save the destination.
    $this->configuration['destinationId'] = $destinationId;
 
    //
    // Dispatch based on trigger.
    // --------------------------
    // For a refresh, rebuild the form. For a submit, validate it.
    if ($triggerName === 'refresh') {
      $formState->setRebuild(TRUE);
      return;
    }
 
    // Submit button pressed. Validate everything.
    try {
      $this->validateConfiguration();
    }
    catch (RuntimeExceptionWithMarkup $e) {
      $formState->setErrorByName('destinationid', $e->getMarkup());
    }
    catch (\Exception $e) {
      $formState->setErrorByName('destinationid', $e->getMessage());
    }
  }
 
  /**
   * Refresh the configuration form.
   *
   * @param array $form
   *   The render array for the form.
   * @param \Drupal\Core\Form\FormStateInterface $formState
   *   The form state.
   *
   * @return array
   *   Returns a portion of the form to be refreshed.
   */
  public function refreshConfigurationFormAjax(
    array &$form,
    FormStateInterface $formState) {
 
    // Just return the part of the rebuilt form that has the folder
    // selection. This is the part to refresh.
    return $form['foldershare-folder-selection'];
  }
 
  /**
   * {@inheritdoc}
   */
  public function submitConfigurationForm(
    array &$form,
    FormStateInterface $formState) {
 
    if ($this->isValidated() === TRUE) {
      if ($this->getDestinationId() === $this->getParentId()) {
        // Move to same location. Do nothing. No error.
        return;
      }
 
      $this->execute();
    }
  }
 
}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc