For years, I have taken advantage of an unofficial URL shortening service provided by Google. I had been using it for so long that I had completely taken it for granted. Then, one day, * poof * it was gone. To be fair, I'm pretty sure that Google gave us notice that it was going to be taken down, but there are some emails that just slip through the cracks, this was probably one of those. This became a real issue for me in one particular location: my patents' memoirs. As a bound publication, we didn't want the readers to have to type out the almost 80 hyperlinks that were included in the endnotes, and how to avoid the dreaded 404 error if a linked-to page gets taken down in the future. To solve these issues, each hyperlink was shortened using Google's service and tied to the family domain. Now the challenge arose: How to get those same shortened URLs to point to the same long URLs. I looked at several free options out there, but there were issues with them all. Either I couldn't reuse the domain name, or the shortened code was too short, etc. So, after testing my father's patience, I decided to create my own Short Link Service.
In order to address the last feature, the service is only available to registered users.
This Short Link Service can be purchased if you would like to host it locally. Otherwise, we can work out a hosting plan for you.
In designing the service, I implemented a sophisticated algorithm to generate unique short codes for URLs. I needed to be able to ensure that multiple users across multiple domains (for now) would not accidentally create the same short link. I also wanted to ensure that enough effort was made to come up with a short random code before moving on to the next length of code. Here's a detailed description of its execution flow:
generateShortCode()
method is called, which in turn calls generateShortCode(0)
. The zero represents the number of characters to add to the BASE_CODE_LENGTH
. Since we are using recursion to gradually lengthen the short code as needed, this begins at zero.StringBuilder
is initialized to create the short code.BASE_CODE_LENGTH + extraLen
times (initially just BASE_CODE_LENGTH
as extraLen
is 0).CHARACTERS
string. (This is a string that is made up of numbers and letters that are not easily confused.)MAX_RETRIES
times.generateShortCode()
to generate a new code.MAX_CODE_LENGTH
.generateShortCode(n)
where n
is the extra length.MAX_CODE_LENGTH
, it throws a custom Exception
.The method is designed to handle high load and potential collisions efficiently, making it suitable for a robust URL shortening service.