leo_lang/cli/helpers/context.rs
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
// Copyright (C) 2019-2025 Provable Inc.
// This file is part of the Leo library.
// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.
use aleo_std;
use leo_errors::{CliError, PackageError, Result};
use leo_package::build::{BUILD_DIRECTORY_NAME, BuildDirectory};
use leo_retriever::LockFileEntry;
use snarkvm::file::Manifest;
use aleo_std::aleo_dir;
use indexmap::IndexMap;
use snarkvm::prelude::{Network, PrivateKey};
use std::{
env::current_dir,
fs::File,
io::Write,
path::{Path, PathBuf},
str::FromStr,
};
/// Project context, manifest, current directory etc
/// All the info that is relevant in most of the commands
#[derive(Clone)]
pub struct Context {
/// Path at which the command is called, None when default
pub path: Option<PathBuf>,
/// Path to use for the Aleo registry, None when default
pub home: Option<PathBuf>,
/// Recursive flag.
// TODO: Shift from callee to caller by including display method
pub recursive: bool,
}
impl Context {
pub fn new(path: Option<PathBuf>, home: Option<PathBuf>, recursive: bool) -> Result<Context> {
Ok(Context { path, home, recursive })
}
/// Returns the path of the parent directory to the Leo package.
pub fn parent_dir(&self) -> Result<PathBuf> {
match &self.path {
Some(ref path) => {
let mut path = path.clone();
path.pop();
Ok(path)
}
None => Ok(current_dir().map_err(CliError::cli_io_error)?),
}
}
/// Returns the path to the Leo package.
pub fn dir(&self) -> Result<PathBuf> {
match &self.path {
Some(path) => Ok(path.clone()),
None => Ok(current_dir().map_err(CliError::cli_io_error)?),
}
}
/// Returns the path to the Aleo registry directory.
pub fn home(&self) -> Result<PathBuf> {
match &self.home {
Some(path) => Ok(path.clone()),
None => Ok(aleo_dir()),
}
}
/// Returns the package name as a String.
/// Opens the manifest file `program.json` and creates the build directory if it doesn't exist.
pub fn open_manifest<N: Network>(&self) -> Result<Manifest<N>> {
// Open the manifest file.
let path = self.dir()?;
let manifest = Manifest::<N>::open(&path).map_err(PackageError::failed_to_open_manifest)?;
// Lookup the program id.
// let program_id = manifest.program_id();
// Create the Leo build/ directory if it doesn't exist.
let build_path = path.join(Path::new(BUILD_DIRECTORY_NAME));
if !build_path.exists() {
BuildDirectory::create(&build_path)?;
}
// Mirror the program.json file in the Leo build/ directory for Aleo SDK compilation.
// Read the manifest file to string.
let manifest_string =
std::fs::read_to_string(manifest.path()).map_err(PackageError::failed_to_read_manifest)?;
// Construct the file path.
let build_manifest_path = build_path.join(Manifest::<N>::file_name());
// Write the file.
File::create(build_manifest_path)
.map_err(PackageError::failed_to_create_manifest)?
.write_all(manifest_string.as_bytes())
.map_err(PackageError::failed_to_write_manifest)?;
// Get package name from program id.
Ok(manifest)
}
/// Returns a post ordering of the local dependencies.
/// Found by reading the lock file `leo.lock`.
pub fn local_dependency_paths(&self) -> Result<Vec<(String, PathBuf)>> {
let path = self.dir()?;
let lock_path = path.join("leo.lock");
// If there is no lock file can assume no local dependencies
if !lock_path.exists() {
return Ok(Vec::new());
}
let contents = std::fs::read_to_string(&lock_path)
.map_err(|err| PackageError::failed_to_read_file(lock_path.to_str().unwrap(), err))?;
let entry_map: IndexMap<String, Vec<LockFileEntry>> =
toml::from_str(&contents).map_err(PackageError::failed_to_deserialize_lock_file)?;
let lock_entries = entry_map.get("package").ok_or_else(PackageError::invalid_lock_file_formatting)?;
let list: Vec<(String, PathBuf)> = lock_entries
.iter()
.filter_map(|entry| {
entry.path().map(|local_path| (entry.name().to_string(), local_path.clone().join("build")))
})
.collect();
Ok(list)
}
/// Returns the private key from the .env file specified in the directory.
pub fn dotenv_private_key<N: Network>(&self) -> Result<PrivateKey<N>> {
dotenvy::from_path(self.dir()?.join(".env")).map_err(|_| CliError::failed_to_get_private_key_from_env())?;
// Load the private key from the environment.
let private_key = dotenvy::var("PRIVATE_KEY").map_err(|_| CliError::failed_to_get_private_key_from_env())?;
// Parse the private key.
Ok(PrivateKey::<N>::from_str(&private_key)?)
}
/// Returns the endpoint from the .env file specified in the directory.
pub fn dotenv_endpoint(&self) -> Result<String> {
dotenvy::from_path(self.dir()?.join(".env")).map_err(|_| CliError::failed_to_get_endpoint_from_env())?;
// Load the endpoint from the environment.
Ok(dotenvy::var("ENDPOINT").map_err(|_| CliError::failed_to_get_endpoint_from_env())?)
}
/// Returns the network from the .env file specified in the directory.
pub fn dotenv_network(&self) -> Result<String> {
dotenvy::from_path(self.dir()?.join(".env")).map_err(|_| CliError::failed_to_get_network_from_env())?;
// Load the network from the environment.
Ok(dotenvy::var("NETWORK").map_err(|_| CliError::failed_to_get_network_from_env())?)
}
/// Returns the endpoint to interact with the network.
/// If the `--endpoint` options is not provided, it will default to the one in the `.env` file.
pub fn get_endpoint(&self, endpoint: &Option<String>) -> Result<String> {
match endpoint {
Some(endpoint) => Ok(endpoint.clone()),
None => Ok(self.dotenv_endpoint()?),
}
}
/// Returns the network name.
/// If the `--network` options is not provided, it will default to the one in the `.env` file.
pub fn get_network(&self, network: &Option<String>) -> Result<String> {
match network {
Some(network) => Ok(network.clone()),
None => Ok(self.dotenv_network()?),
}
}
/// Returns the private key.
/// If the `--private-key` options is not provided, it will default to the one in the `.env` file.
pub fn get_private_key<N: Network>(&self, private_key: &Option<String>) -> Result<PrivateKey<N>> {
match private_key {
Some(private_key) => Ok(PrivateKey::<N>::from_str(private_key)?),
None => self.dotenv_private_key(),
}
}
}