Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F545403
PhabricatorFilesOnDiskBuiltinFile.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
PhabricatorFilesOnDiskBuiltinFile.php
View Options
<?php
final
class
PhabricatorFilesOnDiskBuiltinFile
extends
PhabricatorFilesBuiltinFile
{
private
$name
;
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
if
(
$this
->
name
===
null
)
{
throw
new
PhutilInvalidStateException
(
'setName'
);
}
return
$this
->
name
;
}
public
function
getBuiltinDisplayName
()
{
return
$this
->
getName
();
}
public
function
getBuiltinFileKey
()
{
$name
=
$this
->
getName
();
$desc
=
"disk(name={$name})"
;
$hash
=
PhabricatorHash
::
digestToLength
(
$desc
,
40
);
return
"builtin:{$hash}"
;
}
public
function
loadBuiltinFileData
()
{
$name
=
$this
->
getName
();
$available
=
$this
->
getAllBuiltinFiles
();
if
(
empty
(
$available
[
$name
]))
{
throw
new
Exception
(
pht
(
'Builtin "%s" does not exist!'
,
$name
));
}
return
Filesystem
::
readFile
(
$available
[
$name
]);
}
private
function
getAllBuiltinFiles
()
{
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
$root
=
$root
.
'/resources/builtin/'
;
$map
=
array
();
$list
=
id
(
new
FileFinder
(
$root
))
->
withType
(
'f'
)
->
withFollowSymlinks
(
true
)
->
find
();
foreach
(
$list
as
$file
)
{
$map
[
$file
]
=
$root
.
$file
;
}
return
$map
;
}
public
function
getProjectBuiltinFiles
()
{
$root
=
dirname
(
phutil_get_library_root
(
'phabricator'
));
$root
=
$root
.
'/resources/builtin/projects/'
;
$map
=
array
();
$list
=
id
(
new
FileFinder
(
$root
))
->
withType
(
'f'
)
->
withFollowSymlinks
(
true
)
->
find
();
foreach
(
$list
as
$file
)
{
$map
[
$file
]
=
$root
.
$file
;
}
return
$map
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 12:49 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
120058
Default Alt Text
PhabricatorFilesOnDiskBuiltinFile.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment