]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Helper/ContentProxy.php
Added http_status in Entry entity
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Helper / ContentProxy.php
CommitLineData
558d9aab
JB
1<?php
2
3namespace Wallabag\CoreBundle\Helper;
4
5use Graby\Graby;
45fd7e09 6use Psr\Log\LoggerInterface;
558d9aab 7use Wallabag\CoreBundle\Entity\Entry;
c2656f96 8use Wallabag\CoreBundle\Entity\Tag;
da3d4998 9use Wallabag\CoreBundle\Tools\Utils;
c2656f96 10use Wallabag\CoreBundle\Repository\TagRepository;
558d9aab
JB
11
12/**
13 * This kind of proxy class take care of getting the content from an url
f1e29e69 14 * and update the entry with what it found.
558d9aab
JB
15 */
16class ContentProxy
17{
18 protected $graby;
c3510620 19 protected $tagger;
1c9cd2a7 20 protected $logger;
c2656f96 21 protected $tagRepository;
558d9aab 22
45fd7e09 23 public function __construct(Graby $graby, RuleBasedTagger $tagger, TagRepository $tagRepository, LoggerInterface $logger)
558d9aab 24 {
347fa6be 25 $this->graby = $graby;
c3510620 26 $this->tagger = $tagger;
1c9cd2a7 27 $this->logger = $logger;
c2656f96 28 $this->tagRepository = $tagRepository;
558d9aab
JB
29 }
30
31 /**
32 * Fetch content using graby and hydrate given entry with results information.
f1e29e69 33 * In case we couldn't find content, we'll try to use Open Graph data.
558d9aab 34 *
4d0ec0e7
JB
35 * We can also force the content, in case of an import from the v1 for example, so the function won't
36 * fetch the content from the website but rather use information given with the $content parameter.
37 *
38 * @param Entry $entry Entry to update
39 * @param string $url Url to grab content for
40 * @param array $content An array with AT LEAST keys title, html, url, language & content_type to skip the fetchContent from the url
558d9aab
JB
41 *
42 * @return Entry
43 */
4d0ec0e7 44 public function updateEntry(Entry $entry, $url, array $content = [])
558d9aab 45 {
4d0ec0e7
JB
46 // do we have to fetch the content or the provided one is ok?
47 if (empty($content) || false === $this->validateContent($content)) {
48 $content = $this->graby->fetchContent($url);
49 }
558d9aab
JB
50
51 $title = $content['title'];
52 if (!$title && isset($content['open_graph']['og_title'])) {
53 $title = $content['open_graph']['og_title'];
54 }
55
56 $html = $content['html'];
57 if (false === $html) {
58 $html = '<p>Unable to retrieve readable content.</p>';
59
60 if (isset($content['open_graph']['og_description'])) {
61 $html .= '<p><i>But we found a short description: </i></p>';
62 $html .= $content['open_graph']['og_description'];
63 }
64 }
65
66 $entry->setUrl($content['url'] ?: $url);
67 $entry->setTitle($title);
48656e0e 68 $entry->setContent($html);
10b35097 69 $entry->setHttpStatus(isset($content['status']) ? $content['status'] : '');
419214d7 70
98f0929f 71 $entry->setLanguage($content['language']);
558d9aab 72 $entry->setMimetype($content['content_type']);
da3d4998 73 $entry->setReadingTime(Utils::getReadingTime($html));
4d0ec0e7
JB
74
75 $domainName = parse_url($entry->getUrl(), PHP_URL_HOST);
76 if (false !== $domainName) {
77 $entry->setDomainName($domainName);
78 }
558d9aab
JB
79
80 if (isset($content['open_graph']['og_image'])) {
81 $entry->setPreviewPicture($content['open_graph']['og_image']);
82 }
83
1c9cd2a7
KG
84 try {
85 $this->tagger->tag($entry);
86 } catch (\Exception $e) {
4094ea47 87 $this->logger->error('Error while trying to automatically tag an entry.', [
1c9cd2a7
KG
88 'entry_url' => $url,
89 'error_msg' => $e->getMessage(),
4094ea47 90 ]);
1c9cd2a7 91 }
c3510620 92
558d9aab
JB
93 return $entry;
94 }
c2656f96
JB
95
96 /**
97 * Assign some tags to an entry.
98 *
99 * @param Entry $entry
82fc3290
JB
100 * @param array|string $tags An array of tag or a string coma separated of tag
101 * @param array $entitiesReady Entities from the EntityManager which are persisted but not yet flushed
102 * It is mostly to fix duplicate tag on import @see http://stackoverflow.com/a/7879164/569101
c2656f96 103 */
40113585 104 public function assignTagsToEntry(Entry $entry, $tags, array $entitiesReady = [])
c2656f96
JB
105 {
106 if (!is_array($tags)) {
107 $tags = explode(',', $tags);
108 }
109
40113585
JB
110 // keeps only Tag entity from the "not yet flushed entities"
111 $tagsNotYetFlushed = [];
112 foreach ($entitiesReady as $entity) {
113 if ($entity instanceof Tag) {
114 $tagsNotYetFlushed[$entity->getLabel()] = $entity;
115 }
116 }
117
c2656f96
JB
118 foreach ($tags as $label) {
119 $label = trim($label);
120
121 // avoid empty tag
122 if (0 === strlen($label)) {
123 continue;
124 }
125
40113585
JB
126 if (isset($tagsNotYetFlushed[$label])) {
127 $tagEntity = $tagsNotYetFlushed[$label];
128 } else {
129 $tagEntity = $this->tagRepository->findOneByLabel($label);
c2656f96 130
40113585
JB
131 if (is_null($tagEntity)) {
132 $tagEntity = new Tag();
133 $tagEntity->setLabel($label);
134 }
c2656f96
JB
135 }
136
137 // only add the tag on the entry if the relation doesn't exist
138 if (false === $entry->getTags()->contains($tagEntity)) {
139 $entry->addTag($tagEntity);
140 }
141 }
142 }
4d0ec0e7
JB
143
144 /**
145 * Validate that the given content as enough value to be used
146 * instead of fetch the content from the url.
147 *
148 * @param array $content
149 *
150 * @return bool true if valid otherwise false
151 */
152 private function validateContent(array $content)
153 {
154 return isset($content['title']) && isset($content['html']) && isset($content['url']) && isset($content['language']) && isset($content['content_type']);
155 }
558d9aab 156}