Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101627177
ConduitAPI_file_upload_Method.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
Wed, Feb 12, 05:38
Size
917 B
Mime Type
text/x-php
Expires
Fri, Feb 14, 05:38 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24203698
Attached To
rPH Phabricator
ConduitAPI_file_upload_Method.php
View Options
<?php
/**
* @group conduit
*/
final
class
ConduitAPI_file_upload_Method
extends
ConduitAPI_file_Method
{
public
function
getMethodDescription
()
{
return
'Upload a file to the server.'
;
}
public
function
defineParamTypes
()
{
return
array
(
'data_base64'
=>
'required nonempty base64-bytes'
,
'name'
=>
'optional string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty guid'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$data
=
$request
->
getValue
(
'data_base64'
);
$name
=
$request
->
getValue
(
'name'
);
$data
=
base64_decode
(
$data
,
$strict
=
true
);
$user
=
$request
->
getUser
();
$file
=
PhabricatorFile
::
newFromFileData
(
$data
,
array
(
'name'
=>
$name
,
'authorPHID'
=>
$user
->
getPHID
(),
));
return
$file
->
getPHID
();
}
}
Event Timeline
Log In to Comment