Collection
3 months ago
Comment
3 months ago
Date
3 months ago
Media
3 months ago
Post
3 months ago
Term
3 months ago
User
3 months ago
Wrap
3 months ago
Actions.php
3 months ago
Aggregate.php
3 months ago
Append.php
3 months ago
ArrayToCollection.php
3 months ago
Avatar.php
3 months ago
AvatarUrl.php
3 months ago
BeforeAfter.php
3 months ago
BooleanLabel.php
3 months ago
CharacterLimit.php
3 months ago
CodeBlock.php
3 months ago
Color.php
3 months ago
ColumnFilter.php
3 months ago
Composite.php
3 months ago
ConditionalValue.php
3 months ago
ContentTypeLink.php
3 months ago
Count.php
3 months ago
CountLabelFormatter.php
3 months ago
DottedPassword.php
3 months ago
EmptyValue.php
3 months ago
ExplodeToCollection.php
3 months ago
ExtendedValueLink.php
3 months ago
FallBack.php
3 months ago
FallBackFormatter.php
3 months ago
FileLink.php
3 months ago
FileSizeReadable.php
3 months ago
ForeignId.php
3 months ago
FormattedJson.php
3 months ago
GroupedIdsToCollection.php
3 months ago
HasValue.php
3 months ago
HumanReadableTime.php
3 months ago
HumanTimeDifference.php
3 months ago
Id.php
3 months ago
IdsToCollection.php
3 months ago
Image.php
3 months ago
ImageSize.php
3 months ago
ImageToCollection.php
3 months ago
ImageUrl.php
3 months ago
ImageUrlsFromContent.php
3 months ago
Implode.php
3 months ago
ImplodeRecursive.php
3 months ago
Kses.php
3 months ago
Latest.php
3 months ago
Linkable.php
3 months ago
Links.php
3 months ago
MapOptionLabel.php
3 months ago
MapToId.php
3 months ago
MapToLabel.php
3 months ago
MenuLink.php
3 months ago
Message.php
3 months ago
Meta.php
3 months ago
MetaCollection.php
3 months ago
NoIcon.php
3 months ago
NullFormatter.php
3 months ago
NumberFormat.php
3 months ago
PathScope.php
3 months ago
PregReplace.php
3 months ago
Prepend.php
3 months ago
ReadingTime.php
3 months ago
RelationIdsCollection.php
3 months ago
SelectOptionMapper.php
3 months ago
SmallBlocks.php
3 months ago
StringSanitizer.php
3 months ago
StripTags.php
3 months ago
Suffix.php
3 months ago
TableRender.php
3 months ago
ToArray.php
3 months ago
TotalSum.php
3 months ago
Trim.php
3 months ago
UrlDecode.php
3 months ago
UsedByMenu.php
3 months ago
WordCount.php
3 months ago
WordLimit.php
3 months ago
Wrapper.php
3 months ago
YesIcon.php
3 months ago
YesNoIcon.php
3 months ago
IdsToCollection.php
56 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Formatter; |
| 6 | |
| 7 | use AC\Exception\ValueNotFoundException; |
| 8 | use AC\Formatter; |
| 9 | use AC\Type\Value; |
| 10 | use AC\Type\ValueCollection; |
| 11 | |
| 12 | class IdsToCollection implements Formatter |
| 13 | { |
| 14 | |
| 15 | public function format(Value $value): ValueCollection |
| 16 | { |
| 17 | $ids = $value->get_value(); |
| 18 | |
| 19 | if (is_string($ids)) { |
| 20 | return ValueCollection::from_ids($value->get_id(), $this->get_ids_from_string($ids)); |
| 21 | } |
| 22 | |
| 23 | if (is_array($ids)) { |
| 24 | return ValueCollection::from_ids($value->get_id(), $this->sanitise_ids($ids)); |
| 25 | } |
| 26 | |
| 27 | throw new ValueNotFoundException($value->get_id()); |
| 28 | } |
| 29 | |
| 30 | private function sanitise_ids(array $ids): array |
| 31 | { |
| 32 | return array_map('absint', array_filter($ids, 'is_numeric')); |
| 33 | } |
| 34 | |
| 35 | private function get_ids_from_string(string $value): ?array |
| 36 | { |
| 37 | if (str_contains($value, ',')) { |
| 38 | return $this->sanitise_ids(explode(',', $value)); |
| 39 | } |
| 40 | |
| 41 | if (is_serialized($value)) { |
| 42 | $ids = @unserialize($value); |
| 43 | |
| 44 | if (is_array($ids)) { |
| 45 | return $this->sanitise_ids($ids); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | if (is_numeric($value)) { |
| 50 | return [absint($value)]; |
| 51 | } |
| 52 | |
| 53 | return null; |
| 54 | } |
| 55 | |
| 56 | } |