Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104730152
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
Tue, Mar 11, 21:58
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Mar 13, 21:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24852226
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