How far is too far?

11 minute read

(New here? Find out what Startup in a Month is about!)

Well, I just got done with another Cycle with a capital C. Another turn around the neverending wheel of solo development strife.

This time around I was building the user authentication system for Pic Story, user authentication being the system which enables a user to sign up for an account, create stories which are tied to that account, and which ensures that only that user can ever see or use the pictures and text that he or she has uploaded.

And all the while, I was not only trying to just. do. the. damn. work., but I was fighting a lot side battles, and constantly turning over one of the central questions to the whole task: am I going too far? Am I getting too deep in a home-rolled auth solution when there are auth vendors that can do it for me?

Am I wasting my time with all of this and distracting myself from the real task?

Password authentication? How hard could it be?

Duck flapping wings

Photo by DSD from Pexels

As it turns out, pretty fracking hard. It’s one of those classic Door Problem parts of app development: something so commonplace and seemingly simple that the layman can hardly intuit the vast web of complexity which makes that seeming simplicity possible for the end user. A serene duck languidly gliding along, betraying no hint of the furious kicking just inches below.

We never stop for a minute to think about everything that goes into it:

  • Databases to store users, emails and passwords,
  • Password salting and hashing to ensure that passwords won’t be revealed even in the event of a breach,
  • Validations for usernames, emails, and passwords to ensure they meet basic requirements (no users with the same username or email, minimum length passwords, etc.),
  • HTTPS to ensure that the transmission of credentials back and forth between client and server remains secure,
  • Sessions to keep track of who is logged in and where, using HTTP-only cookies of course. You are building your whole app on a single server and a single domain, right? And you’ve got some mechanism to expire sessions too I assume?
  • Automated password reset options for users who forget their passwords, leading to the need for:
  • Encrypted password reset tokens to enable automated password resets, complete with expiration mechanisms to minimize the time window for their potential misuse.
  • By the way, how are you going to send those encrypted password reset tokens? Over email? Alright, now your app needs to be able to send email, and has thus fulfilled Zawinski’s Law of Software Envelopment.
  • And more. Much more.

All of this stuff I’ve known about in vague, general terms for a while. I knew in theory what a password hash was for example, but I’ve never actually hashed one myself! Not only was all of that functionality, like, really intense to implement from the ground up for somebody whose never done it before, but the work was burdened with this acute feeling of need-to-get-it-right-ness.

What’s the big deal anyway?

If I get a CSS style wrong, then the layout looks a little weird on some devices. Maybe I lose a bit of face with a persnickety customer, but that’s the extent of the damage. But if I get the auth system for an app wrong, that can create serious problems for people.

You could make a decent argument that now is not the right time to worry about security in the first place. What, I’m worried about users getting their credentials stolen? Which users would those be again? They might never even turn up in the first place! And hey, what am I building anyway? Basically a WYSIWYG webpage builder right? It’s not like I’m running a bank, what’s the harm if it DOES get compromised?

Well, if someone hacks into my users’ accounts and I’ve saved the passwords as plaintext, and assuming most users use the same password for everything, all of a sudden the breach of my little web app becomes a breach of somebody else’s retirement account or medical history. Or maybe someone has uploaded a bunch of photos in a big batch into their account. Some of them they will use in an actual story, but several of them should remain private. If someone hacks into the server, now they’ve got something they can use to blackmail or embarrass a user.

Why build it yourself at all?

Worker welding steel

Photo by Kateryna Babaieva from Pexels

So, knowing all this, I found myself lusting after some kind of SaaS product which could solve my woes. Something built by experts that could wrap up the solution to this pernicious problem in a nice box and drop it on my doorstep. Something like Okta or Auth0: an authentication-as-a-service provider. (note: I have no promotional relationship with either company).

So why didn’t I go with something like that? Let me invite you into the whirlwind:

Auth-as-a-service pros

1. I get to spend more time building my app

The auth part of the app is certainly a “part of the application,” but it’s not really the point of the app is it? The point is to be able to easily create great looking photo stories, not create a user account and password. If I was being a good little 21st century businessman, I would have identified the auth problem as lying outside of my core competencies and would have shopped it out to someone else. And bam, I’ve literally just purchased another week’s worth of direct development time on the app! Easy.

2. I get to sleep easy knowing it’s someone else’s problem

I’ve met a handful of people who have this inhuman ability to banish all thoughts of risk from their minds. No matter what risks associated with their endeavors could be, either for themselves or others, they can avert their eyes from it and blithely go about their work as if the risk didn’t exist at all.

Sometimes I wish I could do that. And on a good day, I can even see the merits of that kind of thinking. One lesson I’m trying to learn this year is that things are rarely as scary or high-stakes as I imagine them to be.

I also believe that a lot of the insane problems that technology is creating for the world are a direct result of the aforementioned magical risk-ignoring mindset of certain powerful people, but if I don’t stop writing about that I’m never going to finish this blog, so let’s continue.

