Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15449291
D19222.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D19222.id.diff
View Options
diff --git a/src/applications/project/query/PhabricatorProjectQuery.php b/src/applications/project/query/PhabricatorProjectQuery.php
--- a/src/applications/project/query/PhabricatorProjectQuery.php
+++ b/src/applications/project/query/PhabricatorProjectQuery.php
@@ -357,29 +357,69 @@
}
protected function didFilterPage(array $projects) {
+ $viewer = $this->getViewer();
+
if ($this->needImages) {
- $file_phids = mpull($projects, 'getProfileImagePHID');
- $file_phids = array_filter($file_phids);
+ $need_images = $projects;
+
+ // First, try to load custom profile images for any projects with custom
+ // images.
+ $file_phids = array();
+ foreach ($need_images as $key => $project) {
+ $image_phid = $project->getProfileImagePHID();
+ if ($image_phid) {
+ $file_phids[$key] = $image_phid;
+ }
+ }
+
if ($file_phids) {
$files = id(new PhabricatorFileQuery())
->setParentQuery($this)
- ->setViewer($this->getViewer())
+ ->setViewer($viewer)
->withPHIDs($file_phids)
->execute();
$files = mpull($files, null, 'getPHID');
- } else {
- $files = array();
+
+ foreach ($file_phids as $key => $image_phid) {
+ $file = idx($files, $image_phid);
+ if (!$file) {
+ continue;
+ }
+
+ $need_images[$key]->attachProfileImageFile($file);
+ unset($need_images[$key]);
+ }
}
- foreach ($projects as $project) {
- $file = idx($files, $project->getProfileImagePHID());
- if (!$file) {
- $builtin = PhabricatorProjectIconSet::getIconImage(
- $project->getIcon());
- $file = PhabricatorFile::loadBuiltin($this->getViewer(),
- 'projects/'.$builtin);
+ // For projects with default images, or projects where the custom image
+ // failed to load, load a builtin image.
+ if ($need_images) {
+ $builtin_map = array();
+ $builtins = array();
+ foreach ($need_images as $key => $project) {
+ $icon = $project->getIcon();
+
+ $builtin_name = PhabricatorProjectIconSet::getIconImage($icon);
+ $builtin_name = 'projects/'.$builtin_name;
+
+ $builtin = id(new PhabricatorFilesOnDiskBuiltinFile())
+ ->setName($builtin_name);
+
+ $builtin_key = $builtin->getBuiltinFileKey();
+
+ $builtins[] = $builtin;
+ $builtin_map[$key] = $builtin_key;
+ }
+
+ $builtin_files = PhabricatorFile::loadBuiltins(
+ $viewer,
+ $builtins);
+
+ foreach ($need_images as $key => $project) {
+ $builtin_key = $builtin_map[$key];
+ $builtin_file = $builtin_files[$builtin_key];
+ $project->attachProfileImageFile($builtin_file);
}
- $project->attachProfileImageFile($file);
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 29, 9:18 AM (5 d, 22 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7725452
Default Alt Text
D19222.id.diff (2 KB)
Attached To
Mode
D19222: Bulk load builtin project default profile images
Attached
Detach File
Event Timeline
Log In to Comment