TemplateLayouts
5 months ago
AirTable.php
1 year ago
Boomplay.php
1 year ago
Calendly.php
2 years ago
Canva.php
1 year ago
FITE.php
1 year ago
GettyImages.php
9 months ago
Giphy.php
2 years ago
GitHub.php
3 years ago
GoogleCalendar.php
8 months ago
GoogleDocs.php
2 years ago
GoogleDrive.php
2 years ago
GoogleMaps.php
2 years ago
GooglePhotos.php
5 months ago
Gumroad.php
2 years ago
InstagramFeed.php
6 months ago
LinkedIn.php
2 years ago
Meetup.php
6 months ago
NRKRadio.php
2 years ago
OneDrive.php
10 months ago
OpenSea.php
9 months ago
SelfHosted.php
2 years ago
Spreaker.php
1 year ago
TikTok.php
2 years ago
Twitch.php
2 years ago
Wistia.php
6 months ago
Wrapper.php
3 years ago
X.php
2 years ago
Youtube.php
5 months ago
index.html
7 years ago
GettyImages.php
147 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * GettyImages.php |
| 5 | * |
| 6 | * @package Embera |
| 7 | * @author Michael Pratt <yo@michael-pratt.com> |
| 8 | * @link http://www.michael-pratt.com/ |
| 9 | * |
| 10 | * For the full copyright and license information, please view the LICENSE |
| 11 | * file that was distributed with this source code. |
| 12 | */ |
| 13 | |
| 14 | namespace EmbedPress\Providers; |
| 15 | |
| 16 | use Embera\Provider\ProviderAdapter; |
| 17 | use Embera\Provider\ProviderInterface; |
| 18 | use Embera\Url; |
| 19 | |
| 20 | (defined('ABSPATH') && defined('EMBEDPRESS_IS_LOADED')) or die("No direct script access allowed."); |
| 21 | /** |
| 22 | * GettyImages Provider |
| 23 | * Encuentra la imagen libre de derechos perfecta para tu próximo proyecto en el mejor catálogo ... |
| 24 | * |
| 25 | * @link https://gettyimages.com |
| 26 | * @see https://developers.gettyimages.com/api/oembed/ |
| 27 | */ |
| 28 | class GettyImages extends ProviderAdapter implements ProviderInterface |
| 29 | { |
| 30 | /** inline {@inheritdoc} */ |
| 31 | protected $endpoint = 'https://embed.gettyimages.com/oembed?format=json&caller=embera'; |
| 32 | |
| 33 | /** inline {@inheritdoc} */ |
| 34 | protected static $hosts = [ |
| 35 | 'gty.im', |
| 36 | '*.gettyimages.com', |
| 37 | '*.gettyimages.com.mx', |
| 38 | '*.gettyimages.com.au', |
| 39 | '*.gettyimages.com.be', |
| 40 | '*.gettyimages.com.br', |
| 41 | '*.gettyimages.com.ca', |
| 42 | '*.gettyimages.com.de', |
| 43 | '*.gettyimages.es', |
| 44 | '*.gettyimages.fr', |
| 45 | '*.gettyimages.in', |
| 46 | '*.gettyimages.ie', |
| 47 | '*.gettyimages.it', |
| 48 | '*.gettyimages.nl', |
| 49 | '*.gettyimages.no', |
| 50 | '*.gettyimages.co.nz', |
| 51 | '*.gettyimages.at', |
| 52 | '*.gettyimages.pt', |
| 53 | '*.gettyimages.ch', |
| 54 | '*.gettyimages.fi', |
| 55 | '*.gettyimages.se', |
| 56 | '*.gettyimages.ae', |
| 57 | '*.gettyimages.co.uk', |
| 58 | '*.gettyimages.hk', |
| 59 | '*.gettyimages.co.jp' |
| 60 | ]; |
| 61 | |
| 62 | /** inline {@inheritdoc} */ |
| 63 | protected $allowedParams = ['maxwidth', 'maxheight', 'caller', 'caption', 'tld']; |
| 64 | |
| 65 | /** inline {@inheritdoc} */ |
| 66 | protected $httpsSupport = false; |
| 67 | |
| 68 | /** inline {@inheritdoc} */ |
| 69 | public function validateUrl(Url $url) |
| 70 | { |
| 71 | return (bool) (preg_match('~gty\.im/([^/]+)$~i', (string) $url)); |
| 72 | } |
| 73 | |
| 74 | /** inline {@inheritdoc} */ |
| 75 | public function normalizeUrl(Url $url) |
| 76 | { |
| 77 | $url->removeQueryString(); |
| 78 | |
| 79 | if (preg_match('~/detail/(?:(?:[^/]+)/(?:[^/]+)/)?([^/]+)$~i', (string) $url, $matches)) { |
| 80 | $url->overwrite('https://gty.im/' . $matches['1']); |
| 81 | } |
| 82 | |
| 83 | $url->removeLastSlash(); |
| 84 | $url->convertToHttps(); |
| 85 | $url->removeWWW(); |
| 86 | |
| 87 | return $url; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * This method fakes an Oembed response. |
| 92 | * |
| 93 | * @since 1.5.0 |
| 94 | * |
| 95 | * @return array |
| 96 | */ |
| 97 | public function fakeResponse() |
| 98 | { |
| 99 | |
| 100 | $shortUrl = $this->getUrl(); |
| 101 | |
| 102 | // Build the Getty oEmbed endpoint |
| 103 | $endpoint = "https://embed.gettyimages.com/oembed?format=json&caller=embera&url=" . urlencode($shortUrl); |
| 104 | |
| 105 | // Fetch the data |
| 106 | $responseJson = @file_get_contents($endpoint); |
| 107 | |
| 108 | if (!$responseJson) { |
| 109 | return []; |
| 110 | } |
| 111 | |
| 112 | $data = json_decode($responseJson, true); |
| 113 | if (!$data) { |
| 114 | return []; |
| 115 | } |
| 116 | |
| 117 | $response = []; |
| 118 | |
| 119 | |
| 120 | $width = $data['thumbnail_width'] ?? 640; |
| 121 | $height = $data['thumbnail_height'] ?? 480; |
| 122 | |
| 123 | // Optional: modify HTML for your needs |
| 124 | if (isset($data['html']) && isset($data['thumbnail_url'])) { |
| 125 | |
| 126 | |
| 127 | $response = [ |
| 128 | 'type' => 'image', |
| 129 | 'provider_name' => 'GettyImages', |
| 130 | 'provider_url' => 'https://gettyimages.com', |
| 131 | 'url' => $this->getUrl(), |
| 132 | 'html' => $data['html'], |
| 133 | ]; |
| 134 | } |
| 135 | |
| 136 | |
| 137 | return $response; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | /** inline {@inheritdoc} */ |
| 142 | public function modifyResponse(array $response = []) |
| 143 | { |
| 144 | return $this->fakeResponse(); |
| 145 | } |
| 146 | } |
| 147 |