mirror of
https://github.com/friendica/friendica
synced 2025-04-06 04:40:14 +00:00
Fix code style
This commit is contained in:
parent
b9a401454d
commit
ce4e77fbb6
2 changed files with 24 additions and 22 deletions
|
@ -81,15 +81,17 @@ class OEmbed
|
|||
if (@$dom->loadHTML($html_text)) {
|
||||
$xpath = new DOMXPath($dom);
|
||||
foreach (
|
||||
$xpath->query("//link[@type='application/json+oembed'] | //link[@type='text/json+oembed']")
|
||||
as $link)
|
||||
{
|
||||
$xpath->query("//link[@type='application/json+oembed'] | //link[@type='text/json+oembed']") as $link
|
||||
) {
|
||||
/** @var DOMElement $link */
|
||||
$href = $link->getAttributeNode('href')->nodeValue;
|
||||
// Both Youtube and Vimeo output OEmbed endpoint URL with HTTP
|
||||
// but their OEmbed endpoint is only accessible by HTTPS ¯\_(ツ)_/¯
|
||||
$href = str_replace(['http://www.youtube.com/', 'http://player.vimeo.com/'],
|
||||
['https://www.youtube.com/', 'https://player.vimeo.com/'], $href);
|
||||
$href = str_replace(
|
||||
['http://www.youtube.com/', 'http://player.vimeo.com/'],
|
||||
['https://www.youtube.com/', 'https://player.vimeo.com/'],
|
||||
$href
|
||||
);
|
||||
$result = DI::httpClient()->get($href . '&maxwidth=' . $appHelper->getThemeInfoValue('videowidth'), HttpClientAccept::DEFAULT, [HttpClientOptions::REQUEST => HttpClientRequest::SITEINFO]);
|
||||
if ($result->isSuccess()) {
|
||||
$json_string = $result->getBodyString();
|
||||
|
@ -285,7 +287,7 @@ class OEmbed
|
|||
}
|
||||
|
||||
$ret .= '</div>';
|
||||
$test = Proxy::proxifyHtml($ret, $uriid);
|
||||
$test = Proxy::proxifyHtml($ret, $uriid);
|
||||
|
||||
return str_replace("\n", "", $ret);
|
||||
}
|
||||
|
|
|
@ -164,7 +164,7 @@ class HookEventBridgeTest extends TestCase
|
|||
$reflectionProperty = new \ReflectionProperty(HookEventBridge::class, 'mockedCallHook');
|
||||
$reflectionProperty->setAccessible(true);
|
||||
|
||||
$reflectionProperty->setValue(null, function (string $name, $data): string {
|
||||
$reflectionProperty->setValue(null, function (string $name, string $data): string {
|
||||
$this->assertSame('oembed_fetch_url', $name);
|
||||
$this->assertSame('original_url', $data);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue