TinyAlias URL Shortener Design and Its Features

Published: | Last Edited:
Category: tech

After I wrote some of my thoughts about my URL shortener service TinayAlias and others here in Things I’ve Learned Hosting a URL Shortener Service. It occured to me I did not mention much about what my service had to offer. Even though TinyAlias is no longer operational, I feel the service did provide some interesting features compared to others. This post will lay out its design and highlight a few interesting things with respect to both backend and front end implementations.

Screenshots

1 / 5
TinyAlias Authentication
2 / 5
TinyAlias Password
3 / 5
TinyAlias Analytics
4 / 5
TinyAlias Mindful
5 / 5
TinyAlias News


Design

TinyAlias Design

Workflow

Repo

https://github.com/zirius/tinyalias

Features

Some function and feature highlights

User authentication

I added a user authentication flow that let you sign up, sign in, reset your password. Building this from scratch is quite fun. Sessions are Cookie-based and passwords are encrypted by bcrypt and stored in DB.

Link passwords are encrypted securely and stored in DB. Scheduler service periodically sends expiration job to worker service to detect if any links have expired and marked them as invalid.

Spam detection flow

This is one of the more interesting backend features I added. Whenever a URL is shortened, the main app will dispatch a spam detection job to the worker service. Worker service then calls Google safebrowsing API to detect if a URL is safe and update that URL status. The scheduler also periodically dispatch spam detection jobs to recheck existing URLs.

Analytics

Whenever a link is clicked, the service will parse the location based on the user’s IP address. This is then aggregated to show where the links are accessed geographically.

Mindful mode

This is a fun feature that I added that makes the user wait for a few seconds before redirecting them to the original URL. The page also displays some quotes of the day provided by https://favqs.com

News

I also added a page to allow users to view trending news and get the shortened URL within the app. News is provided by News API.

Conclusion

Designing and implementing TinyAlias from scratch is a fun side project for me.

Next Post: Customize Part of Your Life with IFTTT
Previous Post: Useful Commands for PostgreSQL and MySQL Database