ตัวอย่าง Lambda เพื่อดึงโพสต์ "จดหมายข่าว" ทั้งหมดจาก Pocket
ดูโค้ด lambda ได้ที่ ./src/lambda/newsletter.js
เรียกใช้ได้ที่ https://pocket-newsletter-lambda.netlify.com/
สารบัญ:
ตรรกะเฉพาะ Pocket ส่วนใหญ่คือฟังก์ชัน fetchBookmarks
โดยทำหน้าที่ดังต่อไปนี้:
state: 'all'
เพื่อรับทั้งโพสต์ที่เก็บถาวรและไม่ได้เก็บถาวรtag: 'newsletter'
เพื่อดึงโพสต์ที่ติดแท็กด้วย newsletter
detailType: 'complete'
หมายความว่า API ส่งคืนข้อมูลที่ครบถ้วนมากขึ้น{ title, url, excerpts, authors }
(ฟิลด์เหล่านั้นทั้งหมดเป็นสตริง)ดูรหัส
async function fetchBookmarks ( consumerKey , accessToken ) {
const res = await axios . post ( 'https://getpocket.com/v3/get' , {
consumer_key : consumerKey ,
access_token : accessToken ,
tag : 'newsletter' ,
state : 'all' ,
detailType : 'complete'
} ) ;
const { list } = res . data ;
// List is a key-value timestamp->entry map
const entries = Object . values ( list ) ;
return entries . map (
( {
given_title ,
given_url ,
resolved_url ,
resolved_title ,
excerpt ,
authors ,
rest
} ) => ( {
... rest ,
title : given_title || resolved_title ,
url : given_url || resolved_url ,
excerpt ,
authors : authors
? Object . values ( authors )
. map ( ( { name } ) => name )
. filter ( Boolean )
. join ( ',' )
: ''
} )
) ;
}
แลมบ์ดารองรับ POST ด้วยเนื้อหาเท่านั้น ดังนั้น:
if ( event . httpMethod !== 'POST' ) {
return {
statusCode : 404 ,
body : 'Not Found'
} ;
}
if ( ! event . body ) {
return {
statusCode : 400 ,
body : 'Bad Request'
} ;
}
เรารองรับทั้งคำขอ POST ในรูปแบบที่เข้ารหัส URL (ดำเนินการ เช่น เมื่อปิดใช้งาน JS บนหน้าสาธิต) และคำขอ JSON
เนื้อความมาถึงด้วยการเข้ารหัส base64 (หากใช้คำขอเนื้อความของแบบฟอร์มที่เข้ารหัส URL) หรือไม่ สิ่งนี้แสดงโดยแฟล็ก isBase64Encoded
ใน event
การแยกวิเคราะห์สตริงที่เข้ารหัส base64 ใน Node ทำได้โดยใช้ Buffer.from(event.body, 'base64').toString('utf-8)
ในการแปลงเนื้อหาจากรูปแบบที่เข้ารหัส URL เป็นออบเจ็กต์ จะใช้ฟังก์ชันต่อไปนี้ ซึ่งใช้ได้กับ POST ที่มีฟิลด์แบบง่าย
function parseUrlEncoded ( urlEncodedString ) {
const keyValuePairs = urlEncodedString . split ( '&' ) ;
return keyValuePairs . reduce ( ( acc , kvPairString ) => {
const [ k , v ] = kvPairString . split ( '=' ) ;
acc [ k ] = v ;
return acc ;
} , { } ) ;
}
นี่คือฟังก์ชันการทำงานในแลมบ์ดา:
const {
pocket_consumer_key : pocketConsumerKey ,
pocket_access_token : pocketAccessToken
} = event . isBase64Encoded
? parseUrlEncoded ( Buffer . from ( event . body , 'base64' ) . toString ( 'utf-8' ) )
: JSON . parse ( event . body ) ;
หากรหัสผู้บริโภคหรือโทเค็นการเข้าถึงหายไป เราจะส่ง 400:
if ( ! pocketConsumerKey || ! pocketAccessToken ) {
return {
statusCode : 400 ,
body : 'Bad Request'
} ;
}
ในที่สุดเราก็พยายามที่จะดึง fetchBookmarks
(ฟังก์ชันการทำงานของฟังก์ชันนั้นถูกแยกย่อยออกไปด้านบน)
หากสิ่งนั้นล้มเหลวในข้อผิดพลาดของคำขอ (เมื่อ axios ล้มเหลว จะมีคุณสมบัติ response
ของข้อผิดพลาด) เราต้องการส่งข้อมูลการตอบกลับนั้นกลับไปยังไคลเอนต์ด้วยเหตุนี้ ไม่เช่นนั้นจะมีข้อผิดพลาดเพียง 500 รายการหรือสำเร็จ 200 รายการ:
try {
const bookmarks = await fetchBookmarks ( pocketConsumerKey , pocketAccessToken ) ;
return {
statusCode : 200 ,
body : JSON . stringify ( bookmarks )
} ;
} catch ( e ) {
if ( e . response ) {
return {
statusCode : e . response . statusCode ,
body : `Error while connecting to Pocket API: ${ e . response . statusText } `
}
}
return {
statusCode : 500 ,
body : e . message
}
}
[
{
"title" : "TechnicalDebt" ,
"url" : "https://martinfowler.com/bliki/TechnicalDebt.html" ,
"excerpt" : "Software systems are prone to the build up of cruft - deficiencies in internal quality that make it harder than it would ideally be to modify and extend the system further." ,
"authors" : ""
} ,
{
"title" : "CannotMeasureProductivity" ,
"url" : "https://martinfowler.com/bliki/CannotMeasureProductivity.html" ,
"excerpt" : "We see so much emotional discussion about software process, design practices and the like. Many of these arguments are impossible to resolve because the software industry lacks the ability to measure some of the basic elements of the effectiveness of software development." ,
"authors" : ""
} ,
{
"title" : "How SQLite Is Tested" ,
"url" : "https://www.sqlite.org/testing.html" ,
"excerpt" : "The reliability and robustness of SQLite is achieved in part by thorough and careful testing. As of version 3.23.0 (2018-04-02), the SQLite library consists of approximately 128.9 KSLOC of C code." ,
"authors" : ""
} ,
{
"title" : "How FriendFeed uses MySQL to store schema-less data" ,
"url" : "https://backchannel.org/blog/friendfeed-schemaless-mysql" ,
"excerpt" : "We use MySQL for storing all of the data in FriendFeed. Our database has grown a lot as our user base has grown. We now store over 250 million entries and a bunch of other data, from comments and "likes" to friend lists." ,
"authors" : ""
} ,
{
"title" : "jlevy/the-art-of-command-line: Master the command line, in one page" ,
"url" : "https://github.com/jlevy/the-art-of-command-line" ,
"excerpt" : "Note: I'm looking for a new (and potentially paid) lead author to help expand this to a more comprehensive Guide. While it's very popoular, it could be both deeper and more helpful." ,
"authors" : ""
} ,
{
"title" : "Project Mezzanine: The Great Migration | Uber Engineering Blog" ,
"url" : "https://eng.uber.com/mezzanine-migration/" ,
"excerpt" : "What happens when you have to migrate hundreds of millions of rows of data and more than 100 services over several weeks while simultaneously keeping Uber running for millions of riders? This is the story of how dozens of engineers helped Uber move to Mezzanine in 2014." ,
"authors" : "Rene Schmidt"
} ,
{
"title" : "8 Protips to Start Killing It When Dockerizing Node.js - NodeSource" ,
"url" : "https://nodesource.com/blog/8-protips-to-start-killing-it-when-dockerizing-node-js/" ,
"excerpt" : "Containers are the best way to deploy Node.js applications to production. Containers provide a wide variety of benefits, from having the same environment in production and development to streamlining deploys for speed and size. Dockerizing your Node." ,
"authors" : "Tierney Cyren"
} ,
{
"title" : "How and Why We Switched from Erlang to Python – Mixpanel Engineering" ,
"url" : "https://engineering.mixpanel.com/2011/08/05/how-and-why-we-switched-from-erlang-to-python/" ,
"excerpt" : "A core component of Mixpanel is the server that sits at http://api.mixpanel.com. This server is the entry point for all data that comes into the system – it’s hit every time an event is sent from a browser, phone, or backend server." ,
"authors" : "mxpnl"
} ,
{
"title" : "Some Were Meant for C - kell17some-preprint.pdf" ,
"url" : "https://www.cs.kent.ac.uk/people/staff/srk21//research/papers/kell17some-preprint.pdf" ,
"excerpt" : "" ,
"authors" : ""
} ,
{
"title" : "API Gateways Are Going Through an Identity Crisis" ,
"url" : "http://blog.christianposta.com/microservices/api-gateways-are-going-through-an-identity-crisis/" ,
"excerpt" : "API Gateways are going through a bit of an identity crisis these days. Are they centralized, shared resources that facilitate the exposure and governance of APIs to external entities?" ,
"authors" : ""
} ,
{
"title" : "Understanding Database Sharding" ,
"url" : "https://www.digitalocean.com/community/tutorials/understanding-database-sharding" ,
"excerpt" : "Any application or website that sees significant growth will eventually need to scale in order to accommodate increases in traffic. For data-driven applications and websites, it's critical that scaling is done in a way that ensures the security and integrity of their data." ,
"authors" : "Justin Ellingwood"
} ,
{
"title" : "Moving from Ruby to Rust" ,
"url" : "http://deliveroo.engineering/2019/02/14/moving-from-ruby-to-rust.html" ,
"excerpt" : "In the Logistics Algorithms team, we have a service, called Dispatcher, the main purpose of which is to offer an order to the rider, optimally." ,
"authors" : "Andrii Dmytrenko"
} ,
{
"title" : "Getting to Know Python 3.7: Data Classes, async/await and More! | Heroku" ,
"url" : "https://blog.heroku.com/python37-dataclasses-async-await" ,
"excerpt" : "If you're like me, or like many other Python developers, you've probably lived (and maybe migrated) through a few version releases. Python 3.7(." ,
"authors" : "Casey Faist"
} ,
{
"title" : "? What does Unsplash cost in 2019?" ,
"url" : "https://medium.com/p/f499620a14d0" ,
"excerpt" : "Since then, Unsplash has continued to grow tremendously, now powering more image use than the major image media incumbents, Shutterstock, Getty, and Adobe, combined." ,
"authors" : "Luke Chesser"
} ,
{
"title" : "PHP in 2019 - stitcher.io" ,
"url" : "https://stitcher.io/blog/php-in-2019" ,
"excerpt" : "Do you remember the popular "PHP: a fractal of bad design" blog post? The first time I read it, I was working in a crappy place with lots of legacy PHP projects. This article got me wondering whether I should just quit and go do something entirely different than programming." ,
"authors" : ""
}
]
บนไซต์ของฉัน lambda ไม่อ่านโทเค็นการเข้าถึงและรหัสผู้บริโภคจากคำขอ
แต่เป็น GET แบบธรรมดาที่อ่านโทเค็นและคีย์จากตัวแปรสภาพแวดล้อม
คุณควรวิ่ง yarn
ก่อนเริ่ม
มีสคริปต์ต่อไปนี้:
yarn start
: เริ่มต้นแลมบ์ดาและให้บริการไดเร็กทอรีแบบคงที่โดยใช้ Netlify Dev สำคัญ: yarn build:tw
ทำงานก่อน start
yarn build:tw
: สร้างชุดยูทิลิตี้ Tailwind CSS ครบชุด (มีประโยชน์สำหรับการพัฒนา) ตรวจสอบให้แน่ใจว่าเว็บไซต์ของคุณมีลักษณะอย่างไรเมื่อใช้งานจริงโดยใช้ yarn build:css
yarn build
: เรียกใช้ netlify-lambda build + การสร้างการผลิต Tailwind CSS (ลบคลาสที่ไม่ได้ใช้โดยใช้ PurgeCSS)yarn build:css
: การสร้างการผลิต Tailwind CSS (ลบคลาสที่ไม่ได้ใช้โดยใช้ PurgeCSS)yarn lint
และ yarn format
: รัน XO, "JavaScript linter พร้อมค่าเริ่มต้นที่ดี" (ดู github.com/xojs/xo) โดยมีหรือไม่มีแฟล็ก --fix
ตามลำดับ