Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: unstableNetlifyFunctionsSupport.includeDirs configuration #182

Merged
merged 1 commit into from
Apr 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions helpers/copyUnstableIncludedDirs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
const path = require('path')
const fs = require('fs')
const AdmZip = require('adm-zip')
const getNetlifyFunctionName = require('../src/lib/helpers/getNetlifyFunctionName')

// This is UNSTABLE support for special use cases needing files served with their Next.js
// pages that become Netlify functions. Eventually this will be supported internally.
const copyUnstableIncludedDirs = ({ nextConfig, functionsDist }) => {
for (const name in nextConfig.unstableNetlifyFunctionsSupport || {}) {
const includeDirs = nextConfig.unstableNetlifyFunctionsSupport[name].includeDirs || []
console.log('Processing included dirs for ', name)

const zipName = path.join(functionsDist, getNetlifyFunctionName(name) + '.zip')
const zip = new AdmZip(zipName)
includeDirs.forEach((includes) => {
if (fs.lstatSync(includes).isDirectory()) {
// We add the files at the root of the ZIP because process.cwd()
// points to `/` in serverless functions
zip.addLocalFolder(includes, includes)
console.log(`Added ${includes} to ${zipName}`)
}
})
zip.writeZip(zipName)
Copy link

@ehmicky ehmicky Mar 30, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: we might want to remove the mtime when creating the archive.

Otherwise, every zip archive of the same Function will have a different checksum. This has created some issues in the past which ended up increasing our AWS Lambda usage weekly rate significantly.

See https://github.com/netlify/zip-it-and-ship-it/blob/9143e4e572963dc85c96e69c216160f9c77f045d/src/archive.js#L21

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm i’ve been reading the adm-zip docs (that are v unclear lol) and i dont quite understand how i’d do this 😐 do yk exactly how this would be done with this package or should i switch to whatever zisi is doing?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From checking their source code, it does not look like adm-zip allows setting the mtime.

Based on this, I think copying the logic from zip-it-and-ship-it might be good. Eventually, I think we might want to fix this in zip-it-and-ship-it so unstableNetlifyFunctionsSupport should hopefully be removed in the future? (cc @eduardoboucas) If so, duplicating the logic might be ok IMHO.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes this will be removed in the future! :D

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this specific part can be a separate PR since it's a lower visibility issue?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm gonna defer the archiver/adm swap for if issues arise - as of right now there will be v few users using this and merging this is mainly to keep the temporary logic/branch up to date with main. want to unblock the cache PR and a lot of the other work i have to do and promised this to another user 😢 @eduardoboucas would you mind opening and/or sharing the issue to track the toml-side version of this work? 🙏 🙏

}
}

module.exports = copyUnstableIncludedDirs
10 changes: 10 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ const nextOnNetlify = require('./src/index.js')

const validateNextUsage = require('./helpers/validateNextUsage')
const doesNotNeedPlugin = require('./helpers/doesNotNeedPlugin')
const getNextConfig = require('./helpers/getNextConfig')
const copyUnstableIncludedDirs = require('./helpers/copyUnstableIncludedDirs')

const pWriteFile = util.promisify(fs.writeFile)

Expand Down Expand Up @@ -58,6 +60,14 @@ module.exports = {

await nextOnNetlify({ functionsDir: FUNCTIONS_SRC, publishDir: PUBLISH_DIR })
},
async onPostBuild({ netlifyConfig, packageJson, constants: { FUNCTIONS_DIST }, utils }) {
if (await doesNotNeedPlugin({ netlifyConfig, packageJson, utils })) {
return
}

const nextConfig = await getNextConfig(utils.failBuild)
copyUnstableIncludedDirs({ nextConfig, functionsDist: FUNCTIONS_DIST })
},
}

const DEFAULT_FUNCTIONS_SRC = 'netlify/functions'
Loading