-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathDataProviderEntity.php
1351 lines (1224 loc) · 47.3 KB
/
DataProviderEntity.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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* @file
* Contains \Drupal\restful\Plugin\resource\DataProvider\DataProviderEntity.
*/
namespace Drupal\restful\Plugin\resource\DataProvider;
use Drupal\Component\Plugin\Exception\PluginNotFoundException;
use Doctrine\Common\Collections\ArrayCollection;
use Drupal\restful\Exception\ForbiddenException;
use Drupal\restful\Exception\InternalServerErrorException;
use Drupal\restful\Exception\ServerConfigurationException;
use Drupal\restful\Exception\InaccessibleRecordException;
use Drupal\restful\Http\Request;
use Drupal\restful\Http\RequestInterface;
use Drupal\restful\Plugin\resource\Decorators\CacheDecoratedResource;
use Drupal\restful\Plugin\resource\Field\ResourceFieldEntityAlterableInterface;
use Drupal\restful\Plugin\resource\Field\ResourceFieldResourceInterface;
use Drupal\restful\Plugin\resource\ResourceEntity;
use Drupal\restful\Plugin\resource\DataInterpreter\DataInterpreterEMW;
use Drupal\restful\Plugin\resource\DataInterpreter\DataInterpreterInterface;
use Drupal\restful\Plugin\resource\Field\ResourceFieldCollectionInterface;
use Drupal\restful\Plugin\resource\Field\ResourceFieldEntity;
use Drupal\restful\Exception\BadRequestException;
use Drupal\restful\Exception\UnprocessableEntityException;
use Drupal\restful\Plugin\resource\Field\ResourceFieldInterface;
use Drupal\restful\Plugin\resource\Resource;
use Drupal\restful\Plugin\resource\ResourceInterface;
use Drupal\restful\Util\ExplorableDecoratorInterface;
use Drupal\restful\Util\RelationalFilter;
use Drupal\restful\Util\RelationalFilterInterface;
use Drupal\entity_validator\ValidatorPluginManager;
/**
* Class DataProviderEntity.
*
* @package Drupal\restful\Plugin\resource\DataProvider
*/
class DataProviderEntity extends DataProvider implements DataProviderEntityInterface {
/**
* The entity type.
*
* @var string
*/
protected $entityType;
/**
* The entity bundles.
*
* @var array
*/
protected $bundles = array();
/**
* The entity field query class.
*
* @var string
*/
protected $EFQClass = '\Drupal\restful\Util\EntityFieldQuery';
/**
* Constructor.
*
* @param RequestInterface $request
* The request.
* @param ResourceFieldCollectionInterface $field_definitions
* The field definitions.
* @param object $account
* The account object.
* @param string $plugin_id
* The resource ID.
* @param string $resource_path
* The resource path.
* @param array $options
* The plugin definition options for the data provider.
* @param string $langcode
* The entity language code.
*
* @throws InternalServerErrorException
* If there is no entity type.
* @throws ServerConfigurationException
* If the field mappings are not for entities.
*/
public function __construct(RequestInterface $request, ResourceFieldCollectionInterface $field_definitions, $account, $plugin_id, $resource_path, array $options, $langcode = NULL) {
parent::__construct($request, $field_definitions, $account, $plugin_id, $resource_path, $options, $langcode);
if (empty($options['entityType'])) {
// Entity type is mandatory.
throw new InternalServerErrorException('The entity type was not provided.');
}
$this->entityType = $options['entityType'];
$options += array('bundles' => array());
if ($options['bundles']) {
$this->bundles = $options['bundles'];
}
elseif ($options['bundles'] !== FALSE) {
// If no bundles are passed, then assume all the bundles of the entity
// type.
$entity_info = entity_get_info($this->entityType);
$this->bundles = !empty($entity_info['bundles']) ? array_keys($entity_info['bundles']) : $entity_info['type'];
}
if (isset($options['EFQClass'])) {
$this->EFQClass = $options['EFQClass'];
}
$this->setResourcePath($resource_path);
if (empty($this->options['urlParams'])) {
$this->options['urlParams'] = array(
'filter' => TRUE,
'sort' => TRUE,
'fields' => TRUE,
'loadByFieldName' => TRUE,
);
}
}
/**
* {@inheritdoc}
*/
public function getCacheFragments($identifier) {
if (is_array($identifier)) {
// Like in https://example.org/api/articles/1,2,3.
$identifier = implode(ResourceInterface::IDS_SEPARATOR, $identifier);
}
$fragments = new ArrayCollection(array(
'resource' => CacheDecoratedResource::serializeKeyValue($this->pluginId, $this->canonicalPath($identifier)),
'entity' => CacheDecoratedResource::serializeKeyValue($this->entityType, $this->getEntityIdByFieldId($identifier)),
));
$options = $this->getOptions();
switch ($options['renderCache']['granularity']) {
case DRUPAL_CACHE_PER_USER:
if ($uid = $this->getAccount()->uid) {
$fragments->set('user_id', (int) $uid);
}
break;
case DRUPAL_CACHE_PER_ROLE:
$fragments->set('user_role', implode(',', $this->getAccount()->roles));
break;
}
return $fragments;
}
/**
* Defines default sort fields if none are provided via the request URL.
*
* @return array
* Array keyed by the public field name, and the order ('ASC' or 'DESC') as
* value.
*/
protected function defaultSortInfo() {
return empty($this->options['sort']) ? array('id' => 'ASC') : $this->options['sort'];
}
/**
* {@inheritdoc}
*/
public function getIndexIds() {
$result = $this
->getQueryForList()
->execute();
if (empty($result[$this->entityType])) {
return array();
}
$entity_ids = array_keys($result[$this->entityType]);
if (empty($this->options['idField'])) {
return $entity_ids;
}
// Get the list of IDs.
$resource_field = $this->fieldDefinitions->get($this->options['idField']);
$ids = array();
foreach ($entity_ids as $entity_id) {
$interpreter = new DataInterpreterEMW($this->getAccount(), new \EntityDrupalWrapper($this->entityType, $entity_id));
$ids[] = $resource_field->value($interpreter);
}
return $ids;
}
/**
* {@inheritdoc}
*/
public function count() {
$query = $this->getQueryCount();
return intval($query->execute());
}
/**
* {@inheritdoc}
*/
public function create($object) {
$this->validateBody($object);
$entity_info = $this->getEntityInfo();
$bundle_key = $entity_info['entity keys']['bundle'];
// TODO: figure out how to derive the bundle when posting to a resource with
// multiple bundles.
$bundle = reset($this->bundles);
$values = $bundle_key ? array($bundle_key => $bundle) : array();
$entity = entity_create($this->entityType, $values);
if ($this->checkEntityAccess('create', $this->entityType, $entity) === FALSE) {
// User does not have access to create entity.
throw new ForbiddenException('You do not have access to create a new resource.');
}
/* @var \EntityDrupalWrapper $wrapper */
$wrapper = entity_metadata_wrapper($this->entityType, $entity);
$this->setPropertyValues($wrapper, $object, TRUE);
// The access calls use the request method. Fake the view to be a GET.
$old_request = $this->getRequest();
$this->getRequest()->setMethod(RequestInterface::METHOD_GET);
$identifier = empty($this->options['idField'])
? $wrapper->getIdentifier()
: $wrapper->get($this->options['idField'])->value();
$output = array($this->view($identifier));
// Put the original request back to a POST.
$this->request = $old_request;
return $output;
}
/**
* {@inheritdoc}
*/
public function view($identifier) {
$entity_id = $this->getEntityIdByFieldId($identifier);
if (!$this->isValidEntity('view', $entity_id)) {
throw new InaccessibleRecordException(sprintf('The current user cannot access entity "%s".', $entity_id));
}
$field_collection = $this->initResourceFieldCollection($identifier);
// Defer sparse fieldsets to the formatter. That way we can minimize cache
// fragmentation because we have a unique cache record for all the sparse
// fieldsets combinations.
// When caching is enabled and we get a cache MISS we want to generate
// output for the cache entry for the whole entity. That way we can use that
// cache record independently of the sparse fieldset.
// On the other hand, if cache is not enabled we don't want to output for
// the whole entity, only the bits that we are going to need. For
// performance reasons.
$input = $this->getRequest()->getParsedInput();
$limit_fields = !empty($input['fields']) ? explode(',', $input['fields']) : array();
$field_collection->setLimitFields($limit_fields);
foreach ($this->fieldDefinitions as $resource_field) {
// Create an empty field collection and populate it with the appropriate
// resource fields.
/* @var \Drupal\restful\Plugin\resource\Field\ResourceFieldEntityInterface $resource_field */
if (!$this->methodAccess($resource_field) || !$resource_field->access('view', $field_collection->getInterpreter())) {
// The field does not apply to the current method or has denied access.
continue;
}
$field_collection->set($resource_field->id(), $resource_field);
}
return $field_collection;
}
/**
* {@inheritdoc}
*/
public function viewMultiple(array $identifiers) {
$return = array();
// If no IDs were requested, we should not throw an exception in case an
// entity is un-accessible by the user.
foreach ($identifiers as $identifier) {
try {
$row = $this->view($identifier);
}
catch (InaccessibleRecordException $e) {
$row = NULL;
}
$return[] = $row;
}
return array_values(array_filter($return));
}
/**
* {@inheritdoc}
*/
public function update($identifier, $object, $replace = FALSE) {
$this->validateBody($object);
$entity_id = $this->getEntityIdByFieldId($identifier);
$this->isValidEntity('update', $entity_id);
/* @var \EntityDrupalWrapper $wrapper */
$wrapper = entity_metadata_wrapper($this->entityType, $entity_id);
$this->setPropertyValues($wrapper, $object, $replace);
// Set the HTTP headers.
$this->setHttpHeader('Status', 201);
if (!empty($wrapper->url) && $url = $wrapper->url->value()) {
$this->setHttpHeader('Location', $url);
}
// The access calls use the request method. Fake the view to be a GET.
$old_request = $this->getRequest();
$this->getRequest()->setMethod(RequestInterface::METHOD_GET);
$output = array($this->view($identifier));
// Put the original request back to a PUT/PATCH.
$this->request = $old_request;
return $output;
}
/**
* {@inheritdoc}
*/
public function remove($identifier) {
$identifier = $this->getEntityIdByFieldId($identifier);
$this->isValidEntity('delete', $identifier);
/* @var \EntityDrupalWrapper $wrapper */
$wrapper = entity_metadata_wrapper($this->entityType, $identifier);
$wrapper->delete();
// Set the HTTP headers.
$this->setHttpHeader('Status', 204);
}
/**
* {@inheritdoc}
*/
public function canonicalPath($path) {
$ids = explode(Resource::IDS_SEPARATOR, $path);
$canonical_ids = array_map(array($this, 'getEntityIdByFieldId'), $ids);
return implode(Resource::IDS_SEPARATOR, $canonical_ids);
}
/**
* {@inheritdoc}
*/
public function entityPreSave(\EntityDrupalWrapper $wrapper) {}
/**
* {@inheritdoc}
*/
public function entityValidate(\EntityDrupalWrapper $wrapper) {
if (!module_exists('entity_validator')) {
// Entity validator doesn't exist.
return;
}
try {
$validator_handler = ValidatorPluginManager::EntityValidator($wrapper->type(), $wrapper->getBundle());
}
catch (PluginNotFoundException $e) {
// Entity validator handler doesn't exist for the entity.
return;
}
if ($validator_handler->validate($wrapper->value(), TRUE)) {
// Entity is valid.
return;
}
$errors = $validator_handler->getErrors(FALSE);
$map = array();
foreach ($this->fieldDefinitions as $resource_field_name => $resource_field) {
if (!$property = $resource_field->getProperty()) {
continue;
}
$public_name = $resource_field->getPublicName();
if (empty($errors[$public_name])) {
// Field validated.
continue;
}
$map[$public_name] = $resource_field_name;
$params['@fields'][] = $resource_field_name;
}
if (empty($params['@fields'])) {
// There was a validation error, but on non-public fields, so we need to
// throw an exception, but can't say on which fields it occurred.
throw new BadRequestException('Invalid value(s) sent with the request.');
}
$params['@fields'] = implode(',', $params['@fields']);
$exception = new BadRequestException(format_plural(count($map), 'Invalid value in field @fields.', 'Invalid values in fields @fields.', $params));
foreach ($errors as $property_name => $messages) {
if (empty($map[$property_name])) {
// Entity is not valid, but on a field not public.
continue;
}
$resource_field_name = $map[$property_name];
foreach ($messages as $message) {
$message['params']['@field'] = $resource_field_name;
$output = format_string($message['message'], $message['params']);
$exception->addFieldError($resource_field_name, $output);
}
}
// Throw the exception.
throw $exception;
}
/**
* Get the entity ID based on the ID provided in the request.
*
* As any field may be used as the ID, we convert it to the numeric internal
* ID of the entity
*
* @param mixed $id
* The provided ID.
*
* @throws BadRequestException
* @throws UnprocessableEntityException
*
* @return int
* The entity ID.
*/
protected function getEntityIdByFieldId($id) {
$request = $this->getRequest();
$input = $request->getParsedInput();
$public_property_name = empty($input['loadByFieldName']) ? NULL : $input['loadByFieldName'];
$public_property_name = $public_property_name ?: (empty($this->options['idField']) ? NULL : $this->options['idField']);
if (!$public_property_name) {
// The regular entity ID was provided.
return $id;
}
// We need to get the internal field/property from the public name.
if ((!$public_field_info = $this->fieldDefinitions->get($public_property_name)) || !$public_field_info->getProperty()) {
throw new BadRequestException(format_string('Cannot load an entity using the field "@name"', array(
'@name' => $public_property_name,
)));
}
$query = $this->getEntityFieldQuery();
$query->range(0, 1);
// Find out if the provided ID is a Drupal field or an entity property.
$property = $public_field_info->getProperty();
/* @var ResourceFieldEntity $public_field_info */
if (ResourceFieldEntity::propertyIsField($property)) {
$query->fieldCondition($property, $public_field_info->getColumn(), $id);
}
else {
$query->propertyCondition($property, $id);
}
// Execute the query and gather the results.
$result = $query->execute();
if (empty($result[$this->entityType])) {
throw new UnprocessableEntityException(format_string('The entity ID @id by @name cannot be loaded.', array(
'@id' => $id,
'@name' => $public_property_name,
)));
}
// There is nothing that guarantees that there is only one result, since
// this is user input data. Return the first ID.
$entity_id = key($result[$this->entityType]);
return $entity_id;
}
/**
* Initialize an EntityFieldQuery (or extending class).
*
* @return \EntityFieldQuery
* The initialized query with the basics filled in.
*/
protected function getEntityFieldQuery() {
$query = $this->EFQObject();
$entity_type = $this->entityType;
$query->entityCondition('entity_type', $entity_type);
$entity_info = $this->getEntityInfo();
if (!empty($this->bundles) && $entity_info['entity keys']['bundle']) {
$query->entityCondition('bundle', $this->bundles, 'IN');
}
return $query;
}
/**
* {@inheritdoc}
*/
public function EFQObject() {
$efq_class = $this->EFQClass;
return new $efq_class();
}
/**
* Get the entity info for the current entity the endpoint handling.
*
* @param string $type
* Optional. The entity type.
*
* @return array
* The entity info.
*
* @see entity_get_info().
*/
protected function getEntityInfo($type = NULL) {
return entity_get_info($type ? $type : $this->entityType);
}
/**
* Prepare a query for RestfulEntityBase::getList().
*
* @return \Drupal\restful\Util\EntityFieldQuery
* The EntityFieldQuery object.
*/
protected function getQueryForList() {
$query = $this->getEntityFieldQuery();
// If we are trying to filter or sort on a computed field, just ignore it
// and log an exception.
try {
$this->queryForListSort($query);
}
catch (BadRequestException $e) {
watchdog_exception('restful', $e);
}
try {
$this->queryForListFilter($query);
}
catch (BadRequestException $e) {
watchdog_exception('restful', $e);
}
$this->queryForListPagination($query);
$this->addExtraInfoToQuery($query);
return $query;
}
/**
* Prepare a query for RestfulEntityBase::count().
*
* @return \EntityFieldQuery
* The EntityFieldQuery object.
*/
protected function getQueryCount() {
$query = $this->getEntityFieldQuery();
// If we are trying to filter or sort on a computed field, just ignore it
// and log an exception.
try {
$this->queryForListSort($query);
}
catch (BadRequestException $e) {
watchdog_exception('restful', $e);
}
try {
$this->queryForListFilter($query);
}
catch (BadRequestException $e) {
watchdog_exception('restful', $e);
}
$this->addExtraInfoToQuery($query);
return $query->count();
}
/**
* Adds query tags and metadata to the EntityFieldQuery.
*
* @param \EntityFieldQuery $query
* The query to enhance.
*/
protected function addExtraInfoToQuery($query) {
parent::addExtraInfoToQuery($query);
// The only time you need to add the access tags to a EFQ is when you don't
// have fieldConditions.
if (empty($query->fieldConditions) && empty($query->order)) {
// Add a generic entity access tag to the query.
$query->addTag($this->entityType . '_access');
}
$query->addMetaData('restful_data_provider', $this);
}
/**
* Sort the query for list.
*
* @param \EntityFieldQuery $query
* The query object.
*
* @throws \Drupal\restful\Exception\BadRequestException
* @throws \EntityFieldQueryException
*
* @see \RestfulEntityBase::getQueryForList
*/
protected function queryForListSort(\EntityFieldQuery $query) {
$resource_fields = $this->fieldDefinitions;
// Get the sorting options from the request object.
$sorts = $this->parseRequestForListSort();
$sorts = $sorts ? $sorts : $this->defaultSortInfo();
foreach ($sorts as $public_field_name => $direction) {
// Determine if sorting is by field or property.
/* @var \Drupal\restful\Plugin\resource\Field\ResourceFieldEntityInterface $resource_field */
if (!$resource_field = $resource_fields->get($public_field_name)) {
return;
}
$sort = array(
'public_field' => $public_field_name,
'direction' => $direction,
'resource_id' => $this->pluginId,
);
$sort = $this->alterSortQuery($sort, $query);
if (!empty($sort['processed'])) {
// If the sort was already processed by the alter filters, continue.
continue;
}
if (!$property_name = $resource_field->getProperty()) {
if (!$resource_field instanceof ResourceFieldEntityAlterableInterface) {
throw new BadRequestException('The current sort selection does not map to any entity property or Field API field.');
}
// If there was no property but the resource field was sortable, do
// not add the default field filtering.
// TODO: This is a workaround. The filtering logic should live in the resource field class.
return;
}
if (ResourceFieldEntity::propertyIsField($property_name)) {
$query->fieldOrderBy($property_name, $resource_field->getColumn(), $sort['direction']);
}
else {
$column = $this->getColumnFromProperty($property_name);
$query->propertyOrderBy($column, $sort['direction']);
}
}
}
/**
* Filter the query for list.
*
* @param \EntityFieldQuery $query
* The query object.
*
* @throws \Drupal\restful\Exception\BadRequestException
*
* @see \RestfulEntityBase::getQueryForList
*/
protected function queryForListFilter(\EntityFieldQuery $query) {
$resource_fields = $this->fieldDefinitions;
$filters = $this->parseRequestForListFilter();
$this->validateFilters($filters);
foreach ($filters as $filter) {
// Determine if filtering is by field or property.
/* @var \Drupal\restful\Plugin\resource\Field\ResourceFieldEntityInterface $resource_field */
if (!$resource_field = $resource_fields->get($filter['public_field'])) {
if (!static::isNestedField($filter['public_field'])) {
// This is not a nested filter.
continue;
}
if (!empty($filter['target'])) {
// If we cannot find the field, it may be a nested filter. Check if
// the target of that is the current resource.
continue;
}
$this->addNestedFilter($filter, $query);
continue;
}
// Give the chance for other data providers to have a special handling for
// a given field.
$filter = $this->alterFilterQuery($filter, $query);
if (!empty($filter['processed'])) {
// If the filter was already processed by the alter filters, continue.
continue;
}
if (!$property_name = $resource_field->getProperty()) {
if (!$resource_field instanceof ResourceFieldEntityAlterableInterface) {
throw new BadRequestException(sprintf('The current filter "%s" selection does not map to any entity property or Field API field and has no custom filtering.', $filter['public_field']));
}
// If there was no property but the resource field was filterable, do
// not add the default field filtering.
// TODO: This is a workaround. The filtering logic should live in the resource field class.
return;
}
if (field_info_field($property_name)) {
if ($this::isMultipleValuOperator($filter['operator'][0])) {
$query->fieldCondition($property_name, $resource_field->getColumn(), $this->getReferencedIds($filter['value'], $resource_field), $filter['operator'][0]);
continue;
}
for ($index = 0; $index < count($filter['value']); $index++) {
// If referencing an entity by an alternate ID, retrieve the actual
// Drupal's entity ID using getReferencedId.
$query->fieldCondition($property_name, $resource_field->getColumn(), $this->getReferencedId($filter['value'][$index], $resource_field), $filter['operator'][$index]);
}
}
else {
$column = $this->getColumnFromProperty($property_name);
if ($this::isMultipleValuOperator($filter['operator'][0])) {
$query->propertyCondition($column, $this->getReferencedIds($filter['value'], $resource_field), $filter['operator'][0]);
continue;
}
for ($index = 0; $index < count($filter['value']); $index++) {
$query->propertyCondition($column, $this->getReferencedId($filter['value'][$index], $resource_field), $filter['operator'][$index]);
}
}
}
}
/**
* Placeholder method to alter the filters.
*
* If no further processing for the filter is needed (i.e. alterFilterQuery
* already added the query filters to $query), then set the 'processed' flag
* in $filter to TRUE. Otherwise normal filtering will be added on top,
* leading to unexpected results.
*
* @param array $filter
* The parsed filter information.
* @param \EntityFieldQuery $query
* The EFQ to add the filter to.
*
* @return array
* The modified $filter array.
*/
protected function alterFilterQuery(array $filter, \EntityFieldQuery $query) {
if (!$resource_field = $this->fieldDefinitions->get($filter['public_field'])) {
return $filter;
}
if (!$resource_field instanceof ResourceFieldEntityAlterableInterface) {
// Check if the resource can check on decorated instances.
if (!$resource_field instanceof ExplorableDecoratorInterface || !$resource_field->isInstanceOf(ResourceFieldEntityAlterableInterface::class)) {
return $filter;
}
}
return $resource_field->alterFilterEntityFieldQuery($filter, $query);
}
/**
* Placeholder method to alter the filters.
*
* If no further processing for the filter is needed (i.e. alterFilterQuery
* already added the query filters to $query), then set the 'processed' flag
* in $filter to TRUE. Otherwise normal filtering will be added on top,
* leading to unexpected results.
*
* @param array $sort
* The sort array containing the keys:
* - public_field: Contains the public property.
* - direction: The sorting direction, either ASC or DESC.
* - resource_id: The resource machine name.
* @param \EntityFieldQuery $query
* The EFQ to add the filter to.
*
* @return array
* The modified $sort array.
*/
protected function alterSortQuery(array $sort, \EntityFieldQuery $query) {
if (!$resource_field = $this->fieldDefinitions->get($sort['public_field'])) {
return $sort;
}
if (!$resource_field instanceof ResourceFieldEntityAlterableInterface) {
// Check if the resource can check on decorated instances.
if (!$resource_field instanceof ExplorableDecoratorInterface || !$resource_field->isInstanceOf(ResourceFieldEntityAlterableInterface::class)) {
return $sort;
}
}
return $resource_field->alterSortEntityFieldQuery($sort, $query);
}
/**
* Checks if the operator accepts multiple values.
*
* @param $operator_name
* The name of the operator.
*
* @return bool
* TRUE if the operator can interpret multiple values. FALSE otherwise.
*/
protected static function isMultipleValuOperator($operator_name) {
return in_array(strtoupper($operator_name), array('IN', 'NOT IN', 'BETWEEN'));
}
/**
* Validates the query parameters.
*
* @param array $filters
* The parsed filters.
*
* @throws BadRequestException
* When there is an invalid target for relational filters.
*/
protected function validateFilters(array $filters) {
foreach ($filters as $filter) {
if (empty($filter['target'])) {
continue;
}
// If the target is not a part of the field, then raise an error.
$field_name_parts = explode('.', $filter['public_field']);
$target_parts = explode('.', $filter['target']);
foreach ($target_parts as $delta => $target_part) {
if ($target_part != $field_name_parts[$delta]) {
// There is a discrepancy between target and field name.
throw new BadRequestException(sprintf('The target "%s" should be a part of the field name "%s".', $filter['target'], $filter['public_field']));
}
}
}
}
/**
* Set correct page (i.e. range) for the query for list.
*
* Determine the page that should be seen. Page 1, is actually offset 0 in the
* query range.
*
* @param \EntityFieldQuery $query
* The query object.
*
* @throws BadRequestException
*
* @see \RestfulEntityBase::getQueryForList
*/
protected function queryForListPagination(\EntityFieldQuery $query) {
list($offset, $range) = $this->parseRequestForListPagination();
$query->range($offset, $range);
}
/**
* Overrides DataProvider::isValidOperatorsForFilter().
*/
protected static function isValidOperatorsForFilter(array $operators) {
$allowed_operators = array(
'=',
'>',
'<',
'>=',
'<=',
'<>',
'!=',
'BETWEEN',
'CONTAINS',
'IN',
'LIKE',
'NOT IN',
'STARTS_WITH',
);
foreach ($operators as $operator) {
if (!in_array($operator, $allowed_operators)) {
throw new BadRequestException(sprintf('Operator "%s" is not allowed for filtering on this resource. Allowed operators are: %s', $operator, implode(', ', $allowed_operators)));
}
}
}
/**
* Overrides DataProvider::isValidConjunctionForFilter().
*/
protected static function isValidConjunctionForFilter($conjunction) {
$allowed_conjunctions = array(
'AND',
);
if (!in_array(strtoupper($conjunction), $allowed_conjunctions)) {
throw new BadRequestException(format_string('Conjunction "@conjunction" is not allowed for filtering on this resource. Allowed conjunctions are: !allowed', array(
'@conjunction' => $conjunction,
'!allowed' => implode(', ', $allowed_conjunctions),
)));
}
}
/**
* Get the DB column name from a property.
*
* The "property" defined in the public field is actually the property
* of the entity metadata wrapper. Sometimes that property can be a
* different name than the column in the DB. For example, for nodes the
* "uid" property is mapped in entity metadata wrapper as "author", so
* we make sure to get the real column name.
*
* @param string $property_name
* The property name.
*
* @return string
* The column name.
*/
protected function getColumnFromProperty($property_name) {
$property_info = entity_get_property_info($this->entityType);
return $property_info['properties'][$property_name]['schema field'];
}
/**
* Determine if an entity is valid, and accessible.
*
* @param string $op
* The operation to perform on the entity (view, update, delete).
* @param int $entity_id
* The entity ID.
*
* @return bool
* TRUE if entity is valid, and user can access it.
*
* @throws UnprocessableEntityException
* @throws InaccessibleRecordException
*/
protected function isValidEntity($op, $entity_id) {
$entity_type = $this->entityType;
if (!ctype_digit((string) $entity_id) || !$entity = entity_load_single($entity_type, $entity_id)) {
// We need to check if the entity ID is numeric since if this is a uuid
// that starts by the number 4, and there is an entity with ID 4 that
// entity will be loaded incorrectly.
throw new UnprocessableEntityException(sprintf('The entity ID %s does not exist.', $entity_id));
}
list(,, $bundle) = entity_extract_ids($entity_type, $entity);
if (!empty($this->bundles) && !in_array($bundle, $this->bundles)) {
return FALSE;
}
if ($this->checkEntityAccess($op, $entity_type, $entity) === FALSE) {
if ($op == 'view' && !$this->getResourcePath()) {
// Just return FALSE, without an exception, for example when a list of
// entities is requested, and we don't want to fail all the list because
// of a single item without access.
// Add the inaccessible item to the metadata to fix the record count in
// the formatter.
$inaccessible_records = $this->getMetadata()->get('inaccessible_records');
$inaccessible_records[] = array(
'resource' => $this->pluginId,
'id' => $entity_id,
);
$this->getMetadata()->set('inaccessible_records', $inaccessible_records);
return FALSE;
}
// Entity was explicitly requested so we need to throw an exception.
throw new InaccessibleRecordException(sprintf('You do not have access to entity ID %s.', $entity_id));
}
return TRUE;
}
/**
* Check access to CRUD an entity.
*
* @param string $op
* The operation. Allowed values are "create", "update" and "delete".
* @param string $entity_type
* The entity type.
* @param object $entity
* The entity object.
*
* @return bool
* TRUE or FALSE based on the access. If no access is known about the entity
* return NULL.
*/
protected function checkEntityAccess($op, $entity_type, $entity) {
$account = $this->getAccount();
return entity_access($op, $entity_type, $entity, $account);
}
/**
* Set properties of the entity based on the request, and save the entity.
*
* @param \EntityDrupalWrapper $wrapper
* The wrapped entity object, passed by reference.
* @param array $object
* The keyed array of properties sent in the payload.
* @param bool $replace
* Determine if properties that are missing from the request array should
* be treated as NULL, or should be skipped. Defaults to FALSE, which will
* set the fields to NULL.
*
* @throws BadRequestException
* If the provided object is not valid.
*/
protected function setPropertyValues(\EntityDrupalWrapper $wrapper, $object, $replace = FALSE) {
if (!is_array($object)) {
throw new BadRequestException('Bad input data provided. Please, check your input and your Content-Type header.');
}
$save = FALSE;
$original_object = $object;
$interpreter = new DataInterpreterEMW($this->getAccount(), $wrapper);
// Keeps a list of the fields that have been set.
$processed_fields = array();
$field_definitions = clone $this->fieldDefinitions;
foreach ($field_definitions as $public_field_name => $resource_field) {
/* @var \Drupal\restful\Plugin\resource\Field\ResourceFieldEntityInterface $resource_field */