Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15450000
D7882.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D7882.diff
View Options
Index: src/applications/project/phid/PhabricatorProjectPHIDTypeProject.php
===================================================================
--- src/applications/project/phid/PhabricatorProjectPHIDTypeProject.php
+++ src/applications/project/phid/PhabricatorProjectPHIDTypeProject.php
@@ -41,9 +41,57 @@
}
}
+ public static function getProjectMonogramPatternFragment() {
+ // NOTE: This explicitly does not match strings which contain only
+ // digits, because digit strings like "#123" are used to reference tasks at
+ // Facebook and are somewhat conventional in general.
+ return '[^\s.!,:;]*[^\s\d.!,:;]+[^\s.!,:;]*';
+ }
+
public function canLoadNamedObject($name) {
- // TODO: We should be able to load named projects by hashtag, e.g. "#yolo".
- return false;
+ $fragment = self::getProjectMonogramPatternFragment();
+ return preg_match('/^#'.$fragment.'$/i', $name);
+ }
+
+ public function loadNamedObjects(
+ PhabricatorObjectQuery $query,
+ array $names) {
+
+ // If the user types "#YoloSwag", we still want to match "#yoloswag", so
+ // we normalize, query, and then map back to the original inputs.
+
+ $map = array();
+ foreach ($names as $key => $slug) {
+ $map[$this->normalizeSlug(substr($slug, 1))][] = $slug;
+ }
+
+ $projects = id(new PhabricatorProjectQuery())
+ ->setViewer($query->getViewer())
+ ->withPhrictionSlugs(array_keys($map))
+ ->execute();
+
+ $result = array();
+ foreach ($projects as $project) {
+ $slugs = array($project->getPhrictionSlug());
+ foreach ($slugs as $slug) {
+ foreach ($map[$slug] as $original) {
+ $result[$original] = $project;
+ }
+ }
+ }
+
+ return $result;
}
+ private function normalizeSlug($slug) {
+ // NOTE: We're using phutil_utf8_strtolower() (and not PhabricatorSlug's
+ // normalize() method) because this normalization should be only somewhat
+ // liberal. We want "#YOLO" to match against "#yolo", but "#\\yo!!lo"
+ // should not. normalize() strips out most punctuation and leads to
+ // excessively aggressive matches.
+
+ return phutil_utf8_strtolower($slug).'/';
+ }
+
+
}
Index: src/applications/project/remarkup/ProjectRemarkupRule.php
===================================================================
--- src/applications/project/remarkup/ProjectRemarkupRule.php
+++ src/applications/project/remarkup/ProjectRemarkupRule.php
@@ -11,50 +11,34 @@
}
protected function getObjectIDPattern() {
- // NOTE: This explicitly does not match strings which contain only
- // digits, because digit strings like "#123" are used to reference tasks at
- // Facebook and are somewhat conventional in general.
- return '[^\s.!,:;]*[^\s\d.!,:;]+[^\s.!,:;]*';
+ return
+ PhabricatorProjectPHIDTypeProject::getProjectMonogramPatternFragment();
}
protected function loadObjects(array $ids) {
$viewer = $this->getEngine()->getConfig('viewer');
- // If the user types "#YoloSwag", we still want to match "#yoloswag", so
- // we normalize, query, and then map back to the original inputs.
-
- $map = array();
- foreach ($ids as $key => $slug) {
- $map[$this->normalizeSlug($slug)][] = $slug;
+ // Put the "#" back on the front of these IDs.
+ $names = array();
+ foreach ($ids as $id) {
+ $names[] = '#'.$id;
}
- $projects = id(new PhabricatorProjectQuery())
+ // Issue a query by object name.
+ $query = id(new PhabricatorObjectQuery())
->setViewer($viewer)
- ->withPhrictionSlugs(array_keys($map))
- ->execute();
+ ->withNames($names);
+
+ $query->execute();
+ $projects = $query->getNamedResults();
+ // Slice the "#" off again.
$result = array();
- foreach ($projects as $project) {
- $slugs = array($project->getPhrictionSlug());
- foreach ($slugs as $slug) {
- foreach ($map[$slug] as $original) {
- $result[$original] = $project;
- }
- }
+ foreach ($projects as $name => $project) {
+ $result[substr($name, 1)] = $project;
}
-
return $result;
}
- private function normalizeSlug($slug) {
- // NOTE: We're using phutil_utf8_strtolower() (and not PhabricatorSlug's
- // normalize() method) because this normalization should be only somewhat
- // liberal. We want "#YOLO" to match against "#yolo", but "#\\yo!!lo"
- // should not. normalize() strips out most punctuation and leads to
- // excessively aggressive matches.
-
- return phutil_utf8_strtolower($slug).'/';
- }
-
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 29, 1:25 PM (1 w, 10 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7239520
Default Alt Text
D7882.diff (4 KB)
Attached To
Mode
D7882: Recognize "#project" as a formal object name
Attached
Detach File
Event Timeline
Log In to Comment