Viewing File: /home/ubuntu/code_review/arcanist/src/future/aws/management/PhutilAWSS3DeleteManagementWorkflow.php

<?php

final class PhutilAWSS3DeleteManagementWorkflow
  extends PhutilAWSS3ManagementWorkflow {

  protected function didConstruct() {
    $this
      ->setName('delete')
      ->setExamples(
        '**delete** --key __key__')
      ->setSynopsis(pht('Delete an object from S3.'))
      ->setArguments(
        array_merge(
          $this->getAWSArguments(),
          $this->getAWSS3BucketArguments(),
          array(
            array(
              'name'    => 'key',
              'param'   => 'key',
              'help'    => pht('Specify a key to delete.'),
            ),
          )));
  }

  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())
      ->setParametersForDeleteObject($key);

    $future->resolve();

    echo tsprintf(
      "%s\n",
      pht('Deleted "%s".', $key));

    return 0;
  }

}
Back to Directory File Manager