-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathfind-plugins.js
189 lines (149 loc) · 6.23 KB
/
find-plugins.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
'use strict'
const { readdir } = require('node:fs/promises')
const { relative, join } = require('path')
const runtime = require('./runtime')
async function findPlugins (dir, options) {
const { opts, prefix } = options
const pluginTree = {
[prefix || '/']: { hooks: [], plugins: [] }
}
await buildTree(pluginTree, dir, { prefix, opts, depth: 0, hooks: [] })
return pluginTree
}
async function buildTree (pluginTree, dir, { prefix, opts, depth, hooks }) {
// check to see if hooks or plugins have been added to this prefix, initialize if not
if (!pluginTree[prefix]) {
pluginTree[prefix] = { hooks: [], plugins: [] }
}
const dirEntries = await readdir(dir, { withFileTypes: true })
const currentDirHooks = findCurrentDirHooks(pluginTree, { dir, dirEntries, hooks, opts, prefix })
const { indexDirEntry, hasNoDirectory } = processIndexDirEntryIfExists(pluginTree, { dirEntries, opts, dir, prefix })
if (hasNoDirectory) {
return
}
// Contains package.json but no index.js file?
const packageDirEntry = dirEntries.find((dirEntry) => dirEntry.name === 'package.json')
if (packageDirEntry && !indexDirEntry) {
throw new Error(`@fastify/autoload cannot import plugin at '${dir}'. To fix this error rename the main entry file to 'index.js' (or .cjs, .mjs, .ts).`)
}
// Otherwise treat each script file as a plugin
await processDirContents(pluginTree, { dirEntries, opts, indexDirEntry, prefix, dir, depth, currentDirHooks })
}
function findCurrentDirHooks (pluginTree, { dir, dirEntries, hooks, opts, prefix }) {
if (!opts.autoHooks) return []
let currentDirHooks = []
// Hooks were passed in, create new array specific to this plugin item
for (const hook of hooks) {
currentDirHooks.push(hook)
}
// Contains autohooks file?
const autoHooks = dirEntries.find((dirEntry) => opts.autoHooksPattern.test(dirEntry.name))
if (autoHooks) {
const file = join(dir, autoHooks.name)
const { type } = getScriptType(file, opts.packageType)
// Overwrite current hooks?
if (opts.overwriteHooks && currentDirHooks.length > 0) {
currentDirHooks = []
}
// Add hook to current chain
currentDirHooks.push({ file, type })
}
pluginTree[prefix || '/'].hooks = currentDirHooks
return currentDirHooks
}
function processIndexDirEntryIfExists (pluginTree, { opts, dirEntries, dir, prefix }) {
// Contains index file?
const indexDirEntry = dirEntries.find((dirEntry) => opts.indexPattern.test(dirEntry.name))
if (!indexDirEntry) return { indexDirEntry }
const file = join(dir, indexDirEntry.name)
const { language, type } = getScriptType(file, opts.packageType)
handleTypeScriptSupport(file, language, true)
accumulatePlugin({ file, type, opts, pluginTree, prefix })
const hasNoDirectory = dirEntries.every((dirEntry) => !dirEntry.isDirectory())
return { indexDirEntry, hasNoDirectory }
}
async function processDirContents (pluginTree, { dirEntries, opts, indexDirEntry, prefix, dir, depth, currentDirHooks }) {
for (const dirEntry of dirEntries) {
if (opts.ignorePattern && RegExp(opts.ignorePattern).exec(dirEntry.name)) {
continue
}
const atMaxDepth = Number.isFinite(opts.maxDepth) && opts.maxDepth <= depth
const file = join(dir, dirEntry.name)
if (dirEntry.isDirectory() && !atMaxDepth) {
await processDirectory(pluginTree, { prefix, opts, dirEntry, dir, file, depth, currentDirHooks })
} else if (indexDirEntry) {
// An index.js file is present in the directory so we ignore the others modules (but not the subdirectories)
} else if (dirEntry.isFile() && opts.scriptPattern.test(dirEntry.name)) {
processFile(pluginTree, { file, opts, dirEntry, pluginTree, prefix })
}
}
}
async function processDirectory (pluginTree, { prefix, opts, dirEntry, dir, file, depth, currentDirHooks }) {
let prefixBreadCrumb = (prefix ? `${prefix}/` : '/')
if (opts.dirNameRoutePrefix === true) {
prefixBreadCrumb += dirEntry.name
} else if (typeof opts.dirNameRoutePrefix === 'function') {
const prefixReplacer = opts.dirNameRoutePrefix(dir, dirEntry.name)
if (prefixReplacer) {
prefixBreadCrumb += prefixReplacer
}
}
// Pass hooks forward to next level
const hooks = opts.autoHooks && opts.cascadeHooks ? currentDirHooks : []
await buildTree(pluginTree, file, { opts, prefix: prefixBreadCrumb, depth: depth + 1, hooks })
}
function processFile (pluginTree, { file, opts, dirEntry, prefix }) {
const { language, type } = getScriptType(file, opts.packageType)
handleTypeScriptSupport(file, language)
// Don't place hook in plugin queue
if (!opts.autoHooksPattern.test(dirEntry.name)) {
accumulatePlugin({ file, type, opts, pluginTree, prefix })
}
}
function accumulatePlugin ({ file, type, opts, pluginTree, prefix }) {
// Replace backward slash to forward slash for consistent behavior between windows and posix.
const filePath = '/' + relative(opts.dir, file).replace(/\\/gu, '/')
if (opts.matchFilter && !filterPath(filePath, opts.matchFilter)) {
return
}
if (opts.ignoreFilter && filterPath(filePath, opts.ignoreFilter)) {
return
}
pluginTree[prefix || '/'].plugins.push({ file, type, prefix })
}
function handleTypeScriptSupport (file, language, isHook = false) {
if (language === 'typescript' && !runtime.supportTypeScript) {
throw new Error(
`@fastify/autoload cannot import ${isHook ? 'hooks ' : ''}plugin at '${file}'. ` +
'To fix this error transpile TypeScript to JavaScript or use an alternative loader/runtime to run your app.'
)
}
}
function filterPath (path, filter) {
if (typeof filter === 'string') {
return path.includes(filter)
}
if (filter instanceof RegExp) {
return filter.test(path)
}
return filter(path)
}
const typescriptPattern = /\.(ts|mts|cts)$/iu
function getScriptType (fname, packageType) {
return {
language: typescriptPattern.test(fname) ? 'typescript' : 'javascript',
type: determineModuleType(fname, packageType)
}
}
const modulePattern = /\.(mjs|mts)$/iu
const commonjsPattern = /\.(cjs|cts)$/iu
function determineModuleType (fname, defaultType) {
if (modulePattern.test(fname)) {
return 'module'
}
if (commonjsPattern.test(fname)) {
return 'commonjs'
}
return defaultType || 'commonjs'
}
module.exports = findPlugins