[Picuki] fix: item parsing (#2619)

Fixes a problem with the entire content being a link.

Also truncate title.

They have referrer checks on their images. So clicking the
enclosure doesnt work. Will fix later.
This commit is contained in:
dag 2022-04-10 18:54:48 +02:00 committed by GitHub
parent dbee47f1d6
commit 0b40f51c01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 9 deletions

View File

@ -57,19 +57,18 @@ class PicukiBridge extends BridgeAbstract
$item['uri'] = urljoin(self::URI, $element->find('a', 0)->href);
$item['title'] = $element->find('.photo-description', 0)->plaintext;
$description = trim($element->find('.photo-description', 0)->plaintext);
$item['title'] = mb_substr($description, 0, 60);
$is_video = (bool) $element->find('.video-icon', 0);
$item['content'] = ($is_video) ? '(video) ' : '';
$item['content'] .= $element->find('.photo', 0)->outertext;
$item['enclosures'] = array(
// just add `.jpg` extension to get the correct mime type. All Instagram posts are JPG
urljoin(self::URI, $element->find('.post-image', 0)->src . '.jpg')
);
$item['thumbnail'] = urljoin(self::URI, $element->find('.post-image', 0)->src);
$item['content'] .= $description;
$postImage = $element->find('.post-image', 0)->src;
$item['enclosures'] = [
urljoin(self::URI, $postImage)
];
$item['thumbnail'] = urljoin(self::URI, $postImage);
$this->items[] = $item;
}
}