Page MenuHomePhorge

FileQueryChunksConduitAPIMethod.php
No OneTemporary

FileQueryChunksConduitAPIMethod.php

<?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

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)

Event Timeline