Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295217
FileQueryChunksConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
961 B
Referenced Files
None
Subscribers
None
FileQueryChunksConduitAPIMethod.php
View Options
<?php
final
class
FileQueryChunksConduitAPIMethod
extends
FileConduitAPIMethod
{
public
function
getAPIMethodName
(
)
{
return
'file.querychunks'
;
}
public
function
getMethodDescription
(
)
{
return
pht
(
'Get information about file chunks.'
)
;
}
protected
function
defineParamTypes
(
)
{
return
array
(
'filePHID'
=>
'phid'
,
)
;
}
protected
function
defineReturnType
(
)
{
return
'list<wild>'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
(
)
;
$file_phid
=
$request
->
getValue
(
'filePHID'
)
;
$file
=
$this
->
loadFileByPHID
(
$viewer
,
$file_phid
)
;
$chunks
=
$this
->
loadFileChunks
(
$viewer
,
$file
)
;
$results
=
array
(
)
;
foreach
(
$chunks
as
$chunk
)
{
$results
[
]
=
array
(
'byteStart'
=>
$chunk
->
getByteStart
(
)
,
'byteEnd'
=>
$chunk
->
getByteEnd
(
)
,
'complete'
=>
(bool)
$chunk
->
getDataFilePHID
(
)
,
)
;
}
return
$results
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:31 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1111606
Default Alt Text
FileQueryChunksConduitAPIMethod.php (961 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment