内容简介:I wanted to accept user comments on a Gatsby website and store them on GitHub. As in, I wanted the comments to go straight into a file calledin my site’s code. Without any databases. No third-party plugins making tens of networks requests.
I wanted to accept user comments on a Gatsby website and store them on GitHub. As in, I wanted the comments to go straight into a file called comments.json in my repository. So I could use something as simple as
import comments from "../comments.json"
in my site’s code. Without any databases. No third-party plugins making tens of networks requests.
Netlify serverless functions allowed me to use GitHub’s API to make this repository change with the data from a submitted comment. It also hid my secret API credentials.
I built a prototype — healeycodes/gatsby-serverless-comments — that uses this flow:
comments.json
The new comment is visible to users ~30 seconds :alarm_clock: after the first click.
The serverless function
Let’s pick through the serverless function that receives the user’s comment. It will make use of some constants that can be set through Netlify’s website on settings → deploys .
The function is written with Node.js and exports a handler function, which is explained in Netlify’s documentation .
// comment.js
const fetch = require("node-fetch")
const auth = process.env.GITHUB_PAT_TOKEN
const repo = process.env.GITHUB_REPO
const user = process.env.GITHUB_USER
const api =
"https://api.github.com/repos/" +
user +
"/" +
repo +
"/contents/src/comments.json"
exports.handler = async function(event, context, callback) {
// Use the Contents API from GitHub
// https://developer.github.com/v3/repos/contents/#get-contents
const existingFile = JSON.parse(
await fetch(api, {
headers: {
// Pass some kind of authorization
// I'm using a personal access token
Authorization:
"Basic " + Buffer.from(user + ":" + auth)
.toString("base64"),
},
}).then(res => res.text())
)
// The file's content is stored in base64 encoding
// Decode that into utf-8 and then parse into an object
let comments = JSON.parse(
Buffer.from(existingFile.content, "base64").toString("utf-8")
)
// This is the user submitted comment
// Perhaps we would do some validation here
const newComment = JSON.parse(event.body)
// Update the comments
comments.push({
author: newComment.author,
email: newComment.email,
message: newComment.message,
date: Date.now(),
})
// Use the Contents API to save the changes
const res = await fetch(api, {
method: "PUT",
headers: {
Authorization:
"Basic " + Buffer.from(user + ":" + auth).toString("base64"),
},
body: JSON.stringify({
message: "New comment on " + new Date().toDateString(),
// Turn that object back into a string and encoded it
content: Buffer(JSON.stringify(comments)).toString("base64"),
// Required: the blob SHA of the existing file
sha: existingFile.sha,
}),
}).then(res => res.text())
callback(null, {
statusCode: 204,
})
}
Potential downsides
What if someone spams comments on your website? Well, you’ll hit your build time limits pretty fast.
There’s also a small window (10-100s of milliseconds between API calls) where two people comment at the same time and the older comment will be overwritten.
The fix for both of these is to alter our serverless function to open a pull-request with the comment change. Comments are now delayed but we’ve protected ourselves from malicious behavior and we can also screen comments for appropriateness. We won’t lose any data but might rarely need to handle merge conflicts.
My Netlify review
Netlify are betting big on Jamstack applications. It’s a bet I would make too.
Their developer experience (DX) is up there with the best right now. It’s rare I read about a product just working and then it ends up doing so! Recently, Netlify’s snappy deployments let me rush out changes to fix live issues within minutes.
What does this mean for their future success? Well, Tiny.cloud points out that:
DX is kind of a big deal. Developers can play a huge role in the uptake of your product, especially when you consider they are likely to provide guidance on what tools their organization should invest in, even though the final decision usually happens at the executive level.
Netlify’s developer tooling lets me create prototypes like the one you’re reading about without having to mess with configuration.My Gatsby website is hosted with their generous free tier and transferring and hosting it has been hiccup-free.
I recommend them.
以上所述就是小编给大家介绍的《Adding Comments to Gatsby with Netlify Serverless Functions + GitHub》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
JavaScript实战手册
David Sawyer McFarland / 李强 / 机械工业出版社 / 2009 / 89.00元
在《JavaScript实战手册》中,畅销书作者David McFarland教你如何以高级的方式使用JavaScript,即便你只有很少或者没有编程经验。一旦掌握了这种语言的结构和术语,你将学习如何使用高级的JavaScript工具来快速为站点添加有用的交互,而不是一切从头开始编写脚本。和其他的Missing Manuals图书不同,《JavaScript实战手册》清楚、精炼,手把手地讲解。 ......一起来看看 《JavaScript实战手册》 这本书的介绍吧!