Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15348164
D12909.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D12909.diff
View Options
diff --git a/src/applications/paste/query/PhabricatorPasteQuery.php b/src/applications/paste/query/PhabricatorPasteQuery.php
--- a/src/applications/paste/query/PhabricatorPasteQuery.php
+++ b/src/applications/paste/query/PhabricatorPasteQuery.php
@@ -90,7 +90,7 @@
}
if ($this->needContent) {
- $this->loadContent($pastes);
+ $pastes = $this->loadContent($pastes);
}
return $pastes;
@@ -205,29 +205,46 @@
$caches = $cache->getKeys($keys);
$need_raw = array();
- foreach ($pastes as $key => $paste) {
+ $have_cache = array();
+ foreach ($pastes as $paste) {
$key = $this->getContentCacheKey($paste);
if (isset($caches[$key])) {
$paste->attachContent(phutil_safe_html($caches[$key]));
+ $have_cache[$paste->getPHID()] = true;
} else {
$need_raw[$key] = $paste;
}
}
if (!$need_raw) {
- return;
+ return $pastes;
}
$write_data = array();
- $need_raw = $this->loadRawContent($need_raw);
- foreach ($need_raw as $key => $paste) {
+ $have_raw = $this->loadRawContent($need_raw);
+ $have_raw = mpull($have_raw, null, 'getPHID');
+ foreach ($pastes as $key => $paste) {
+ $paste_phid = $paste->getPHID();
+ if (isset($have_cache[$paste_phid])) {
+ continue;
+ }
+
+ if (empty($have_raw[$paste_phid])) {
+ unset($pastes[$key]);
+ continue;
+ }
+
$content = $this->buildContent($paste);
$paste->attachContent($content);
$write_data[$this->getContentCacheKey($paste)] = (string)$content;
}
- $cache->setKeys($write_data);
+ if ($write_data) {
+ $cache->setKeys($write_data);
+ }
+
+ return $pastes;
}
private function buildContent(PhabricatorPaste $paste) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 11, 2:20 PM (3 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7530509
Default Alt Text
D12909.diff (1 KB)
Attached To
Mode
D12909: Filter pastes at the query level if we're unable to load their content
Attached
Detach File
Event Timeline
Log In to Comment