Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F441626
PhabricatorRemarkupRuleYoutube.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorRemarkupRuleYoutube.php
View Options
<?php
/**
* @group markup
*/
final
class
PhabricatorRemarkupRuleYoutube
extends
PhutilRemarkupRule
{
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
();
}
return
$text
;
}
public
function
markupYoutubeLink
()
{
$v
=
idx
(
$this
->
uri
->
getQueryParams
(),
'v'
);
if
(
$this
->
getEngine
()->
isTextMode
())
{
return
$this
->
getEngine
()->
storeText
(
'http://youtu.be/'
.
$v
);
}
$youtube_src
=
'https://www.youtube.com/embed/'
.
$v
;
$iframe
=
hsprintf
(
'<div class="embedded-youtube-video">%s</div>'
,
phutil_tag
(
'iframe'
,
array
(
'width'
=>
'650'
,
'height'
=>
'400'
,
'style'
=>
'margin: 1em auto; border: 0px;'
,
'src'
=>
$youtube_src
,
'frameborder'
=>
0
,
),
''
));
return
$this
->
getEngine
()->
storeText
(
$iframe
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, May 4, 7:40 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
64515
Default Alt Text
PhabricatorRemarkupRuleYoutube.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment