Note: this post was migrated from an older version of this blog which contained a comment system. Haven’t gotten around to adding a comment system to the new iteration of this blog yet.
We’ve got a comments system! Sure, my wife’s the only other person who reads this blog (hi honey!), but I was curious about how I might implement comments, so here we are.
Product Requirements
As any good software engineer knows, the key to a pleasant development experience is to spend time to lay out the product requirements before diving into implementation. Maybe one day I’ll be a good software engineer. Here’s the list of requirements I’ve come up with ex post facto:
- Spam prevention
- Content moderation
- Comment deletion
- Comment anonymity (via custom display names)
Spam Prevention
The first thing I think of re: spam prevention is reCAPTCHA. While I’m sure it’s very helpful for services that handle significant traffic, it seems a bit overkill for this blog, especially given the privacy tradeoffs involved.
Instead, I figured putting comments behind an auth system would do the trick. Yeah, I hear you. “Boooo, you’re making users create a username/password just to comment?” No username/password required, thanks to Magic! The only thing users need is an email address.
Content Moderation
For those rare instances when a user other than my wife writes a comment (or maybe especially when my wife writes a comment?), it’d be helpful to have some kind of moderation mechanism other than me manually reviewing comments.
Enter TensorFlow.js and their text toxicity detection model, which enables on-device ML classification. This is a win for:
- My wallet, because it saves me server costs for processing the text; and
- The user’s privacy, because only their device sees their toxic drafts of comments.
See below for one user’s potentially traumatizing comment:
Thanks for looking out for me, J.S. Aardwolf’s computer/phone.
Comment Deletion
I’m a supporter of the right to be forgotten.
After all, let he/she who is without an embarrassing Xanga page from when they were 10 cast the first stone. This was also one of my motivations for setting up an auth system. Wouldn’t want users to be able to delete other users’ comments. After all, weren’t we all heartbroken when that sweet Xanga page we made with background music and rainbow font was deleted when Xanga shut down all those years ago? So proud.
Custom Display Names
Who says anonymity is dead? Shout out to Andrea Sonny’s Unique Names Generator for such a full-featured project. But of course, if you don’t like the randomly generated name, feel free to create your own.
Aha! I’ll just make my display name toxic. Not so fast, pal:
Implementation
Comments are stored in Cloud Firestore. As mentioned above, Magic (in conjunction with Firebase Auth) take care of authentication. All in all, I think this’ll work exceedingly well for low-volume traffic and become ridiculously expensive if this ever takes off (the usual story re: serverless). Maybe I’ll talk about the auth system in another post, but right now, the TensorFlow.js integration is top-of-mind for me, so I want to address that here.
TensorFlow.js Integration
Developing with the pre-trained text toxicity model was extremely pleasant. Just needed to npm install
a few packages and I was off to the races.
Building the JavaScript bundles for production was another story. I went on the wildest of goose chases trying to figure out why the text toxicity model kept erroring out in the production build, but worked fine in development mode.
For some reason, Babel’s classCallCheck
throws an error within tensor.js
– I’m guessing there’s a function in there that doesn’t comply with the ES6 class spec. On the off-chance that I can save any of you some time: the way to exclude a package from Babel transpilation in a Gatsby site is to customize the Webpack config: https://www.gatsbyjs.org/docs/add-custom-webpack-config/. Specifically, here’s my exclude function:
: modulePath => !(/node_modules\/@tensorflow/.test(modulePath)) exclude
Worked great after that.
Comments As A Service
Of course, we’ve got good ol’ Disqus for what I imagine to be a turnkey solution for comments, but that Criticism, privacy, and security concerns section doesn’t exactly inspire confidence. Besides, the point is: I want to try making a comments system myself.