Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93468164
PhutilAWSS3PutManagementWorkflow.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
Fri, Nov 29, 00:24
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 00:24 (2 d)
Engine
blob
Format
Raw Data
Handle
22646786
Attached To
rPHU libphutil
PhutilAWSS3PutManagementWorkflow.php
View Options
<?php
final
class
PhutilAWSS3PutManagementWorkflow
extends
PhutilAWSS3ManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'put'
)
->
setExamples
(
'**put** --key __key__'
)
->
setSynopsis
(
pht
(
'Upload content to S3.'
))
->
setArguments
(
array_merge
(
$this
->
getAWSArguments
(),
$this
->
getAWSS3BucketArguments
(),
array
(
array
(
'name'
=>
'key'
,
'param'
=>
'key'
,
'help'
=>
pht
(
'Specify a key to upload.'
),
),
)));
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$key
=
$args
->
getArg
(
'key'
);
if
(!
strlen
(
$key
))
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Specify an AWS S3 object key to access with --key.'
));
}
$future
=
$this
->
newAWSFuture
(
new
PhutilAWSS3Future
());
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Reading data from stdin...'
));
$data
=
file_get_contents
(
'php://stdin'
);
$future
->
setParametersForPutObject
(
$key
,
$data
);
$result
=
$future
->
resolve
();
echo
tsprintf
(
"%s
\n
"
,
pht
(
'Uploaded "%s".'
,
$key
));
return
0
;
}
}
Event Timeline
Log In to Comment