leopoldodonnell / ttc-connectors-dummytwitter

Activiti Cloud BluePrint: Trending Topic Campaigns Connectors Dummy Twitter Feed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BluePrint - Trending Topic Campaigns: Dummy Twitter Connector

This project is an implementation of an Activiti Cloud Connector, which is a simple bi-directional 3rd party system-to-system integration using Spring Cloud Streams.

This project provides the interaction between a Social Media Feed such as twitter and the rest of our services. This Dummy Twitter feed simulates a Twitter Feed by creating random tweets and pushing them into Rabbit MQ using the content of the tweet as JSON Payload.

At the same time this connector simulates the functionality of publishing a new tweet, by pushing data to an external system.

Run

In order to run this project locally, you need to clone the source code and then run inside the root directory

mvn -Dserver.port=808x spring-boot:run

Note: replace "x" for your desired port number

You can use the following docker-compose file in order to start Rabbit MQ so the service can connect and send messages.

Endpoints

Spring Boot / Spring Cloud Actuators -GET http://localhost:808x/actuator -> list of all the actuators available -GET http://localhost:808x/actuator/configprops -> configuration properties

Single Input Tweet Format

{
  "text": "Hey this is my first tweet",
  "author": "salaboy",
  "lang": "en"
}

Configuration

The feed can be configured by changing the properties inside the application.properties file.

Tweet Feed Rate in milliseconds (1 tweet per second = 1000)

feed.rate=1000

About

Activiti Cloud BluePrint: Trending Topic Campaigns Connectors Dummy Twitter Feed

License:Apache License 2.0


Languages

Language:Java 86.8%Language:Makefile 10.9%Language:Smarty 2.3%