1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

feat(compile): support --env (#24166)

Supported the use of --env flag with the compile subcommand, so that the
generated executable/binary file can access the passed env file.
This commit is contained in:
HasanAlrimawi 2024-07-10 00:33:41 +03:00 committed by GitHub
parent 52946878b2
commit fb6348500f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 88 additions and 13 deletions

View file

@ -793,19 +793,7 @@ impl CliOptions {
) )
.with_context(|| "Resolving node_modules folder.")?; .with_context(|| "Resolving node_modules folder.")?;
if let Some(env_file_name) = &flags.env_file { load_env_variables_from_env_file(flags.env_file.as_ref());
match from_filename(env_file_name) {
Ok(_) => (),
Err(error) => {
match error {
dotenvy::Error::LineParse(line, index)=> log::info!("{} Parsing failed within the specified environment file: {} at index: {} of the value: {}",colors::yellow("Warning"), env_file_name, index, line),
dotenvy::Error::Io(_)=> log::info!("{} The `--env` flag was used, but the environment file specified '{}' was not found.",colors::yellow("Warning"),env_file_name),
dotenvy::Error::EnvVar(_)=>log::info!("{} One or more of the environment variables isn't present or not unicode within the specified environment file: {}",colors::yellow("Warning"),env_file_name),
_ => log::info!("{} Unknown failure occurred with the specified environment file: {}", colors::yellow("Warning"), env_file_name),
}
}
}
}
let disable_deprecated_api_warning = flags.log_level let disable_deprecated_api_warning = flags.log_level
== Some(log::Level::Error) == Some(log::Level::Error)
@ -1118,6 +1106,10 @@ impl CliOptions {
} }
} }
pub fn env_file_name(&self) -> Option<&String> {
self.flags.env_file.as_ref()
}
pub fn enable_future_features(&self) -> bool { pub fn enable_future_features(&self) -> bool {
*DENO_FUTURE *DENO_FUTURE
} }
@ -1871,6 +1863,23 @@ pub fn config_to_deno_graph_workspace_member(
}) })
} }
fn load_env_variables_from_env_file(filename: Option<&String>) {
let Some(env_file_name) = filename else {
return;
};
match from_filename(env_file_name) {
Ok(_) => (),
Err(error) => {
match error {
dotenvy::Error::LineParse(line, index)=> log::info!("{} Parsing failed within the specified environment file: {} at index: {} of the value: {}",colors::yellow("Warning"), env_file_name, index, line),
dotenvy::Error::Io(_)=> log::info!("{} The `--env` flag was used, but the environment file specified '{}' was not found.",colors::yellow("Warning"),env_file_name),
dotenvy::Error::EnvVar(_)=> log::info!("{} One or more of the environment variables isn't present or not unicode within the specified environment file: {}",colors::yellow("Warning"),env_file_name),
_ => log::info!("{} Unknown failure occurred with the specified environment file: {}", colors::yellow("Warning"), env_file_name),
}
}
}
}
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use pretty_assertions::assert_eq; use pretty_assertions::assert_eq;

View file

