Skip to content

An API which proxies API requests to another API

License

Notifications You must be signed in to change notification settings

julialiuliu/unicorn_api_proxy

 
 

Repository files navigation

unicorn_api

This is our API Proxy code for use by trusted Unicorn Rentals partners, and less trusted DevOps teams. Its purpose is to proxy API calls to our backend. Every 4 minutes it uses a different auth secret to auth to the backend, and to validate the result with caller. Currently the auth is updated by a gitpush every 4 minutes.

Architecture

Below was/is the proposed architecture for deploying this application. We have partially fulfilled the design in our MVP deployment.

AWS Architecture

Getting Started

If you want to locally test etc:

  • Have python 2.7

This will deploy the python dependencies, and run a local web server.

pip install -r requirements.txt
python app.py

Tests

If deploying with CICD tooling, run tests via CodeBuild or any other CI tool.

python tests_app.py -v

Or you can manually test with cURL, httpie or a browser.

Deployment

Configure AWS Parameter Store BACKEND_API value.

Then deploy how suits you, but we included an appspec.yml for AWS CodeDeploy.

Optionally have AWS xray deployed (executable not in this repo):

curl https://s3.dualstack.us-east-1.amazonaws.com/aws-xray-assets.us-east-1/xray-daemon/aws-xray-daemon-linux-2.x.zip -o xray.zip
unzip xray.zip
chmod +x xray 
nohup ./xray &

And have a default AWS region set, either via environment variable, or aws configure.

Built With

Python
Flask
flask_restful
Requests
watchtower

About

An API which proxies API requests to another API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 93.7%
  • Shell 6.3%