Merge pull request #1271 from ArthurHoaro/hotfix/thumb-note-retrieve

Do not try to retrieve thumbnails for internal link
This commit is contained in:
ArthurHoaro 2019-03-02 10:54:06 +01:00 committed by GitHub
commit cc69aad4a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 42 additions and 7 deletions

View File

@ -59,7 +59,7 @@ class ApiUtils
{ {
$out['id'] = $link['id']; $out['id'] = $link['id'];
// Not an internal link // Not an internal link
if ($link['url'][0] != '?') { if (! is_note($link['url'])) {
$out['url'] = $link['url']; $out['url'] = $link['url'];
} else { } else {
$out['url'] = $indexUrl . $link['url']; $out['url'] = $indexUrl . $link['url'];

View File

@ -204,3 +204,16 @@ function link_small_hash($date, $id)
{ {
return smallHash($date->format(LinkDB::LINK_DATE_FORMAT) . $id); return smallHash($date->format(LinkDB::LINK_DATE_FORMAT) . $id);
} }
/**
* Returns whether or not the link is an internal note.
* Its URL starts by `?` because it's actually a permalink.
*
* @param string $linkUrl
*
* @return bool true if internal note, false otherwise.
*/
function is_note($linkUrl)
{
return isset($linkUrl[0]) && $linkUrl[0] === '?';
}

View File

@ -147,8 +147,8 @@ class FeedBuilder
protected function buildItem($link, $pageaddr) protected function buildItem($link, $pageaddr)
{ {
$link['guid'] = $pageaddr . '?' . $link['shorturl']; $link['guid'] = $pageaddr . '?' . $link['shorturl'];
// Check for both signs of a note: starting with ? and 7 chars long. // Prepend the root URL for notes
if ($link['url'][0] === '?' && strlen($link['url']) === 7) { if (is_note($link['url'])) {
$link['url'] = $pageaddr . $link['url']; $link['url'] = $pageaddr . $link['url'];
} }
if ($this->usePermalinks === true) { if ($this->usePermalinks === true) {

View File

@ -54,7 +54,7 @@ class NetscapeBookmarkUtils
$link['timestamp'] = $date->getTimestamp(); $link['timestamp'] = $date->getTimestamp();
$link['taglist'] = str_replace(' ', ',', $link['tags']); $link['taglist'] = str_replace(' ', ',', $link['tags']);
if (startsWith($link['url'], '?') && $prependNoteUrl) { if (is_note($link['url']) && $prependNoteUrl) {
$link['url'] = $indexUrl . $link['url']; $link['url'] = $indexUrl . $link['url'];
} }

View File

@ -356,7 +356,7 @@ function showDailyRSS($conf, $loginManager)
foreach ($links as &$link) { foreach ($links as &$link) {
$link['formatedDescription'] = format_description($link['description']); $link['formatedDescription'] = format_description($link['description']);
$link['timestamp'] = $link['created']->getTimestamp(); $link['timestamp'] = $link['created']->getTimestamp();
if (startsWith($link['url'], '?')) { if (is_note($link['url'])) {
$link['url'] = index_url($_SERVER) . $link['url']; // make permalink URL absolute $link['url'] = index_url($_SERVER) . $link['url']; // make permalink URL absolute
} }
} }
@ -1166,7 +1166,9 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history, $sessionManager,
$link['title'] = $link['url']; $link['title'] = $link['url'];
} }
if ($conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE) { if ($conf->get('thumbnails.mode', Thumbnailer::MODE_NONE) !== Thumbnailer::MODE_NONE
&& ! is_note($link['url'])
) {
$thumbnailer = new Thumbnailer($conf); $thumbnailer = new Thumbnailer($conf);
$link['thumbnail'] = $thumbnailer->get($url); $link['thumbnail'] = $thumbnailer->get($url);
} }
@ -1550,7 +1552,7 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history, $sessionManager,
$ids = []; $ids = [];
foreach ($LINKSDB as $link) { foreach ($LINKSDB as $link) {
// A note or not HTTP(S) // A note or not HTTP(S)
if ($link['url'][0] === '?' || ! startsWith(strtolower($link['url']), 'http')) { if (is_note($link['url']) || ! startsWith(strtolower($link['url']), 'http')) {
continue; continue;
} }
$ids[] = $link['id']; $ids[] = $link['id'];

View File

@ -288,6 +288,26 @@ class LinkUtilsTest extends \PHPUnit\Framework\TestCase
$this->assertNotContains('>#nothashtag', $autolinkedDescription); $this->assertNotContains('>#nothashtag', $autolinkedDescription);
} }
/**
* Test is_note with note URLs.
*/
public function testIsNote()
{
$this->assertTrue(is_note('?'));
$this->assertTrue(is_note('?abcDEf'));
$this->assertTrue(is_note('?_abcDEf#123'));
}
/**
* Test is_note with non note URLs.
*/
public function testIsNotNote()
{
$this->assertFalse(is_note(''));
$this->assertFalse(is_note('nope'));
$this->assertFalse(is_note('https://github.com/shaarli/Shaarli/?hi'));
}
/** /**
* Util function to build an hashtag link. * Util function to build an hashtag link.
* *