Overview

Namespaces

  • Copro
    • Adapters
  • Donut
    • Adapters
    • AtomFeed
    • Facebook
    • Instagram
    • PostFeed
    • Twitter

Classes

  • Copro\Adapters\DibiMysqlAdapter
  • Donut\Adapters\DibiMysqlAdapter
  • Donut\Adapters\DibiSqliteAdapter
  • Donut\Adapters\MemoryAdapter
  • Donut\AtomFeed\AtomFeedItem
  • Donut\AtomFeed\ConvertItemToFacebookPost
  • Donut\AtomFeed\ConvertItemToInstagramPost
  • Donut\AtomFeed\ConvertItemToTweet
  • Donut\AtomFeed\FetchNewItems
  • Donut\DefaultCurrentTimeFactory
  • Donut\Facebook\FacebookApi
  • Donut\Facebook\FacebookPost
  • Donut\Facebook\PublishFacebookPost
  • Donut\Helpers
  • Donut\Instagram\InstagramApi
  • Donut\Instagram\InstagramPost
  • Donut\Instagram\PublishInstagramPost
  • Donut\Manager
  • Donut\Message
  • Donut\Period
  • Donut\PostFeed\ConvertItemToFacebookPost
  • Donut\PostFeed\ConvertItemToInstagramPost
  • Donut\PostFeed\ConvertItemToTweet
  • Donut\PostFeed\FetchNewItems
  • Donut\PostFeed\PostFeedItem
  • Donut\Processor
  • Donut\ProducerInfo
  • Donut\Queue
  • Donut\Time
  • Donut\Twitter\PublishTweet
  • Donut\Twitter\Tweet
  • Donut\Twitter\TwitterApi

Interfaces

  • Donut\IAdapter
  • Donut\ICurrentTimeFactory
  • Donut\IProducer
  • Donut\IWorker

Exceptions

  • Donut\Exception
  • Donut\InvalidArgumentException
  • Donut\InvalidStateException
  • Overview
  • Namespace
  • Class
 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
    {
        /** @var FacebookApi */
        private $facebookApi;


        public function __construct(FacebookApi $facebookApi)
        {
            $this->facebookApi = $facebookApi;
        }


        /**
         * @return void
         */
        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['picture'] = $fbPost->getPicture();
            }

            $data['access_token'] = $this->facebookApi->getAccessToken();
            $fbNode = '/' . $this->facebookApi->getAccountId() . '/feed';

            $facebook = $this->facebookApi->getFacebook();
            $facebook->post($fbNode, $data);
        }
    }
donut-org/donut v0.8.0 API documentation API documentation generated by ApiGen