Skip to main content

Helper proxy to sit between netmetr web client and backend. Adds a token/key and calls backend.

Project description

NetMetr netmetr-proxy

Helper proxy to sit between netmetr web client and backend. Adds a token/key and calls backend for:

  • Monthly stats approval
  • Uncleaned data download
browser       netmetr-proxy          backend
   |                 |                   |
   |     GET         |     POST          |
   | --- month ----> | --- month-------> |
   |   + year        |   + year          |
   |                 |   + token         |
   |                 |                   |
   | <-- response -- | <-- response ---- |
   |   (zip or json) |                   |
   |                 |                   |

It also adds some input validation, since the backend will happily return empty CSVs for future dates or even a .zip file with plaintext "illegal parameters" content.

Dependencies

  • Python >= 3.6
  • pyaml >= 17
  • flask >= 0.12

Installation

$ virtualenv -p `which python3.6` .venv
$ source .venv/bin/activate
$ pip install netmetr_proxy
$ cp config.example.yml config.yml
$ $EDITOR config.yml # set backend url & access token

Running in production

uWSGI:

$ uwsgi --master --single-interpreter --threads 2 --http :5000 -H .venv -w netmetr_proxy.server

GUnicorn:

$ gunicorn -w 2 -k gevent --timeout 160 -n netmetr-proxy netmetr_proxy:server:app

Usage

Downloading uncleaned open data

GET /opendata
month <int>
year <int>

Returns opendata ZIP for download (NetMetr-opendata-dirty-{year}-{month}.zip).

Monthly stats approval

GET /approve
month <int>
year <int>

Returns:

GET /approve?year=2018&month=3
-> 200
   {"success": true, "message": "Results for 2018-03 were successfully approved."}

if called again:

GET /approve?year=2018&month=3
-> 200
   {"success": true, "message": "Results for 2018-03 were already approved before."}

Error responses

Returns errors from backend wrapped in JSON:

GET /opendata?year=2018&month=1
# invalid key in config results in "ERROR: invalid key!" message
# from backend (with HTTP 200 for some reason…)
-> 403
   {'error': 'invalid key!'}

Returns HTTP 400 and an error message for missing invalid params (bad format or future date):

GET /opendata?year=2018&month=0
-> 400
   {'error': 'Invalid date.'}
GET /opendata?year=0&month=march
-> 400
   {'error': 'Invalid date.'}
GET /approve?year=2018
-> 400
   {'error': 'Missing or invalid parameter (year, month).'}

Returns 404 for any non-existing endpoint:

GET /
-> 404
GET /foo
-> 404

Development

Starting server with auto reload on file changes:

$ FLASK_APP=netmetr_proxy/server.py FLASK_DEBUG=1 flask run

Linting Python code:

$ flake8 --config=.flake8rc *py

License

GPLv3

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

netmetr-proxy-0.1.2.tar.gz (19.1 kB view details)

Uploaded Source

File details

Details for the file netmetr-proxy-0.1.2.tar.gz.

File metadata

  • Download URL: netmetr-proxy-0.1.2.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.11

File hashes

Hashes for netmetr-proxy-0.1.2.tar.gz
Algorithm Hash digest
SHA256 7e905819b52010d35ef8cd9a3a24dfd21619014f0efa54863ba289c2f878904d
MD5 903da1bb541ef220b3e5fa64066ce952
BLAKE2b-256 486b58f41b27fd660363bd8474a3fcd9e959f0a6234b665477a54bf5e0063b2f

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page