2011-06-24 19:59:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group markup
|
|
|
|
*/
|
2012-03-14 00:21:04 +01:00
|
|
|
final class PhabricatorRemarkupRuleMention
|
2011-06-24 19:59:57 +02:00
|
|
|
extends PhutilRemarkupRule {
|
|
|
|
|
2011-11-30 17:45:31 +01:00
|
|
|
const KEY_RULE_MENTION = 'rule.mention';
|
|
|
|
const KEY_RULE_MENTION_ORIGINAL = 'rule.mention.original';
|
|
|
|
|
|
|
|
const KEY_MENTIONED = 'phabricator.mentioned-user-phids';
|
2011-06-24 19:59:57 +02:00
|
|
|
|
|
|
|
|
2012-06-06 16:09:05 +02:00
|
|
|
// NOTE: The negative lookbehind prevents matches like "mail@lists", while
|
|
|
|
// allowing constructs like "@tomo/@mroch". Since we now allow periods in
|
|
|
|
// usernames, we can't resonably distinguish that "@company.com" isn't a
|
|
|
|
// username, so we'll incorrectly pick it up, but there's little to be done
|
|
|
|
// about that. We forbid terminal periods so that we can correctly capture
|
|
|
|
// "@joe" instead of "@joe." in "Hey, @joe.".
|
|
|
|
const REGEX = '/(?<!\w)@([a-zA-Z0-9._-]*[a-zA-Z0-9_-])/';
|
2011-06-24 19:59:57 +02:00
|
|
|
|
2012-03-28 07:23:16 +02:00
|
|
|
public function apply($text) {
|
2013-02-22 01:13:55 +01:00
|
|
|
return preg_replace_callback(
|
2012-03-28 07:23:16 +02:00
|
|
|
self::REGEX,
|
2011-07-27 21:41:21 +02:00
|
|
|
array($this, 'markupMention'),
|
|
|
|
$text);
|
|
|
|
}
|
|
|
|
|
2013-02-13 23:50:15 +01:00
|
|
|
protected function markupMention($matches) {
|
2011-07-27 21:41:21 +02:00
|
|
|
$engine = $this->getEngine();
|
2013-03-23 01:33:36 +01:00
|
|
|
|
|
|
|
if ($engine->isTextMode()) {
|
|
|
|
return $engine->storeText($matches[0]);
|
|
|
|
}
|
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
$token = $engine->storeText('');
|
|
|
|
|
2011-11-30 17:45:31 +01:00
|
|
|
// Store the original text exactly so we can preserve casing if it doesn't
|
|
|
|
// resolve into a username.
|
|
|
|
$original_key = self::KEY_RULE_MENTION_ORIGINAL;
|
|
|
|
$original = $engine->getTextMetadata($original_key, array());
|
|
|
|
$original[$token] = $matches[1];
|
|
|
|
$engine->setTextMetadata($original_key, $original);
|
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
$metadata_key = self::KEY_RULE_MENTION;
|
|
|
|
$metadata = $engine->getTextMetadata($metadata_key, array());
|
2011-11-30 17:45:31 +01:00
|
|
|
$username = strtolower($matches[1]);
|
2011-07-27 21:41:21 +02:00
|
|
|
if (empty($metadata[$username])) {
|
|
|
|
$metadata[$username] = array();
|
2011-06-24 19:59:57 +02:00
|
|
|
}
|
2011-07-27 21:41:21 +02:00
|
|
|
$metadata[$username][] = $token;
|
|
|
|
$engine->setTextMetadata($metadata_key, $metadata);
|
|
|
|
|
|
|
|
return $token;
|
|
|
|
}
|
2011-06-24 19:59:57 +02:00
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
public function didMarkupText() {
|
|
|
|
$engine = $this->getEngine();
|
|
|
|
|
|
|
|
$metadata_key = self::KEY_RULE_MENTION;
|
|
|
|
$metadata = $engine->getTextMetadata($metadata_key, array());
|
|
|
|
if (empty($metadata)) {
|
|
|
|
// No mentions, or we already processed them.
|
|
|
|
return;
|
|
|
|
}
|
2011-06-24 19:59:57 +02:00
|
|
|
|
2011-11-30 17:45:31 +01:00
|
|
|
$original_key = self::KEY_RULE_MENTION_ORIGINAL;
|
|
|
|
$original = $engine->getTextMetadata($original_key, array());
|
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
$usernames = array_keys($metadata);
|
2013-04-05 18:17:27 +02:00
|
|
|
|
|
|
|
$users = id(new PhabricatorPeopleQuery())
|
|
|
|
->withUsernames($usernames)
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
if ($users) {
|
|
|
|
$user_statuses = id(new PhabricatorUserStatus())
|
|
|
|
->loadCurrentStatuses(mpull($users, 'getPHID'));
|
|
|
|
$user_statuses = mpull($user_statuses, null, 'getUserPHID');
|
|
|
|
} else {
|
|
|
|
$user_statuses = array();
|
|
|
|
}
|
2011-06-24 19:59:57 +02:00
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
$actual_users = array();
|
2011-06-24 20:50:19 +02:00
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
$mentioned_key = self::KEY_MENTIONED;
|
|
|
|
$mentioned = $engine->getTextMetadata($mentioned_key, array());
|
2013-04-05 18:17:27 +02:00
|
|
|
foreach ($users as $row) {
|
|
|
|
$actual_users[strtolower($row->getUserName())] = $row;
|
|
|
|
$mentioned[$row->getPHID()] = $row->getPHID();
|
2011-06-24 19:59:57 +02:00
|
|
|
}
|
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
$engine->setTextMetadata($mentioned_key, $mentioned);
|
|
|
|
|
|
|
|
foreach ($metadata as $username => $tokens) {
|
|
|
|
$exists = isset($actual_users[$username]);
|
|
|
|
|
|
|
|
if ($exists) {
|
2013-04-05 18:17:27 +02:00
|
|
|
$user = $actual_users[$username];
|
|
|
|
Javelin::initBehavior('phabricator-hovercards');
|
|
|
|
|
|
|
|
$tag = id(new PhabricatorTagView())
|
|
|
|
->setType(PhabricatorTagView::TYPE_PERSON)
|
|
|
|
->setPHID($user->getPHID())
|
|
|
|
->setName('@'.$user->getUserName())
|
|
|
|
->setHref('/p/'.$user->getUserName().'/');
|
|
|
|
|
|
|
|
if ($user->getIsDisabled()) {
|
|
|
|
$tag->setDotColor(PhabricatorTagView::COLOR_GREY);
|
|
|
|
} else {
|
|
|
|
$status = idx($user_statuses, $user->getPHID());
|
|
|
|
if ($status) {
|
|
|
|
$status = $status->getStatus();
|
|
|
|
if ($status == PhabricatorUserStatus::STATUS_AWAY) {
|
|
|
|
$tag->setDotColor(PhabricatorTagView::COLOR_RED);
|
|
|
|
} else if ($status == PhabricatorUserStatus::STATUS_AWAY) {
|
|
|
|
$tag->setDotColor(PhabricatorTagView::COLOR_ORANGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 17:45:31 +01:00
|
|
|
foreach ($tokens as $token) {
|
|
|
|
$engine->overwriteStoredText($token, $tag);
|
|
|
|
}
|
2011-07-27 21:41:21 +02:00
|
|
|
} else {
|
2011-11-30 17:45:31 +01:00
|
|
|
// NOTE: The structure here is different from the 'exists' branch,
|
|
|
|
// because we want to preserve the original text capitalization and it
|
|
|
|
// may differ for each token.
|
|
|
|
foreach ($tokens as $token) {
|
2013-01-18 03:43:35 +01:00
|
|
|
$tag = phutil_tag(
|
2011-11-30 17:45:31 +01:00
|
|
|
'span',
|
|
|
|
array(
|
2013-04-05 18:17:27 +02:00
|
|
|
'class' => 'phabricator-remarkup-mention-unknown',
|
2011-11-30 17:45:31 +01:00
|
|
|
),
|
2013-01-18 03:43:35 +01:00
|
|
|
'@'.idx($original, $token, $username));
|
2011-11-30 17:45:31 +01:00
|
|
|
$engine->overwriteStoredText($token, $tag);
|
|
|
|
}
|
2011-07-27 21:41:21 +02:00
|
|
|
}
|
2011-06-24 19:59:57 +02:00
|
|
|
}
|
|
|
|
|
2011-07-27 21:41:21 +02:00
|
|
|
// Don't re-process these mentions.
|
|
|
|
$engine->setTextMetadata($metadata_key, array());
|
2011-06-24 19:59:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|