Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122006137
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
Tue, Jul 15, 07:16
Size
917 B
Mime Type
text/x-php
Expires
Thu, Jul 17, 07:16 (2 d)
Engine
blob
Format
Raw Data
Handle
27423425
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