Suffice it to say: shunting responsibility to others and thereby absolving yourself of the blame if something goes wrong is really easy and feels really nice. We do it all the time in many areas of our lives to great effect, why not do it here too?

Auth-as-a-service cons

1. Cost

This stuff gets expensive fast. For Auth0, just 10,000 monthly active users currently comes out to $228/month, $2,736/year. A single app using Okta authentication can cost $17,000 annually (or more!) once you pass the 1000-user threshold. For a guy with zero outside funding and who is planning on developing a dozen applications over the course of the year, this is expensive!

2. Vendor lock-in

I’ve never used any of these services, but my experiences with other code libraries and SaaS products leads me to believe that once you get in bed with one of them, it is really hard to get back out again. The golden dream of the professional programmer is to write code without context: modules which assume nothing about their environment and can be combined and swapped around with breezy algebraic ease. Who’s the auth provider du jour Mr. Bossman? Some external service? Something internal to the app itself? Doesn’t matter. This is not my circus, these are not my monkeys.

Of course, this is never the case in the real world. Unless you’re Rich Hickey or Jonathan Blow, most code that you write will make some fundamental assumptions about its broader environment, and those fundamental assumptions are like the One Ring: practically impossible to unmake. When you’re dealing with such broad, cross-cutting concerns as authentication and authorization, there’s no way that those assumptions aren’t going to worm their way into everything that directly depends on the authentication provider.

It’s expensive to get into, and more expensive still to get out of once the game changes and the costs become untenable.

3. Single point of failure

Put simply: if they get hacked, you get hacked. Maybe a hacker isn’t interested in my app, but if I get involved with an auth-as-a-service company who has a high-profile corporate client, then I’m exposed to the same risk that someone like Target or Walmart is exposed to. This goes for a cloud-based anything for that matter:

Beyond the business case

Mountain road with switchbacks

Photo by Jack Anstey on Unsplash

Ultimately, I opted to build my auth system on my own. Using plenty of references and libraries along the way of course, but ultimately all of the functionality lives within my own codebase. A lot of suits and ties out there are shaking their heads at this egregious misallocation of time and life-force when I’ve got multiple ready-made auth solutions just a credit card swipe away, but it felt good to do it in the end.

It was a really hard thing for me to do, both in terms of the implementation itself, but also in getting over my fear of getting it wrong. Another lesson I’m trying to teach myself this year is that while hard work is not always good work, there’s still a lot of pride to be had in winning an internal battle. I’ve been reading and re-reading The War of Art by Steven Pressfield a lot, and fear is a central topic in the book:

Are you paralyzed with fear? That’s a good sign. Fear is good. Like self-doubt, fear is an indicator. Fear tells us what we have to do. … the more fear we feel about a specific enterprise, the more certain we can be that the enterprise is important to us and the growth of our soul.

“What is this shit?” chimes a chorus of cheerless robots in the Hacker News comments thread. “Growth of the soul? This has nothing to do with programming, building a business, or the basic task of securing an application against hackers. Banish this frivolous nonsense from your heart and get back to swinging pickaxes in the code mines kid.”

Oh, but the growth and nurturing of the spirit is absolutely essential to the thing that sits above the act of writing code, and that is the act of creation itself. I felt pretty raw many, many times along the way as I wrestled with the competing shoulder demons of business sense and common sense, but at the end of it all I felt good. I got a lot better using the Clojure REPL, I got a lot more comfortable doing research on auth techniques, I got a lot better at swallowing my pride and refactoring when I had made an obviously wrong decision along the way, even a decision I had already sunk a lot of time and effort into.

And at the end, when I could open up my browser, create a new user account, log in, log out, and reset my password successfully, it felt like a serious accomplishment. Like I had crested a huge mountain on my bike, and I could turn around and look at all the grueling switchbacks beneath me wavering in the hot sun. Sweat steaming from my shoulders, feeling a cool breeze at the base of my spine, lungs pumping triumphantly with the knowledge that in spite of all the times I wanted to bail out along the way, I did it anyway. I could do it after all.

From one perspective, I threw away a week and a half of production time on something I could have solved in a day or two. But from another, hopefully wiser perspective, I traded that time for some things which are going to count a lot more than the business solution itself: a deepening of skills, a broadening of self, and the confidence that comes from slaying inner demons.

That’s a bargain of a trade for this guy at least. We’ll see if it pays out, and how long the payout takes. I’d bet it comes soon.

One last thing

Thanks for reading this! It’s a busy world, and it means a lot that you spent some of your your time and attention on what I’m doing.

Would you like to join my mailing list? I send out updates once a month, so you can stay informed on what’s going on, but not too informed 😊






I give my consent to contact me via email for the purpose of news, updates and marketing. If you wish to withdraw your consent, click the unsubscribe link at the bottom of our emails or send an email to andy@startupinamonth.net.



Updated: