Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101733915
FileUploadConduitAPIMethod.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
Thu, Feb 13, 04:12
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Feb 15, 04:12 (2 d)
Engine
blob
Format
Raw Data
Handle
24218792
Attached To
rPH Phabricator
FileUploadConduitAPIMethod.php
View Options
<?php
final
class
FileUploadConduitAPIMethod
extends
FileConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'file.upload'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Upload a file to the server.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'data_base64'
=>
'required nonempty base64-bytes'
,
'name'
=>
'optional string'
,
'viewPolicy'
=>
'optional valid policy string or <phid>'
,
'canCDN'
=>
'optional bool'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty guid'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$name
=
$request
->
getValue
(
'name'
);
$can_cdn
=
$request
->
getValue
(
'canCDN'
);
$view_policy
=
$request
->
getValue
(
'viewPolicy'
);
$data
=
$request
->
getValue
(
'data_base64'
);
$data
=
$this
->
decodeBase64
(
$data
);
$file
=
PhabricatorFile
::
newFromFileData
(
$data
,
array
(
'name'
=>
$name
,
'authorPHID'
=>
$viewer
->
getPHID
(),
'viewPolicy'
=>
$view_policy
,
'canCDN'
=>
$can_cdn
,
'isExplicitUpload'
=>
true
,
));
return
$file
->
getPHID
();
}
}
Event Timeline
Log In to Comment