A simple but performant and distributed URL shortener.
Shorten URL
Shortens provided URL and returns json data
-
URL
/api/v1/shorten
-
Method:
POST
-
Data Params Required:
url=[string]
Optional:custom=[string]
-
Success Response:
- Code: 201 Created
Content:{"longUrl":"http://foobar.com","shortUrl":"http://localhost:8081/FPvYGy"}
- Code: 201 Created
-
Error Response:
- Code: 422 Unprocessable Entity
Content:{ error : "User doesn't exist" }
OR
- Code: 422 Unprocessable Entity
Content:{"error":"URLValidationError: URL Domain is banned."}
- Code: 422 Unprocessable Entity
Get Long URL
Retrieves long URL and redirects
-
URL
/:shortUrl
-
Method:
GET
-
Path Params Required:
shortUrl=[string]
-
Success Response:
- Code: 302 Moved Permanently
Content:<a href="http://foobar.com">Moved Permanently</a>.
- Code: 302 Moved Permanently
-
Error Response:
- Code: 404 Not Found
Content:{"error":"Error in getSlug for f00bar: record not found"}
OR
- Code: 422 Unprocessable Entity
Content:{"error":"URLValidationError: URL Domain is banned."}
- Code: 404 Not Found
git clone git@github.com:AnkurGel/reducto.git
docker-compose up
$> curl --location --request POST 'http://localhost:8080/api/v1/shorten' --form 'url="https://github.com/AnkurGel/reducto"'
cp config.yml.sample config.yml
- Edit
config.yml
- Create relevant database
- Add banned hosts in the redis manually like:
SADD urlBannedSet bit.ly tinurl.com tiny.one t.co rotf.lol goo.gl fb.me
- Run keygen:
REDUCTO_CONFIG_PATH=config.yml go run cmd/reducto-keygen/main.go
- Run server:
REDUCTO_CONFIG_PATH=config.yml go run cmd/reducto-server/main.go