Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99059065
PhabricatorVideoDocumentEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 18, 19:22
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 20, 19:22 (2 d)
Engine
blob
Format
Raw Data
Handle
23690977
Attached To
rPH Phabricator
PhabricatorVideoDocumentEngine.php
View Options
<?php
final
class
PhabricatorVideoDocumentEngine
extends
PhabricatorDocumentEngine
{
const
ENGINEKEY
=
'video'
;
public
function
getViewAsLabel
(
PhabricatorDocumentRef
$ref
)
{
return
pht
(
'View as Video'
);
}
protected
function
getContentScore
(
PhabricatorDocumentRef
$ref
)
{
// Some video documents can be rendered as either video or audio, but we
// want to prefer video.
return
2500
;
}
protected
function
getByteLengthLimit
()
{
return
null
;
}
protected
function
getDocumentIconIcon
(
PhabricatorDocumentRef
$ref
)
{
return
'fa-film'
;
}
protected
function
canRenderDocumentType
(
PhabricatorDocumentRef
$ref
)
{
$file
=
$ref
->
getFile
();
if
(
$file
)
{
return
$file
->
isVideo
();
}
$viewable_types
=
PhabricatorEnv
::
getEnvConfig
(
'files.viewable-mime-types'
);
$viewable_types
=
array_keys
(
$viewable_types
);
$video_types
=
PhabricatorEnv
::
getEnvConfig
(
'files.video-mime-types'
);
$video_types
=
array_keys
(
$video_types
);
return
$ref
->
hasAnyMimeType
(
$viewable_types
)
&&
$ref
->
hasAnyMimeType
(
$video_types
);
}
protected
function
newDocumentContent
(
PhabricatorDocumentRef
$ref
)
{
$file
=
$ref
->
getFile
();
if
(
$file
)
{
$source_uri
=
$file
->
getViewURI
();
}
else
{
throw
new
PhutilMethodNotImplementedException
();
}
$mime_type
=
$ref
->
getMimeType
();
$video
=
phutil_tag
(
'video'
,
array
(
'controls'
=>
'controls'
,
),
phutil_tag
(
'source'
,
array
(
'src'
=>
$source_uri
,
'type'
=>
$mime_type
,
)));
$container
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'document-engine-video'
,
),
$video
);
return
$container
;
}
}
Event Timeline
Log In to Comment