Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4852532
FileUploadChunkConduitAPIMethod.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
1 KB
Referenced Files
None
Subscribers
None
FileUploadChunkConduitAPIMethod.php
View Options
<?php
final
class
FileUploadChunkConduitAPIMethod
extends
FileConduitAPIMethod
{
public
function
getAPIMethodName
(
)
{
return
'file.uploadchunk'
;
}
public
function
getMethodDescription
(
)
{
return
pht
(
'Upload a chunk of file data to the server.'
)
;
}
protected
function
defineParamTypes
(
)
{
return
array
(
'filePHID'
=>
'phid'
,
'byteStart'
=>
'int'
,
'data'
=>
'string'
,
'dataEncoding'
=>
'string'
,
)
;
}
protected
function
defineReturnType
(
)
{
return
'void'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
(
)
;
$file_phid
=
$request
->
getValue
(
'filePHID'
)
;
$file
=
$this
->
loadFileByPHID
(
$viewer
,
$file_phid
)
;
$start
=
$request
->
getValue
(
'byteStart'
)
;
$data
=
$request
->
getValue
(
'data'
)
;
$encoding
=
$request
->
getValue
(
'dataEncoding'
)
;
switch
(
$encoding
)
{
case
'base64'
:
$data
=
$this
->
decodeBase64
(
$data
)
;
break
;
case
null
:
break
;
default
:
throw
new
Exception
(
pht
(
'Unsupported data encoding.'
)
)
;
}
$length
=
strlen
(
$data
)
;
$chunk
=
$this
->
loadFileChunkForUpload
(
$viewer
,
$file
,
$start
,
$start
+
$length
)
;
// NOTE: These files have a view policy which prevents normal access. They
// are only accessed through the storage engine.
$chunk_data
=
PhabricatorFile
::
newFromFileData
(
$data
,
array
(
'name'
=>
$file
->
getMonogram
(
)
.
'.chunk-'
.
$chunk
->
getID
(
)
,
'viewPolicy'
=>
PhabricatorPolicies
::
POLICY_NOONE
,
)
)
;
$chunk
->
setDataFilePHID
(
$chunk_data
->
getPHID
(
)
)
->
save
(
)
;
$missing
=
$this
->
loadAnyMissingChunk
(
$viewer
,
$file
)
;
if
(
!
$missing
)
{
$file
->
setIsPartial
(
0
)
->
save
(
)
;
}
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 9, 06:37 (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1768460
Default Alt Text
FileUploadChunkConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment