mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Fix ambiguous URI parsing in Youtube Remarkup rule
Summary: Fixes T12867. Also: - Simplify the code a little. - Stop mutating this on text/mobile -- there's no inherent value in the "youtu.be" link so I think this just changes the text the user wrote unnecessarily. Test Plan: {F5013804} Reviewers: chad Reviewed By: chad Maniphest Tasks: T12867 Differential Revision: https://secure.phabricator.com/D18149
This commit is contained in:
parent
219ae8b6c9
commit
988a52cf1a
1 changed files with 18 additions and 14 deletions
|
@ -2,34 +2,37 @@
|
|||
|
||||
final class PhabricatorYoutubeRemarkupRule extends PhutilRemarkupRule {
|
||||
|
||||
private $uri;
|
||||
|
||||
public function getPriority() {
|
||||
return 350.0;
|
||||
}
|
||||
|
||||
public function apply($text) {
|
||||
$this->uri = new PhutilURI($text);
|
||||
|
||||
if ($this->uri->getDomain() &&
|
||||
preg_match('/(^|\.)youtube\.com$/', $this->uri->getDomain()) &&
|
||||
idx($this->uri->getQueryParams(), 'v')) {
|
||||
return $this->markupYoutubeLink();
|
||||
try {
|
||||
$uri = new PhutilURI($text);
|
||||
} catch (Exception $ex) {
|
||||
return $text;
|
||||
}
|
||||
|
||||
return $text;
|
||||
}
|
||||
$domain = $uri->getDomain();
|
||||
if (!preg_match('/(^|\.)youtube\.com\z/', $domain)) {
|
||||
return $text;
|
||||
}
|
||||
|
||||
$params = $uri->getQueryParams();
|
||||
$v_param = idx($params, 'v');
|
||||
if (!strlen($v_param)) {
|
||||
return $text;
|
||||
}
|
||||
|
||||
public function markupYoutubeLink() {
|
||||
$v = idx($this->uri->getQueryParams(), 'v');
|
||||
$text_mode = $this->getEngine()->isTextMode();
|
||||
$mail_mode = $this->getEngine()->isHTMLMailMode();
|
||||
|
||||
if ($text_mode || $mail_mode) {
|
||||
return $this->getEngine()->storeText('http://youtu.be/'.$v);
|
||||
return $text;
|
||||
}
|
||||
|
||||
$youtube_src = 'https://www.youtube.com/embed/'.$v;
|
||||
$youtube_src = 'https://www.youtube.com/embed/'.$v_param;
|
||||
|
||||
$iframe = $this->newTag(
|
||||
'div',
|
||||
array(
|
||||
|
@ -45,6 +48,7 @@ final class PhabricatorYoutubeRemarkupRule extends PhutilRemarkupRule {
|
|||
'frameborder' => 0,
|
||||
),
|
||||
''));
|
||||
|
||||
return $this->getEngine()->storeText($iframe);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue