Page MenuHomePhorge

PhabricatorRemarkupCowsayBlockInterpreter.php
No OneTemporary

PhabricatorRemarkupCowsayBlockInterpreter.php

<?php
final class PhabricatorRemarkupCowsayBlockInterpreter
extends PhutilRemarkupBlockInterpreter
implements RemarkupSyntaxDocumentationProvider {
public function getInterpreterName() {
return 'cowsay';
}
public function markupContent($content, array $argv) {
$action = idx($argv, 'think') ? 'think' : 'say';
$eyes = idx($argv, 'eyes', 'oo');
$tongue = idx($argv, 'tongue', ' ');
$map = self::getCowMap();
$cow = idx($argv, 'cow');
$cow = phutil_utf8_strtolower($cow);
if (empty($map[$cow])) {
$cow = 'default';
}
$result = id(new PhutilCowsay())
->setTemplate($map[$cow])
->setAction($action)
->setEyes($eyes)
->setTongue($tongue)
->setText($content)
->renderCow();
$engine = $this->getEngine();
if ($engine->isTextMode()) {
return $result;
}
if ($engine->isHTMLMailMode()) {
return phutil_tag('pre', array(), $result);
}
return phutil_tag(
'div',
array(
'class' => 'PhabricatorMonospaced remarkup-cowsay',
),
$result);
}
private static function getCowMap() {
$root = dirname(phutil_get_library_root('phabricator'));
$directories = array(
$root.'/externals/cowsay/cows/',
$root.'/resources/cows/builtin/',
$root.'/resources/cows/custom/',
);
$map = array();
foreach ($directories as $directory) {
foreach (Filesystem::listDirectory($directory, false) as $cow_file) {
$matches = null;
if (!preg_match('/^(.*)\.cow\z/', $cow_file, $matches)) {
continue;
}
$cow_name = $matches[1];
$cow_name = phutil_utf8_strtolower($cow_name);
$map[$cow_name] = Filesystem::readFile($directory.$cow_file);
}
}
return $map;
}
public function getDocumentation() {
return <<<EOT
= Cowsay
Cowsay is an application by Tony Monroe which has been ported over to
Phabricator/Phorge to allow your comments to be voiced by
a cow.
A basic example of using cowsay would be to add a comment
cowsay{{{Why don't they play poker in the jungle? Too many cheetahs}}}
which generates:
cowsay{{{Why don't they play poker in the jungle? Too many cheetahs}}}
[[/reference/cowsay/ | More information about Cowsay]] is available.
EOT;
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Mar 27, 00:39 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1117904
Default Alt Text
PhabricatorRemarkupCowsayBlockInterpreter.php (2 KB)

Event Timeline