Metadata-Version: 2.1
Name: cdk-tweet-queue
Version: 1.0.2
Summary: Defines an SQS queue with tweet stream from a search
Home-page: https://github.com/eladb/cdk-tweet-queue.git
Author: Elad Ben-Israel<elad.benisrael@gmail.com>
License: Apache-2.0
Project-URL: Source, https://github.com/eladb/cdk-tweet-queue.git
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Typing :: Typed
Classifier: License :: OSI Approved
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: jsii (~=0.22.0)
Requires-Dist: publication (>=0.0.3)
Requires-Dist: aws-cdk.aws-dynamodb (<2.0.0,>=1.24.0)
Requires-Dist: aws-cdk.aws-events (<2.0.0,>=1.24.0)
Requires-Dist: aws-cdk.aws-events-targets (<2.0.0,>=1.24.0)
Requires-Dist: aws-cdk.aws-iam (<2.0.0,>=1.24.0)
Requires-Dist: aws-cdk.aws-lambda (<2.0.0,>=1.24.0)
Requires-Dist: aws-cdk.aws-sqs (<2.0.0,>=1.24.0)
Requires-Dist: aws-cdk.core (<2.0.0,>=1.24.0)

# Tweet Queue for AWS CDK

This is an [AWS CDK](https://github.com/awslabs/aws-cdk) construct library which
allows you to get a feed of Twitter search results into an SQS queue. It works
by periodically polling the freely available [Twitter Standard Search
API](https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets.html) and
sending all new tweets to an SQS queue.

Inspired by
[@jlhood](https://github.com/awslabs/aws-serverless-twitter-event-source/commits?author=jlhood)'s
[aws-serverless-twitter-event-source](https://github.com/awslabs/aws-serverless-twitter-event-source)

## Architecture

![](https://github.com/eladb/cdk-tweet-queue/raw/master/images/architecture.png)

1. A CloudWatch Event Rule triggers the poller AWS Lambda function periodically
2. The poller reads the last checkpoint from a DynamoDB table (if exists)
3. The poller issues a Twitter search query for all new tweets
4. The poller enqueues all tweets to an SQS queue
5. The poller stores the ID of the last tweet into the DynamoDB checkpoint table.
6. Rinse & repeat.

## Twitter API Keys

To issue a Twitter search request, you will need to
[apply](https://developer.twitter.com/en/apply-for-access.html) for a Twitter
developer account, and obtain API keys through by defining a [new
application](http://twitter.com/oauth_clients/new).

The Twitter API keys are read by the poller from an [AWS Secrets
Manager](https://aws.amazon.com/secrets-manager/) entry. The entry must contain
the following attributes: `consumer_key`, `consumer_secret`, `access_token_key`
and `access_token_secret` (exact names).

1. Create a new AWS Secrets Manager entry for your API keys
2. Fill in the key values as shown below:
   ![](https://github.com/eladb/cdk-tweet-queue/raw/master/images/secretsmanager.png)
3. Store the key
4. Obtain the ARN of the secret (you will need it soon).

## Usage

Use `npm` to install the module in your CDK project. This will also add it to
your `package.json` file.

```console
$ npm install cdk-tweet-queue
```

Add a `TweetQueue` to your CDK stack:

```python
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
from cdk_tweet_queue import TweetQueue

queue = TweetQueue(self, "TweetStream",
    # this is the ARN of the secret you stored
    secret_arn="arn:aws:secretsmanager:us-east-1:1234567891234:secret:xxxxxxxxx",

    # twitter search query
    # see https://developer.twitter.com/en/docs/tweets/search/guides/standard-operators
    query="#awscdk",

    # optional properties
    interval_min=60, # optional: polling interval in minutes
    retention_period_sec=60, # optional: queue retention period
    visibility_timeout_sec=60
)
```

Now, `queue` is an `sqs.Queue` object and can be used anywhere a queue is
accepted. For example, you could process the queue messages using an AWS Lambda
function by setting up an SQS event source mapping.

## Development

This is a mono-repo which uses [lerna](https://github.com/lerna/lerna). Here are
some useful commands:

* `lerna run build` - builds all code
* `lerna run watch --stream` -- runs `tsc -w` in all modules (in parallel)
* `lerna run test` - tests all code

There is also an integration test that can be executed from the cdk-tweet-queue
package by running the following commands. You will need to set the
`TWEET_QUEUE_SECRET_ARN` environment variable in order for the test to be able
to use your Twitter API keys.

```console
$ npm run integ deploy
...
```

Don't forget to destroy:

```console
$ npm run integ destroy
...
```

## License

Apache-2.0