@ -31,6 +31,7 @@ pub use deno_runtime::UNSTABLE_GRANULAR_FLAGS;
use deno_terminal::colors; use deno_terminal::colors;
use std::borrow::Cow; use std::borrow::Cow;
use std::collections::HashMap;
use std::env; use std::env;
use std::env::current_exe; use std::env::current_exe;
@ -70,6 +71,14 @@ fn unwrap_or_exit<T>(result: Result<T, AnyError>) -> T {
} }
} }
fn load_env_vars(env_vars: &HashMap<String, String>) {
env_vars.iter().for_each(|env_var| {
if env::var(env_var.0).is_err() {
std::env::set_var(env_var.0, env_var.1);
}
})
}
fn main() { fn main() {
let args: Vec<_> = env::args_os().collect(); let args: Vec<_> = env::args_os().collect();
let current_exe_path = current_exe().unwrap(); let current_exe_path = current_exe().unwrap();
@ -79,6 +88,8 @@ fn main() {
match standalone { match standalone {
Ok(Some(future)) => { Ok(Some(future)) => {
let (metadata, eszip) = future.await?; let (metadata, eszip) = future.await?;
util::logger::init(metadata.log_level);
load_env_vars(&metadata.env_vars_from_env_file);
let exit_code = standalone::run(eszip, metadata).await?; let exit_code = standalone::run(eszip, metadata).await?;
std::process::exit(exit_code); std::process::exit(exit_code);
} }

View file

@ -2,6 +2,7 @@
use std::borrow::Cow; use std::borrow::Cow;
use std::collections::BTreeMap; use std::collections::BTreeMap;
use std::collections::HashMap;
use std::collections::VecDeque; use std::collections::VecDeque;
use std::env::current_exe; use std::env::current_exe;
use std::ffi::OsString; use std::ffi::OsString;
@ -96,6 +97,7 @@ pub struct Metadata {
pub ca_stores: Option<Vec<String>>, pub ca_stores: Option<Vec<String>>,
pub ca_data: Option<Vec<u8>>, pub ca_data: Option<Vec<u8>>,
pub unsafely_ignore_certificate_errors: Option<Vec<String>>, pub unsafely_ignore_certificate_errors: Option<Vec<String>>,
pub env_vars_from_env_file: HashMap<String, String>,
pub workspace_resolver: SerializedWorkspaceResolver, pub workspace_resolver: SerializedWorkspaceResolver,
pub entrypoint_key: String, pub entrypoint_key: String,
pub node_modules: Option<NodeModules>, pub node_modules: Option<NodeModules>,
@ -584,6 +586,14 @@ impl<'a> DenoCompileBinaryWriter<'a> {
} }
}; };
let env_vars_from_env_file = match cli_options.env_file_name() {
Some(env_filename) => {
log::info!("{} Environment variables from the file \"{}\" were embedded in the generated executable file", crate::colors::yellow("Warning"), env_filename);
get_file_env_vars(env_filename.to_string())?
}
None => Default::default(),
};
let metadata = Metadata { let metadata = Metadata {
argv: compile_flags.args.clone(), argv: compile_flags.args.clone(),
seed: cli_options.seed(), seed: cli_options.seed(),
@ -596,6 +606,7 @@ impl<'a> DenoCompileBinaryWriter<'a> {
log_level: cli_options.log_level(), log_level: cli_options.log_level(),
ca_stores: cli_options.ca_stores().clone(), ca_stores: cli_options.ca_stores().clone(),
ca_data, ca_data,
env_vars_from_env_file,
entrypoint_key: root_dir_url.specifier_key(entrypoint).into_owned(), entrypoint_key: root_dir_url.specifier_key(entrypoint).into_owned(),
workspace_resolver: SerializedWorkspaceResolver { workspace_resolver: SerializedWorkspaceResolver {
import_map: self.workspace_resolver.maybe_import_map().map(|i| { import_map: self.workspace_resolver.maybe_import_map().map(|i| {
@ -757,6 +768,21 @@ impl<'a> DenoCompileBinaryWriter<'a> {
} }
} }
/// This function returns the environment variables specified
/// in the passed environment file.
fn get_file_env_vars(
filename: String,
) -> Result<HashMap<String, String>, dotenvy::Error> {
let mut file_env_vars = HashMap::new();
for item in dotenvy::from_filename_iter(filename)? {
let Ok((key, val)) = item else {
continue; // this failure will be warned about on load
};
file_env_vars.insert(key, val);
}
Ok(file_env_vars)
}
/// This function sets the subsystem field in the PE header to 2 (GUI subsystem) /// This function sets the subsystem field in the PE header to 2 (GUI subsystem)
/// For more information about the PE header: https://learn.microsoft.com/en-us/windows/win32/debug/pe-format /// For more information about the PE header: https://learn.microsoft.com/en-us/windows/win32/debug/pe-format
fn set_windows_binary_to_gui(bin: &mut [u8]) -> Result<(), AnyError> { fn set_windows_binary_to_gui(bin: &mut [u8]) -> Result<(), AnyError> {

View file

@ -0,0 +1,14 @@
{
"tempDir": true,
"steps": [
{
"args": "compile -A --output out --env=environment.env main.ts",
"output": "compile.out"
},
{
"commandName": "./out",
"args": [],
"output": "main.out"
}
]
}

View file

@ -0,0 +1,4 @@
Warning Parsing failed within the specified environment file: environment.env at index: 3 of the value: c:\path
Check [WILDCARD]main.ts
Compile [WILDCARD]main.ts to out[WILDCARD]
Warning Environment variables from the file "environment.env" were embedded in the generated executable file

View file

@ -0,0 +1,4 @@
FOO=valid
MULTILINE="First Line
Second Line"
ANOTHER_FOO=c:\path

View file

@ -0,0 +1,4 @@
valid
undefined
First Line
Second Line

View file

@ -0,0 +1,3 @@
console.log(Deno.env.get("FOO"));
console.log(Deno.env.get("ANOTHER_FOO"));
console.log(Deno.env.get("MULTILINE"));