mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-01-08 13:51:01 +01:00
d2b38cdf94
Summary: `pht`ize almost all strings in rARC. Test Plan: ¯\_(ツ)_/¯ Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: aurelijus, Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12607
146 lines
3.4 KiB
PHP
146 lines
3.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Upload a chunk of text to the Paste application, or download one.
|
|
*/
|
|
final class ArcanistPasteWorkflow extends ArcanistWorkflow {
|
|
|
|
private $id;
|
|
private $language;
|
|
private $title;
|
|
private $json;
|
|
|
|
public function getWorkflowName() {
|
|
return 'paste';
|
|
}
|
|
|
|
public function getCommandSynopses() {
|
|
return phutil_console_format(<<<EOTEXT
|
|
**paste** [--title __title__] [--lang __language__] [--json]
|
|
**paste** __id__ [--json]
|
|
EOTEXT
|
|
);
|
|
}
|
|
|
|
public function getCommandHelp() {
|
|
return phutil_console_format(<<<EOTEXT
|
|
Supports: text
|
|
Share and grab text using the Paste application. To create a paste,
|
|
use stdin to provide the text:
|
|
|
|
$ cat list_of_ducks.txt | arc paste
|
|
|
|
To retrieve a paste, specify the paste ID:
|
|
|
|
$ arc paste P123
|
|
EOTEXT
|
|
);
|
|
}
|
|
|
|
public function getArguments() {
|
|
return array(
|
|
'title' => array(
|
|
'param' => 'title',
|
|
'help' => pht('Title for the paste.'),
|
|
),
|
|
'lang' => array(
|
|
'param' => 'language',
|
|
'help' => pht('Language for syntax highlighting.'),
|
|
),
|
|
'json' => array(
|
|
'help' => pht('Output in JSON format.'),
|
|
),
|
|
'*' => 'argv',
|
|
);
|
|
}
|
|
|
|
public function requiresAuthentication() {
|
|
return true;
|
|
}
|
|
|
|
protected function didParseArguments() {
|
|
$this->json = $this->getArgument('json');
|
|
$this->language = $this->getArgument('lang');
|
|
$this->title = $this->getArgument('title');
|
|
|
|
$argv = $this->getArgument('argv');
|
|
if (count($argv) > 1) {
|
|
throw new ArcanistUsageException(
|
|
pht('Specify only one paste to retrieve.'));
|
|
} else if (count($argv) == 1) {
|
|
$id = $argv[0];
|
|
if (!preg_match('/^P?\d+/', $id)) {
|
|
throw new ArcanistUsageException(
|
|
pht(
|
|
'Specify a paste ID, like %s.',
|
|
'P123'));
|
|
}
|
|
$this->id = (int)ltrim($id, 'P');
|
|
|
|
if ($this->language || $this->title) {
|
|
throw new ArcanistUsageException(
|
|
pht(
|
|
'Use options %s and %s only when creating pastes.',
|
|
'--lang',
|
|
'--title'));
|
|
}
|
|
}
|
|
}
|
|
|
|
public function run() {
|
|
if ($this->id) {
|
|
return $this->getPaste();
|
|
} else {
|
|
return $this->createPaste();
|
|
}
|
|
}
|
|
|
|
private function getPaste() {
|
|
$conduit = $this->getConduit();
|
|
|
|
$info = $conduit->callMethodSynchronous(
|
|
'paste.query',
|
|
array(
|
|
'ids' => array($this->id),
|
|
));
|
|
$info = head($info);
|
|
|
|
if ($this->json) {
|
|
echo json_encode($info)."\n";
|
|
} else {
|
|
echo $info['content'];
|
|
if (!preg_match('/\\n$/', $info['content'])) {
|
|
// If there's no newline, add one, since it looks stupid otherwise. If
|
|
// you want byte-for-byte equivalence you can use `--json`.
|
|
echo "\n";
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
private function createPaste() {
|
|
$conduit = $this->getConduit();
|
|
|
|
if (!function_exists('posix_isatty') || posix_isatty(STDIN)) {
|
|
$this->writeStatusMessage(pht('Reading paste from stdin...')."\n");
|
|
}
|
|
|
|
$info = $conduit->callMethodSynchronous(
|
|
'paste.create',
|
|
array(
|
|
'content' => file_get_contents('php://stdin'),
|
|
'title' => $this->title,
|
|
'language' => $this->language,
|
|
));
|
|
|
|
if ($this->getArgument('json')) {
|
|
echo json_encode($info)."\n";
|
|
} else {
|
|
echo $info['objectName'].': '.$info['uri']."\n";
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
}
|