Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104538557
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
Mon, Mar 10, 07:04
Size
891 B
Mime Type
text/x-php
Expires
Wed, Mar 12, 07:04 (2 d)
Engine
blob
Format
Raw Data
Handle
24806982
Attached To
rPH Phabricator
ConduitAPI_file_upload_Method.php
View Options
<?php
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