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
PathScope.php
54 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC\Formatter; |
| 4 | |
| 5 | use AC\Formatter; |
| 6 | use AC\Type\Value; |
| 7 | |
| 8 | class PathScope implements Formatter |
| 9 | { |
| 10 | |
| 11 | private string $path_scope; |
| 12 | |
| 13 | public function __construct(string $path_scope) |
| 14 | { |
| 15 | $this->path_scope = $path_scope; |
| 16 | } |
| 17 | |
| 18 | public function format(Value $value): Value |
| 19 | { |
| 20 | $file = $value->get_value(); |
| 21 | |
| 22 | if ( ! $file) { |
| 23 | return $value; |
| 24 | } |
| 25 | |
| 26 | switch ($this->path_scope) { |
| 27 | case 'relative-domain' : |
| 28 | $file = str_replace('https://', 'http://', $file); |
| 29 | $url = str_replace('https://', 'http://', home_url('/')); |
| 30 | |
| 31 | if (strpos($file, $url) === 0) { |
| 32 | $file = '/' . substr($file, strlen($url)); |
| 33 | } |
| 34 | |
| 35 | return $value->with_value($file); |
| 36 | case 'relative-uploads' : |
| 37 | $file = str_replace('https://', 'http://', $file); |
| 38 | $upload_dir = wp_upload_dir(); |
| 39 | $url = str_replace('https://', 'http://', $upload_dir['baseurl']); |
| 40 | |
| 41 | if (strpos($file, $url) === 0) { |
| 42 | $file = substr($file, strlen($url)); |
| 43 | } |
| 44 | |
| 45 | return $value->with_value($file); |
| 46 | case 'local': |
| 47 | |
| 48 | return $value->with_value(get_attached_file($value->get_id())); |
| 49 | default: |
| 50 | return $value; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | } |