File size: 10,692 Bytes
b91e262 | 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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | #![doc = include_str!("../README.md")]
mod constants;
mod patterns;
use std::sync::LazyLock;
use anyhow::{Context, Result, bail};
pub use constants::*;
pub use patterns::*;
use regex::Regex;
use turbo_unix_path::{get_parent_path, get_relative_path_to, join_path, normalize_path};
/// Given a next.js template file's contents, replaces `replacements` and `injections` and makes
/// sure there are none left over.
///
/// See `packages/next/src/build/templates/` for examples.
///
/// Paths should be unix or node.js-style paths where `/` is used as the path separator. They should
/// not be windows-style paths.
pub fn expand_next_js_template<'a>(
content: &str,
template_path: &str,
next_package_dir_path: &str,
replacements: impl IntoIterator<Item = (&'a str, &'a str)>,
injections: impl IntoIterator<Item = (&'a str, &'a str)>,
imports: impl IntoIterator<Item = (&'a str, Option<&'a str>)>,
) -> Result<String> {
expand_next_js_template_inner(
content,
template_path,
next_package_dir_path,
replacements,
injections,
imports,
true,
)
}
/// Same as [`expand_next_js_template`], but does not enforce that at least one relative
/// import is present and rewritten. This is useful for very small templates that only
/// use template variables/injections and have no imports of their own.
pub fn expand_next_js_template_no_imports<'a>(
content: &str,
template_path: &str,
next_package_dir_path: &str,
replacements: impl IntoIterator<Item = (&'a str, &'a str)>,
injections: impl IntoIterator<Item = (&'a str, &'a str)>,
imports: impl IntoIterator<Item = (&'a str, Option<&'a str>)>,
) -> Result<String> {
expand_next_js_template_inner(
content,
template_path,
next_package_dir_path,
replacements,
injections,
imports,
false,
)
}
fn expand_next_js_template_inner<'a>(
content: &str,
template_path: &str,
next_package_dir_path: &str,
replacements: impl IntoIterator<Item = (&'a str, &'a str)>,
injections: impl IntoIterator<Item = (&'a str, &'a str)>,
imports: impl IntoIterator<Item = (&'a str, Option<&'a str>)>,
require_import_replacement: bool,
) -> Result<String> {
let template_parent_path = normalize_path(get_parent_path(template_path))
.context("failed to normalize template path")?;
let next_package_dir_parent_path = normalize_path(get_parent_path(next_package_dir_path))
.context("failed to normalize package dir path")?;
/// See [regex::Regex::replace_all].
fn replace_all<E>(
re: ®ex::Regex,
haystack: &str,
mut replacement: impl FnMut(®ex::Captures<'_>) -> Result<String, E>,
) -> Result<String, E> {
let mut new = String::with_capacity(haystack.len());
let mut last_match = 0;
for caps in re.captures_iter(haystack) {
let m = caps.get(0).unwrap();
new.push_str(&haystack[last_match..m.start()]);
new.push_str(&replacement(&caps)?);
last_match = m.end();
}
new.push_str(&haystack[last_match..]);
Ok(new)
}
// Update the relative imports to be absolute. This will update any relative imports to be
// relative to the root of the `next` package.
static IMPORT_PATH_RE: LazyLock<Regex> =
LazyLock::new(|| Regex::new("(?:from '(\\..*)'|import '(\\..*)')").unwrap());
let mut count = 0;
let mut content = replace_all(&IMPORT_PATH_RE, content, |caps| {
let from_request = caps.get(1).map_or("", |c| c.as_str());
count += 1;
let is_from_request = !from_request.is_empty();
let imported_path = join_path(
&template_parent_path,
if is_from_request {
from_request
} else {
caps.get(2).context("import path must exist")?.as_str()
},
)
.context("path should not leave the fs")?;
let relative = get_relative_path_to(&next_package_dir_parent_path, &imported_path);
if !relative.starts_with("./next/") {
bail!(
"Invariant: Expected relative import to start with \"./next/\", found \
{relative:?}. Path computed from {next_package_dir_parent_path:?} to \
{imported_path:?}.",
)
}
let relative = relative
.strip_prefix("./")
.context("should be able to strip the prefix")?;
Ok(if is_from_request {
format!("from {}", serde_json::to_string(relative).unwrap())
} else {
format!("import {}", serde_json::to_string(relative).unwrap())
})
})
.context("replacing imports failed")?;
// Verify that at least one import was replaced when required. It's the case today where every
// template file (except a few small internal helpers) has at least one import to update, so
// this ensures that we don't accidentally remove the import replacement code or use the wrong
// template file.
if require_import_replacement && count == 0 {
bail!("Invariant: Expected to replace at least one import")
}
// Replace all the template variables with the actual values. If a template variable is missing,
// throw an error.
let mut missing_replacements = Vec::new();
for (key, replacement) in replacements {
let full = format!("'{key}'");
if content.contains(&full) {
content = content.replace(&full, &serde_json::to_string(&replacement).unwrap());
} else {
missing_replacements.push(key)
}
}
// Check to see if there's any remaining template variables.
static TEMPLATE_VAR_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new("VAR_[A-Z_]+").unwrap());
let mut matches = TEMPLATE_VAR_RE.find_iter(&content).peekable();
if matches.peek().is_some() {
bail!(
"Invariant: Expected to replace all template variables, found {}",
matches.map(|m| m.as_str()).collect::<Vec<_>>().join(", "),
)
}
// Check to see if any template variable was provided but not used.
if !missing_replacements.is_empty() {
bail!(
"Invariant: Expected to replace all template variables, missing {} in template",
missing_replacements.join(", "),
)
}
// Replace the injections.
let mut missing_injections = Vec::new();
for (key, injection) in injections {
let full = format!("// INJECT:{key}");
if content.contains(&full) {
content = content.replace(&full, &format!("const {key} = {injection}"));
} else {
missing_injections.push(key);
}
}
// Check to see if there's any remaining injections.
static INJECT_RE: LazyLock<Regex> =
LazyLock::new(|| Regex::new("// INJECT:[A-Za-z0-9_]+").unwrap());
let mut matches = INJECT_RE.find_iter(&content).peekable();
if matches.peek().is_some() {
bail!(
"Invariant: Expected to inject all injections, found {}",
matches.map(|m| m.as_str()).collect::<Vec<_>>().join(", "),
)
}
// Check to see if any injection was provided but not used.
if !missing_injections.is_empty() {
bail!(
"Invariant: Expected to inject all injections, missing {} in template",
missing_injections.join(", "),
)
}
// Replace the optional imports.
let mut missing_imports = Vec::new();
for (key, import_path) in imports {
let mut full = format!("// OPTIONAL_IMPORT:{key}");
let namespace = if !content.contains(&full) {
full = format!("// OPTIONAL_IMPORT:* as {key}");
if content.contains(&full) {
true
} else {
missing_imports.push(key);
continue;
}
} else {
false
};
if let Some(path) = import_path {
content = content.replace(
&full,
&format!(
"import {}{} from {}",
if namespace { "* as " } else { "" },
key,
serde_json::to_string(&path).unwrap(),
),
);
} else {
content = content.replace(&full, &format!("const {key} = null"));
}
}
// Check to see if there's any remaining imports.
static OPTIONAL_IMPORT_RE: LazyLock<Regex> =
LazyLock::new(|| Regex::new("// OPTIONAL_IMPORT:(\\* as )?[A-Za-z0-9_]+").unwrap());
let mut matches = OPTIONAL_IMPORT_RE.find_iter(&content).peekable();
if matches.peek().is_some() {
bail!(
"Invariant: Expected to inject all imports, found {}",
matches.map(|m| m.as_str()).collect::<Vec<_>>().join(", "),
)
}
// Check to see if any import was provided but not used.
if !missing_imports.is_empty() {
bail!(
"Invariant: Expected to inject all imports, missing {} in template",
missing_imports.join(", "),
)
}
// Ensure that the last line is a newline.
if !content.ends_with('\n') {
content.push('\n');
}
Ok(content)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_expand_next_js_template() {
let input = r#"
import '../../foo/bar';
import * as userlandPage from 'VAR_USERLAND'
// OPTIONAL_IMPORT:* as userland500Page
// OPTIONAL_IMPORT:incrementalCacheHandler
// INJECT:nextConfig
const srcPage = 'VAR_PAGE'
"#;
let expected = r#"
import "next/src/foo/bar";
import * as userlandPage from "INNER_PAGE_ENTRY"
import * as userland500Page from "INNER_ERROR_500"
const incrementalCacheHandler = null
const nextConfig = {}
const srcPage = "./some/path.js"
"#;
let output = expand_next_js_template(
input,
"project/node_modules/next/src/build/templates/test-case.js",
"project/node_modules/next",
[
("VAR_USERLAND", "INNER_PAGE_ENTRY"),
("VAR_PAGE", "./some/path.js"),
],
[("nextConfig", "{}")],
[
("incrementalCacheHandler", None),
("userland500Page", Some("INNER_ERROR_500")),
],
)
.unwrap();
println!("{output}");
assert_eq!(output.trim_end(), expected.trim_end());
}
}
|