2024-01-01 14:58:21 -05:00
|
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-11-23 18:38:07 -05:00
|
|
|
|
|
2023-12-26 08:32:21 -05:00
|
|
|
|
use bytes::Bytes;
|
2024-02-06 15:57:10 -05:00
|
|
|
|
use deno_ast::MediaType;
|
2024-01-24 15:30:08 -05:00
|
|
|
|
use deno_config::glob::FilePatterns;
|
2024-02-22 21:26:34 -05:00
|
|
|
|
use deno_config::glob::PathOrPattern;
|
2023-11-23 18:38:07 -05:00
|
|
|
|
use deno_core::anyhow::Context;
|
|
|
|
|
use deno_core::error::AnyError;
|
|
|
|
|
use deno_core::url::Url;
|
2024-02-22 21:26:34 -05:00
|
|
|
|
use ignore::overrides::OverrideBuilder;
|
|
|
|
|
use ignore::WalkBuilder;
|
2024-01-08 18:51:49 -05:00
|
|
|
|
use sha2::Digest;
|
2024-01-24 16:24:52 -05:00
|
|
|
|
use std::collections::HashSet;
|
2024-01-08 18:51:49 -05:00
|
|
|
|
use std::fmt::Write as FmtWrite;
|
2023-11-23 18:38:07 -05:00
|
|
|
|
use std::io::Write;
|
2023-12-14 04:55:56 -05:00
|
|
|
|
use std::path::Path;
|
2023-11-23 18:38:07 -05:00
|
|
|
|
use tar::Header;
|
|
|
|
|
|
2024-02-06 15:57:10 -05:00
|
|
|
|
use crate::cache::LazyGraphSourceParser;
|
2024-01-24 16:24:52 -05:00
|
|
|
|
use crate::tools::registry::paths::PackagePath;
|
2023-11-23 18:38:07 -05:00
|
|
|
|
use crate::util::import_map::ImportMapUnfurler;
|
|
|
|
|
|
2024-01-24 08:49:33 -05:00
|
|
|
|
use super::diagnostics::PublishDiagnostic;
|
|
|
|
|
use super::diagnostics::PublishDiagnosticsCollector;
|
|
|
|
|
|
2024-01-08 18:51:49 -05:00
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
|
pub struct PublishableTarballFile {
|
2024-01-24 16:24:52 -05:00
|
|
|
|
pub specifier: Url,
|
2024-01-08 18:51:49 -05:00
|
|
|
|
pub size: usize,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
|
pub struct PublishableTarball {
|
|
|
|
|
pub files: Vec<PublishableTarballFile>,
|
|
|
|
|
pub hash: String,
|
|
|
|
|
pub bytes: Bytes,
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-23 18:38:07 -05:00
|
|
|
|
pub fn create_gzipped_tarball(
|
2023-12-14 04:55:56 -05:00
|
|
|
|
dir: &Path,
|
2024-02-06 15:57:10 -05:00
|
|
|
|
source_parser: LazyGraphSourceParser,
|
2024-01-24 08:49:33 -05:00
|
|
|
|
diagnostics_collector: &PublishDiagnosticsCollector,
|
2024-01-08 18:51:49 -05:00
|
|
|
|
unfurler: &ImportMapUnfurler,
|
2024-01-24 15:30:08 -05:00
|
|
|
|
file_patterns: Option<FilePatterns>,
|
2024-01-08 18:51:49 -05:00
|
|
|
|
) -> Result<PublishableTarball, AnyError> {
|
2023-11-23 18:38:07 -05:00
|
|
|
|
let mut tar = TarGzArchive::new();
|
2024-01-08 18:51:49 -05:00
|
|
|
|
let mut files = vec![];
|
2023-11-23 18:38:07 -05:00
|
|
|
|
|
2024-01-24 16:24:52 -05:00
|
|
|
|
let mut paths = HashSet::new();
|
|
|
|
|
|
2024-02-22 21:26:34 -05:00
|
|
|
|
let mut ob = OverrideBuilder::new(dir);
|
|
|
|
|
ob.add("!.git")?.add("!node_modules")?.add("!.DS_Store")?;
|
|
|
|
|
|
|
|
|
|
for pattern in file_patterns.as_ref().iter().flat_map(|p| p.include.iter()) {
|
|
|
|
|
for path_or_pat in pattern.inner() {
|
|
|
|
|
match path_or_pat {
|
|
|
|
|
PathOrPattern::Path(p) => ob.add(p.to_str().unwrap())?,
|
|
|
|
|
PathOrPattern::Pattern(p) => ob.add(p.as_str())?,
|
|
|
|
|
PathOrPattern::RemoteUrl(_) => continue,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let overrides = ob.build()?;
|
|
|
|
|
|
|
|
|
|
let iterator = WalkBuilder::new(dir)
|
|
|
|
|
.follow_links(false)
|
|
|
|
|
.require_git(false)
|
|
|
|
|
.git_ignore(true)
|
|
|
|
|
.git_global(true)
|
|
|
|
|
.git_exclude(true)
|
|
|
|
|
.overrides(overrides)
|
|
|
|
|
.filter_entry(move |entry| {
|
|
|
|
|
let matches_pattern = file_patterns
|
|
|
|
|
.as_ref()
|
|
|
|
|
.map(|p| p.matches_path(entry.path()))
|
|
|
|
|
.unwrap_or(true);
|
|
|
|
|
matches_pattern
|
|
|
|
|
})
|
|
|
|
|
.build();
|
|
|
|
|
|
|
|
|
|
for entry in iterator {
|
2023-11-23 18:38:07 -05:00
|
|
|
|
let entry = entry?;
|
|
|
|
|
|
2024-01-24 16:24:52 -05:00
|
|
|
|
let path = entry.path();
|
2024-02-22 21:26:34 -05:00
|
|
|
|
let Some(file_type) = entry.file_type() else {
|
|
|
|
|
// entry doesn’t have a file type if it corresponds to stdin.
|
2024-01-24 16:24:52 -05:00
|
|
|
|
continue;
|
2024-02-22 21:26:34 -05:00
|
|
|
|
};
|
2024-01-08 18:51:49 -05:00
|
|
|
|
|
2024-01-24 16:24:52 -05:00
|
|
|
|
let Ok(specifier) = Url::from_file_path(path) else {
|
|
|
|
|
diagnostics_collector
|
|
|
|
|
.to_owned()
|
|
|
|
|
.push(PublishDiagnostic::InvalidPath {
|
|
|
|
|
path: path.to_path_buf(),
|
|
|
|
|
message: "unable to convert path to url".to_string(),
|
|
|
|
|
});
|
|
|
|
|
continue;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if file_type.is_file() {
|
|
|
|
|
let Ok(relative_path) = path.strip_prefix(dir) else {
|
|
|
|
|
diagnostics_collector
|
|
|
|
|
.to_owned()
|
|
|
|
|
.push(PublishDiagnostic::InvalidPath {
|
|
|
|
|
path: path.to_path_buf(),
|
|
|
|
|
message: "path is not in publish directory".to_string(),
|
|
|
|
|
});
|
|
|
|
|
continue;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let path_str = relative_path.components().fold(
|
|
|
|
|
"".to_string(),
|
|
|
|
|
|mut path, component| {
|
|
|
|
|
path.push('/');
|
|
|
|
|
match component {
|
|
|
|
|
std::path::Component::Normal(normal) => {
|
|
|
|
|
path.push_str(&normal.to_string_lossy())
|
|
|
|
|
}
|
|
|
|
|
std::path::Component::CurDir => path.push('.'),
|
|
|
|
|
std::path::Component::ParentDir => path.push_str(".."),
|
|
|
|
|
_ => unreachable!(),
|
|
|
|
|
}
|
|
|
|
|
path
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
match PackagePath::new(path_str.clone()) {
|
|
|
|
|
Ok(package_path) => {
|
|
|
|
|
if !paths.insert(package_path) {
|
|
|
|
|
diagnostics_collector.to_owned().push(
|
|
|
|
|
PublishDiagnostic::DuplicatePath {
|
|
|
|
|
path: path.to_path_buf(),
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Err(err) => {
|
|
|
|
|
diagnostics_collector.to_owned().push(
|
|
|
|
|
PublishDiagnostic::InvalidPath {
|
|
|
|
|
path: path.to_path_buf(),
|
|
|
|
|
message: err.to_string(),
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-06 15:57:10 -05:00
|
|
|
|
let content = resolve_content_maybe_unfurling(
|
|
|
|
|
path,
|
|
|
|
|
&specifier,
|
|
|
|
|
unfurler,
|
|
|
|
|
source_parser,
|
|
|
|
|
diagnostics_collector,
|
|
|
|
|
)?;
|
2024-01-08 18:51:49 -05:00
|
|
|
|
files.push(PublishableTarballFile {
|
2024-01-24 16:24:52 -05:00
|
|
|
|
specifier: specifier.clone(),
|
2024-02-06 15:57:10 -05:00
|
|
|
|
size: content.len(),
|
2024-01-08 18:51:49 -05:00
|
|
|
|
});
|
2023-11-30 13:54:54 -05:00
|
|
|
|
tar
|
2024-01-24 16:24:52 -05:00
|
|
|
|
.add_file(format!(".{}", path_str), &content)
|
2023-11-30 13:54:54 -05:00
|
|
|
|
.with_context(|| {
|
2024-01-08 18:51:49 -05:00
|
|
|
|
format!("Unable to add file to tarball '{}'", entry.path().display())
|
2023-11-30 13:54:54 -05:00
|
|
|
|
})?;
|
2024-01-24 16:24:52 -05:00
|
|
|
|
} else if !file_type.is_dir() {
|
|
|
|
|
diagnostics_collector.push(PublishDiagnostic::UnsupportedFileType {
|
|
|
|
|
specifier,
|
|
|
|
|
kind: if file_type.is_symlink() {
|
|
|
|
|
"symlink".to_owned()
|
|
|
|
|
} else {
|
|
|
|
|
format!("{file_type:?}")
|
|
|
|
|
},
|
|
|
|
|
});
|
2023-11-23 18:38:07 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let v = tar.finish().context("Unable to finish tarball")?;
|
2024-01-08 18:51:49 -05:00
|
|
|
|
let hash_bytes: Vec<u8> = sha2::Sha256::digest(&v).iter().cloned().collect();
|
|
|
|
|
let mut hash = "sha256-".to_string();
|
|
|
|
|
for byte in hash_bytes {
|
|
|
|
|
write!(&mut hash, "{:02x}", byte).unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-20 07:30:34 -05:00
|
|
|
|
files.sort_by(|a, b| a.specifier.cmp(&b.specifier));
|
|
|
|
|
|
2024-01-08 18:51:49 -05:00
|
|
|
|
Ok(PublishableTarball {
|
|
|
|
|
files,
|
|
|
|
|
hash,
|
|
|
|
|
bytes: Bytes::from(v),
|
|
|
|
|
})
|
2023-11-23 18:38:07 -05:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-06 15:57:10 -05:00
|
|
|
|
fn resolve_content_maybe_unfurling(
|
|
|
|
|
path: &Path,
|
|
|
|
|
specifier: &Url,
|
|
|
|
|
unfurler: &ImportMapUnfurler,
|
|
|
|
|
source_parser: LazyGraphSourceParser,
|
|
|
|
|
diagnostics_collector: &PublishDiagnosticsCollector,
|
|
|
|
|
) -> Result<Vec<u8>, AnyError> {
|
|
|
|
|
let parsed_source = match source_parser.get_or_parse_source(specifier)? {
|
|
|
|
|
Some(parsed_source) => parsed_source,
|
|
|
|
|
None => {
|
|
|
|
|
let data = std::fs::read(path)
|
|
|
|
|
.with_context(|| format!("Unable to read file '{}'", path.display()))?;
|
|
|
|
|
let media_type = MediaType::from_specifier(specifier);
|
|
|
|
|
|
|
|
|
|
match media_type {
|
|
|
|
|
MediaType::JavaScript
|
|
|
|
|
| MediaType::Jsx
|
|
|
|
|
| MediaType::Mjs
|
|
|
|
|
| MediaType::Cjs
|
|
|
|
|
| MediaType::TypeScript
|
|
|
|
|
| MediaType::Mts
|
|
|
|
|
| MediaType::Cts
|
|
|
|
|
| MediaType::Dts
|
|
|
|
|
| MediaType::Dmts
|
|
|
|
|
| MediaType::Dcts
|
|
|
|
|
| MediaType::Tsx => {
|
|
|
|
|
// continue
|
|
|
|
|
}
|
|
|
|
|
MediaType::SourceMap
|
|
|
|
|
| MediaType::Unknown
|
|
|
|
|
| MediaType::Json
|
|
|
|
|
| MediaType::Wasm
|
|
|
|
|
| MediaType::TsBuildInfo => {
|
|
|
|
|
// not unfurlable data
|
|
|
|
|
return Ok(data);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let text = String::from_utf8(data)?;
|
|
|
|
|
deno_ast::parse_module(deno_ast::ParseParams {
|
2024-02-08 20:40:26 -05:00
|
|
|
|
specifier: specifier.clone(),
|
2024-02-06 15:57:10 -05:00
|
|
|
|
text_info: deno_ast::SourceTextInfo::from_string(text),
|
|
|
|
|
media_type,
|
|
|
|
|
capture_tokens: false,
|
|
|
|
|
maybe_syntax: None,
|
|
|
|
|
scope_analysis: false,
|
|
|
|
|
})?
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
log::debug!("Unfurling {}", specifier);
|
|
|
|
|
let mut reporter = |diagnostic| {
|
|
|
|
|
diagnostics_collector.push(PublishDiagnostic::ImportMapUnfurl(diagnostic));
|
|
|
|
|
};
|
|
|
|
|
let content = unfurler.unfurl(specifier, &parsed_source, &mut reporter);
|
|
|
|
|
Ok(content.into_bytes())
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-23 18:38:07 -05:00
|
|
|
|
struct TarGzArchive {
|
|
|
|
|
builder: tar::Builder<Vec<u8>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl TarGzArchive {
|
|
|
|
|
pub fn new() -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
builder: tar::Builder::new(Vec::new()),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn add_file(
|
|
|
|
|
&mut self,
|
|
|
|
|
path: String,
|
|
|
|
|
data: &[u8],
|
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
|
let mut header = Header::new_gnu();
|
|
|
|
|
header.set_size(data.len() as u64);
|
|
|
|
|
self.builder.append_data(&mut header, &path, data)?;
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn finish(mut self) -> Result<Vec<u8>, AnyError> {
|
|
|
|
|
self.builder.finish()?;
|
|
|
|
|
let bytes = self.builder.into_inner()?;
|
|
|
|
|
let mut gz_bytes = Vec::new();
|
|
|
|
|
let mut encoder = flate2::write::GzEncoder::new(
|
|
|
|
|
&mut gz_bytes,
|
|
|
|
|
flate2::Compression::default(),
|
|
|
|
|
);
|
|
|
|
|
encoder.write_all(&bytes)?;
|
|
|
|
|
encoder.finish()?;
|
|
|
|
|
Ok(gz_bytes)
|
|
|
|
|
}
|
|
|
|
|
}
|