2011-04-14 00:15:48 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-01-10 23:48:55 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-04-14 00:15:48 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group markup
|
|
|
|
*/
|
2012-03-14 00:21:04 +01:00
|
|
|
final class PhabricatorRemarkupRuleImageMacro
|
2011-04-14 00:15:48 +02:00
|
|
|
extends PhutilRemarkupRule {
|
|
|
|
|
|
|
|
private $images = array();
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
$rows = id(new PhabricatorFileImageMacro())->loadAll();
|
|
|
|
foreach ($rows as $row) {
|
|
|
|
$this->images[$row->getName()] = $row->getFilePHID();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function apply($text) {
|
|
|
|
return preg_replace_callback(
|
2012-04-13 20:30:01 +02:00
|
|
|
'@^([a-zA-Z0-9_\-]+)$@m',
|
2011-04-14 00:15:48 +02:00
|
|
|
array($this, 'markupImageMacro'),
|
|
|
|
$text);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function markupImageMacro($matches) {
|
|
|
|
if (array_key_exists($matches[1], $this->images)) {
|
2012-04-13 20:30:01 +02:00
|
|
|
$phid = $this->images[$matches[1]];
|
2011-04-14 00:15:48 +02:00
|
|
|
|
2012-01-10 23:48:55 +01:00
|
|
|
$file = id(new PhabricatorFile())->loadOneWhere('phid = %s', $phid);
|
|
|
|
if ($file) {
|
|
|
|
$src_uri = $file->getBestURI();
|
|
|
|
} else {
|
|
|
|
$src_uri = null;
|
|
|
|
}
|
2011-04-14 00:15:48 +02:00
|
|
|
|
|
|
|
$img = phutil_render_tag(
|
|
|
|
'img',
|
|
|
|
array(
|
2012-01-10 23:48:55 +01:00
|
|
|
'src' => $src_uri,
|
2011-04-14 00:15:48 +02:00
|
|
|
'alt' => $matches[1],
|
|
|
|
'title' => $matches[1]),
|
|
|
|
null);
|
|
|
|
return $this->getEngine()->storeText($img);
|
|
|
|
} else {
|
|
|
|
return $matches[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|