mpngin
MPNG.IN 
A simple and fast URL shortener with built in stats. Requires Redis and assumes it is local for lowest possible latency.
Installation
Copy env.example
to .env
and set the values. For the
SECRET_TOKEN
, try Random.new.hex(32)
.
NOTE: If building in release mode for production, ensure KEMAL_ENV
is uncommented in .env
and set to production
.
Then run:
shards install
crystal run src/mpngin.cr
For production, make a release build:
# Assumes .env file is correctly filled out, including KEMAL_ENV=production
crystal build --release src/mpngin.cr
Usage
Creating an short URL and getting the stats require an application key first.
- Create an application first:
➜ curl -X "POST" "http://localhost:3000/application" -H "Authorization: bearer <SECRET_TOKEN_HERE>"
# New app key response
d48655ff210c3e9e4ed8f6ad4f1923a3
- Use the app key in place of the
SECRET_TOKEN
to make shortened URLs, passing in the final redirect to URL as aapplication/x-form-urlencoded
body param namedredirect_url
:
➜ curl -X "POST" "http://localhost:3000/" \
-H 'Authorization: bearer d48655ff210c3e9e4ed8f6ad4f1923a3' \
-H 'Content-Type: application/x-www-form-urlencoded; charset=utf-8' \
--data-urlencode "redirect_url=https://www.nintendo.com"
# Your shiny new shortened redirect URL
http://localhost:3000/541450
- Get number of requests for this shortened URL:
➜ curl "http://localhost:3000/541450/stats" \
-H 'Authorization: bearer d48655ff210c3e9e4ed8f6ad4f1923a3' \
-H 'Content-Type: text/plain; charset=utf-8'
# Request count response
1337
Testing
For spec tests:
KEMAL_ENV=test crystal spec
For coverage:
KEMAL_ENV=test ./bin/crystal-coverage spec/mpngin_spec.cr
open coverage/index.html
Static Analysis
To run static analysis checks, use locally installed Ameba (comes with shards install
):
./bin/ameba
Contributing
- Fork it ( https://github.com/thewalkingtoast/mpngin/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- thewalkingtoast Adam Radabaugh - creator, maintainer