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:
<?php
namespace Donut\Facebook;
use Donut\IWorker;
use Donut\Message;
use Donut\Manager;
class PublishFacebookPost implements IWorker
{
private $facebookApi;
public function __construct(FacebookApi $facebookApi)
{
$this->facebookApi = $facebookApi;
}
public function processMessage(Message $message, Manager $manager)
{
$fbPost = FacebookPost::fromArray($message->getData());
$gallery = $fbPost->getGallery();
$data = array();
if ($fbPost->getMessage() !== NULL) {
$data['message'] = $fbPost->getMessage();
}
if ($fbPost->getLink() !== NULL) {
$data['link'] = $fbPost->getLink();
if ($fbPost->getGallery() !== NULL) {
$limit = 5;
foreach ($fbPost->getGallery() as $galleryPhoto) {
$data['child_attachments'][] = array(
'link' => $fbPost->getLink(),
'picture' => $galleryPhoto,
);
$limit--;
if ($limit < 1) {
break;
}
}
if (isset($data['child_attachments']) && count($data['child_attachments']) < 2) {
unset($data['child_attachments']);
}
}
}
if (empty($data)) {
throw new \Donut\InvalidStateException('Empty fbPost, missing message and link');
}
if ($fbPost->getPicture() !== NULL) {
}
$data['access_token'] = $this->facebookApi->getAccessToken();
$fbNode = '/' . $this->facebookApi->getAccountId() . '/feed';
$facebook = $this->facebookApi->getFacebook();
$facebook->post($fbNode, $data);
}
}