Viewing File: /home/ubuntu/code_review/arcanist/src/toolset/workflow/ArcanistVersionWorkflow.php

<?php

/**
 * Display the current version of Arcanist.
 */
final class ArcanistVersionWorkflow extends ArcanistWorkflow {

  public function supportsToolset(ArcanistToolset $toolset) {
    return true;
  }

  public function getWorkflowName() {
    return 'version';
  }

  public function getWorkflowInformation() {
    // TOOLSETS: Expand this help.

    $help = pht(<<<EOTEXT
Shows the current version.
EOTEXT
);

    return $this->newWorkflowInformation()
      ->setSynopsis(pht('Show toolset version information.'))
      ->addExample(pht('**version**'))
      ->setHelp($help);
  }

  public function getWorkflowArguments() {
    return array();
  }

  public function runWorkflow() {
    // TOOLSETS: Show the toolset version, not just the "arc" version.

    $console = PhutilConsole::getConsole();

    if (!Filesystem::binaryExists('git')) {
      throw new ArcanistUsageException(
        pht(
          'Cannot display current version without "%s" installed.',
          'git'));
    }

    $roots = array(
      'arcanist' => dirname(phutil_get_library_root('arcanist')),
    );

    foreach ($roots as $lib => $root) {
      $working_copy = ArcanistWorkingCopy::newFromWorkingDirectory($root);

      $repository_api = $working_copy->getRepositoryAPI();
      $is_git = ($repository_api instanceof ArcanistGitAPI);

      if (!$is_git) {
        throw new PhutilArgumentUsageException(
          pht(
            'Library "%s" (at "%s") is not a Git working copy, so no version '.
            'information can be provided.',
            $lib,
            Filesystem::readablePath($root)));
      }

      list($commit) = $repository_api->execxLocal(
        'log -1 --format=%s',
        '%ct%x01%H');
      $commit = trim($commit);

      list($timestamp, $commit) = explode("\1", $commit);

      $console->writeOut(
        "%s %s (%s)\n",
        $lib,
        $commit,
        date('j M Y', (int)$timestamp));
    }
  }

}
Back to Directory File Manager