diff --git a/composer.json b/composer.json index 770c4a86b..40bab453e 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,8 @@ "elasticsearch/elasticsearch": "^7.3", "monolog/monolog": "^2.1", - "endclothing/prometheus_client_php": "^1.0" + "endclothing/prometheus_client_php": "^1.0", + "abraham/twitteroauth": "^2.0" }, "require-dev": { "ext-xdebug": "*", diff --git a/composer.lock b/composer.lock index 430369914..1576ccf4d 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,145 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e73c4b8720ee868df2177bf196ac0f66", + "content-hash": "acd5c5bdef551e569f80a189d30ba012", "packages": [ + { + "name": "abraham/twitteroauth", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/abraham/twitteroauth.git", + "reference": "af6d0ba772731d4f83524fccb24281fe6149ef43" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/abraham/twitteroauth/zipball/af6d0ba772731d4f83524fccb24281fe6149ef43", + "reference": "af6d0ba772731d4f83524fccb24281fe6149ef43", + "shasum": "" + }, + "require": { + "composer/ca-bundle": "^1.2", + "ext-curl": "*", + "php": "^7.3 || ^7.4 || ^8.0" + }, + "require-dev": { + "php-vcr/php-vcr": "^1", + "php-vcr/phpunit-testlistener-vcr": "dev-php-8", + "phpmd/phpmd": "^2", + "phpunit/phpunit": "^8", + "squizlabs/php_codesniffer": "^3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Abraham\\TwitterOAuth\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Abraham Williams", + "email": "abraham@abrah.am", + "homepage": "https://abrah.am", + "role": "Developer" + } + ], + "description": "The most popular PHP library for use with the Twitter OAuth REST API.", + "homepage": "https://twitteroauth.com", + "keywords": [ + "Twitter API", + "Twitter oAuth", + "api", + "oauth", + "rest", + "social", + "twitter" + ], + "support": { + "issues": "https://github.com/abraham/twitteroauth/issues", + "source": "https://github.com/abraham/twitteroauth" + }, + "time": "2020-12-02T01:37:06+00:00" + }, + { + "name": "composer/ca-bundle", + "version": "1.2.9", + "source": { + "type": "git", + "url": "https://github.com/composer/ca-bundle.git", + "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5", + "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "ext-pcre": "*", + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.55", + "psr/log": "^1.0", + "symfony/phpunit-bridge": "^4.2 || ^5", + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\CaBundle\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "keywords": [ + "cabundle", + "cacert", + "certificate", + "ssl", + "tls" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.2.9" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-01-12T12:10:35+00:00" + }, { "name": "composer/package-versions-deprecated", "version": "1.8.2", diff --git a/src/Mooc/Videos/Application/Create/VideoCreator.php b/src/Mooc/Videos/Application/Create/VideoCreator.php index 1901a3c7e..b784806ce 100644 --- a/src/Mooc/Videos/Application/Create/VideoCreator.php +++ b/src/Mooc/Videos/Application/Create/VideoCreator.php @@ -9,13 +9,14 @@ use CodelyTv\Mooc\Videos\Domain\Video; use CodelyTv\Mooc\Videos\Domain\VideoId; use CodelyTv\Mooc\Videos\Domain\VideoRepository; +use CodelyTv\Mooc\Videos\Domain\VideoShare; use CodelyTv\Mooc\Videos\Domain\VideoTitle; use CodelyTv\Mooc\Videos\Domain\VideoType; use CodelyTv\Shared\Domain\Bus\Event\EventBus; final class VideoCreator { - public function __construct(private VideoRepository $repository, private EventBus $bus) + public function __construct(private VideoRepository $repository, private VideoShare $videoShare, private EventBus $bus) { } @@ -25,6 +26,8 @@ public function create(VideoId $id, VideoType $type, VideoTitle $title, VideoUrl $this->repository->save($video); + $this->videoShare->post('New video '.$video->title()->value(). ' has been published. Check it out!'); + $this->bus->publish(...$video->pullDomainEvents()); } } diff --git a/src/Mooc/Videos/Domain/VideoShare.php b/src/Mooc/Videos/Domain/VideoShare.php new file mode 100644 index 000000000..26909b803 --- /dev/null +++ b/src/Mooc/Videos/Domain/VideoShare.php @@ -0,0 +1,8 @@ +connection = new TwitterOAuth ( + $twitter_consumer_key, + $twitter_consumer_secret, + $twitter_access_token, + $twitter_access_token_secret + ); + } + + /** + * @param string $status + * + * @return array|object + */ + public function post(string $status) + { + return $this->connection->post("statuses/update", ["status" => $status]); + } +} diff --git a/tests/Mooc/Videos/Infrastructure/Share/Twitter/TwitterClientTest.php b/tests/Mooc/Videos/Infrastructure/Share/Twitter/TwitterClientTest.php new file mode 100644 index 000000000..032f04069 --- /dev/null +++ b/tests/Mooc/Videos/Infrastructure/Share/Twitter/TwitterClientTest.php @@ -0,0 +1,18 @@ +post($status); + $this->assertIsObject($twitter_response); + $this->assertEquals("Hola mundo", $twitter_response->text); + } +}