-
Notifications
You must be signed in to change notification settings - Fork 19
/
FacebookPageFeed.php
231 lines (203 loc) · 5.46 KB
/
FacebookPageFeed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
namespace RZ\MixedFeed;
use DateTime;
use Generator;
use GuzzleHttp\Psr7\Request;
use Psr\Cache\CacheItemPoolInterface;
use RZ\MixedFeed\Canonical\FeedItem;
use RZ\MixedFeed\Canonical\Image;
use RZ\MixedFeed\Exception\CredentialsException;
use stdClass;
/**
* Get a Facebook public page timeline feed using an App Token.
*
* https://developers.facebook.com/docs/facebook-login/access-tokens
*/
class FacebookPageFeed extends AbstractFeedProvider
{
protected string $pageId;
protected string $accessToken;
/** @var string[] */
protected array $fields;
protected string $apiBaseUrl = 'https://graph.facebook.com/v3.3/';
protected ?DateTime $since = null;
protected ?DateTime $until = null;
/**
* @param string $accessToken Your App Token
* @param string[] $fields
*
* @throws CredentialsException
*/
public function __construct(
string $pageId,
string $accessToken,
?CacheItemPoolInterface $cacheProvider = null,
array $fields = [],
?string $apiBaseUrl = null
) {
parent::__construct($cacheProvider);
$this->pageId = $pageId;
$this->accessToken = $accessToken;
$this->fields = [
'from',
'picture',
'full_picture',
'message',
'story',
'created_time',
'status_type',
'message_tags',
'shares',
'permalink_url',
];
$this->fields = \array_unique(\array_merge($this->fields, $fields));
$this->apiBaseUrl = $apiBaseUrl ?: $this->apiBaseUrl;
if (empty($this->accessToken)) {
throw new CredentialsException('FacebookPageFeed needs a valid App access token.', 1);
}
}
protected function getCacheKey(): string
{
return $this->getFeedPlatform() . $this->pageId;
}
/**
* @inheritDoc
*/
public function getRequests(int $count = 5): Generator
{
$params = [
'access_token' => $this->accessToken,
'limit' => $count,
'fields' => \implode(',', $this->fields),
];
/*
* Filter by date range
*/
if (
null !== $this->since &&
$this->since instanceof DateTime
) {
$params['since'] = $this->since->getTimestamp();
}
if (
null !== $this->until &&
$this->until instanceof DateTime
) {
$params['until'] = $this->until->getTimestamp();
}
$value = \http_build_query($params, '', '&', PHP_QUERY_RFC3986);
yield new Request(
'GET',
$this->apiBaseUrl . $this->pageId . '/posts?' . $value
);
}
protected function getFeed(int $count = 5)
{
$rawFeed = $this->getCachedRawFeed($count);
if (\is_array($rawFeed) && isset($rawFeed['error'])) {
return $rawFeed;
}
return $rawFeed->data;
}
/**
* {@inheritdoc}
*/
public function getDateTime($item): ?DateTime
{
return new DateTime($item->created_time);
}
/**
* {@inheritdoc}
*/
public function getCanonicalMessage(stdClass $item): string
{
return isset($item->message) ? $item->message : '';
}
/**
* {@inheritdoc}
*/
public function getFeedPlatform(): string
{
return 'facebook_page';
}
/**
* Gets the value of since.
*/
public function getSince(): ?DateTime
{
return $this->since;
}
/**
* Sets the value of since.
*
* @param DateTime $since the since
*/
public function setSince(?DateTime $since): AbstractFeedProvider
{
$this->since = $since;
return $this;
}
/**
* Gets the value of until.
*/
public function getUntil(): ?DateTime
{
return $this->until;
}
/**
* Sets the value of until.
*
* @param DateTime $until the until
*/
public function setUntil(?DateTime $until): AbstractFeedProvider
{
$this->until = $until;
return $this;
}
/**
* @inheritDoc
*/
protected function createFeedItemFromObject(stdClass $item): FeedItem
{
$feedItem = parent::createFeedItemFromObject($item);
$feedItem->setId($item->id);
if (isset($item->from)) {
$feedItem->setAuthor($item->from->name);
}
if (isset($item->link)) {
$feedItem->setLink($item->link);
}
if (isset($item->permalink_url)) {
$feedItem->setLink($item->permalink_url);
}
if (isset($item->shares)) {
$feedItem->setShareCount($item->shares->count);
}
if (isset($item->message_tags)) {
$feedItem->setTags(\array_map(function ($messageTag) {
return $messageTag->name;
}, $item->message_tags));
}
if (isset($item->full_picture)) {
$feedItemImage = new Image();
$feedItemImage->setUrl($item->full_picture);
$feedItem->addImage($feedItemImage);
}
return $feedItem;
}
/** @return string[] */
public function getFields(): array
{
return $this->fields;
}
/**
* @param string[] $fields
*
* @return FacebookPageFeed
*/
public function setFields(array $fields)
{
$this->fields = \array_unique($fields);
return $this;
}
}