Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Twitter fix 2 #97

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 36 additions & 6 deletions src/Shortcodes/TwitterShortcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

namespace Murdercode\LaravelShortcodePlus\Shortcodes;

use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\Exception\RequestException;

class TwitterShortcode
{
public function register($shortcode): string
Expand All @@ -25,15 +29,41 @@ public function register($shortcode): string
return view('shortcode-plus::twitter', compact('html'))->render();
}

/**
* Get oEmbed data from Twitter
* Note: Twitter sometimes returns 404 for valid URLs, so we retry a few times
*
* @throws GuzzleException
*/
private static function getOembed(string $url): ?string
{
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://publish.twitter.com/oembed?url='.urlencode($url).'&omit_script=1');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
$maxAttempts = 3;
$attempt = 0;
$response = null;

while ($attempt < $maxAttempts && $response === null) {
try {
$client = new Client;
$res = $client->request('GET', 'https://publish.twitter.com/oembed', [
'query' => [
'url' => $url,
'omit_script' => 1,
],
]);

if ($res->getStatusCode() == 200) {
$response = $res->getBody()->getContents();
} else {
usleep(100000);
$attempt++;
}
} catch (RequestException $e) {
usleep(100000);
$attempt++;
}
}

if ($response === false) {
if ($response === null) {
return null;
}

Expand Down
Loading