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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
mod cfg;
mod net;
mod openpgp;
mod pkgtoolkit;
mod router;
use crate::cfg::config::Config;
use crate::net::{http_package::HTTPPackage, i2p_package::I2PPackage};
use crate::pkgtoolkit::Package;
use crate::pkgtoolkit::archive::ArchiveOperations;
use crate::pkgtoolkit::build::BuildOperations;
use crate::pkgtoolkit::git_source::GitSource;
use crate::pkgtoolkit::index::IndexOperations;
use crate::pkgtoolkit::install::InstallOperations;
use crate::router::manager::RouterManager;
use clap::{Args, Parser, Subcommand};
use std::io::Write;
use std::path::Path;
#[derive(Parser)]
struct Cli {
#[command(subcommand)]
command: Commands,
}
#[derive(Subcommand)]
enum Commands {
#[command(about = "Validate .mesk package archive")]
Validate { path: String },
#[command(about = "Update all repositories index")]
Update,
#[command(about = "Upgrade all packages or a specific package")]
Upgrade { pkgname: Option<String> },
#[command(about = "Build package from .mesk ")]
Build { pkgname: String },
#[command(about = "Install package")]
Install {
#[arg(help = "Package name or path to local .mesk file")]
pkgname: String,
source: Option<String>,
#[arg(short = 'p', long = "path")]
#[arg(help = "Install from local .mesk file")]
path: bool,
#[command(flatten)]
args: RemoteInstallArgs,
},
#[command(about = "Uninstall package")]
Uninstall { pkgname: String },
#[command(about = "Get package source")]
GetSource { pkgname: String },
#[command(about = "Generator of config file")]
DefaultConfig {
repo: Option<String>,
cachedir: Option<String>,
buildir: Option<String>,
installed_db: Option<String>,
},
#[command(about = "Maintaners, links, developers and more info")]
Credits,
#[command(about = "Generate index for repository path")]
GenIndex { path: String },
}
#[derive(Args, Clone)]
#[command(about = "Remote install arguments")]
struct RemoteInstallArgs {
#[arg(short = 'b', long = "bin")]
#[arg(help = "Install binary package")]
bin: bool,
#[arg(short = 't', long = "http")]
#[arg(help = "Use non-i2p mirror")]
http: bool,
#[arg(short = 'c', long = "clean")]
#[arg(help = "Clean cache before install")]
clean: bool,
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let cli: Cli = Cli::parse();
// Parse config once at the beginning
let config = Config::parse()?;
// Setup integrated router if enabled
let router_manager = if config.router.integrated_router {
println!("Starting integrated router...");
match RouterManager::new(&config).await {
Ok(manager) => {
println!("Router manager initialized");
Some(manager)
}
Err(e) => {
eprintln!("Failed to initialize router manager: {}", e);
return Err(e);
}
}
} else {
println!("Integrated router disabled");
None
};
let result = {
match &cli.command {
Commands::Validate { path } => {
println!("Validating {}", path);
match Package::check(path.to_string()) {
Ok(is_valid) => {
if is_valid {
println!("Package archive is valid.");
} else {
println!("Package archive is invalid.");
return Err(std::io::Error::other("Invalid package archive").into());
}
}
Err(e) => {
eprintln!("Failed to validate package '{}': {}", path, e);
return Err(e.into());
}
}
return Ok(());
}
Commands::Build { pkgname } => {
println!("Building package from archive: {}", pkgname);
let path = Path::new(&pkgname);
if !path.exists() {
return Err(std::io::Error::other(format!(
"Package archive not found: {}",
pkgname
))
.into());
}
if !path.is_file() {
return Err(
std::io::Error::other(format!("Path is not a file: {}", pkgname)).into(),
);
}
println!("Extracting archive...");
Package::extract_archive(pkgname)?;
let cache_dir = &config.paths.cache_dir;
// Find the package directory (should be name-version format)
let mut pkg_dir_name = None;
for entry in std::fs::read_dir(cache_dir)? {
let entry = entry?;
let path = entry.path();
if path.is_dir() {
let dir_name = path.file_name().unwrap().to_string_lossy();
if dir_name.contains('-') && dir_name != "temp_extract" {
let install_path = path.join("INSTALL");
if install_path.exists() {
pkg_dir_name = Some(dir_name.to_string());
break;
}
}
}
}
let pkg_dir_name = pkg_dir_name
.ok_or_else(|| std::io::Error::other("Package directory not found in cache"))?;
let install_toml_path =
Path::new(cache_dir).join(format!("{}/INSTALL", pkg_dir_name));
if !install_toml_path.exists() {
return Err(std::io::Error::other(
"INSTALL file not found in package directory",
)
.into());
}
let install_content = std::fs::read_to_string(&install_toml_path)?;
let install_data: crate::pkgtoolkit::types::Install =
toml::from_str(&install_content)?;
let mut pkg = install_data.package;
println!("Building package '{}'...", pkg.name);
pkg.build()?;
println!("Package '{}' built successfully.", pkg.name);
return Ok(());
}
Commands::Install {
pkgname,
source: _,
path,
args,
} => {
if *path {
println!("Installing package from local file: {}", pkgname);
println!("Extracting archive...");
Package::extract_archive(pkgname)?;
let cache_dir = &config.paths.cache_dir;
let mut pkg_dir_name = None;
for entry in std::fs::read_dir(cache_dir)? {
let entry = entry?;
let path = entry.path();
if path.is_dir() {
let dir_name = path.file_name().unwrap().to_string_lossy();
if dir_name.contains('-') && dir_name != "temp_extract" {
let install_path = path.join("INSTALL");
if install_path.exists() {
pkg_dir_name = Some(dir_name.to_string());
break;
}
}
}
}
let pkg_dir_name = pkg_dir_name.ok_or_else(|| {
std::io::Error::other("Package directory not found in cache")
})?;
let install_toml_path =
Path::new(cache_dir).join(format!("{}/INSTALL", pkg_dir_name));
let install_content = std::fs::read_to_string(&install_toml_path)?;
let install_data: crate::pkgtoolkit::types::Install =
toml::from_str(&install_content)?;
let mut pkg = install_data.package;
println!("Building package '{}'...", pkg.name);
pkg.build()?;
println!("Installing package '{}'...", pkg.name);
pkg.install()?;
println!("Package '{}' installed successfully.", pkg.name);
} else {
// Initialize router if it's needed for I2P connections and is enabled
if !args.http && config.router.integrated_router {
// Wait for router to be fully started
if let Some(ref manager) = router_manager {
println!("Waiting for router to be ready...");
tokio::time::sleep(std::time::Duration::from_secs(3)).await; // Give router time to start
if !manager.is_running() {
eprintln!(
"Router is not running, cannot proceed with I2P installation"
);
return Err(std::io::Error::other("Router not running").into());
}
}
}
if args.http {
println!("Installing {} via non-i2p mirror", pkgname);
let mut http_client = HTTPPackage::new(config);
http_client.fetch_index_http().await?;
println!("Index fetched successfully.");
http_client.fetch_package_http(pkgname).await?;
println!("Package '{}' installed successfully.", pkgname);
} else {
println!("Installing {} via I2P", pkgname);
let mut i2p_client = I2PPackage::new(config);
i2p_client.fetch_index().await?;
println!("Index fetched successfully.");
i2p_client.fetch_package(pkgname).await?;
println!("Package '{}' installed successfully.", pkgname);
}
}
return Ok(());
}
Commands::Uninstall { pkgname } => {
println!("Uninstalling package: {}", pkgname);
let installed_packages = Package::list_installed_packages().map_err(|e| {
eprintln!("Failed to list installed packages: {}", e);
e
})?;
let package_manifest = installed_packages
.iter()
.find(|p| p.name == *pkgname)
.ok_or_else(|| {
std::io::Error::other(format!("Package '{}' is not installed", pkgname))
})?;
let package = Package {
name: package_manifest.name.clone(),
version: package_manifest.version.clone(),
..Default::default()
};
match package.uninstall() {
Ok(true) => {
println!("Successfully uninstalled package: {}", pkgname);
Ok(())
}
Ok(false) => {
eprintln!(
"Some files could not be removed during uninstallation of {}",
pkgname
);
Err(std::io::Error::other("Partial uninstallation occurred").into())
}
Err(e) => {
eprintln!("Failed to uninstall package {}: {}", pkgname, e);
Err(e.into())
}
}
}
Commands::GetSource { pkgname } => {
// Initialize router for I2P connections if enabled
if config.router.integrated_router {
if let Some(ref manager) = router_manager {
println!("Waiting for router to be ready...");
tokio::time::sleep(std::time::Duration::from_secs(2)).await;
if !manager.is_running() {
eprintln!("Router is not running, cannot proceed with I2P operation");
return Err(std::io::Error::other("Router not running").into());
}
}
}
println!("Getting source of {}", pkgname);
let source_path = GitSource::get_source_by_name(pkgname, &config)?;
println!("Source code successfully downloaded to: {}", source_path);
return Ok(());
}
Commands::DefaultConfig {
repo,
cachedir,
buildir,
installed_db,
} => {
println!("Generating config file");
if cachedir.is_none() && repo.is_none() && buildir.is_none() {
let config = Config::default().unwrap();
println!("---- Start of generated config ----");
println!("{}", config);
println!("---- End of generated config ----");
eprintln!("Writing the default config to /etc/mesk/mesk.toml");
let path = Path::new("/etc/mesk/mesk.toml");
std::fs::create_dir_all(path.parent().unwrap())?;
let mut file = std::fs::File::create(path)?;
file.write_all(config.as_bytes())?;
println!("Config tool ending work.");
} else {
let config = Config::generate(repo, cachedir, buildir, installed_db).unwrap();
println!("---- Start of generated config ----");
println!("{:?}", config);
println!("---- End of generated config ----");
eprintln!("Writing the default config to /etc/mesk/mesk.toml");
let path = Path::new("/etc/mesk/mesk.toml");
std::fs::create_dir_all(path.parent().unwrap())?;
let mut file = std::fs::File::create(path)?;
file.write_all(config.as_bytes())?;
println!("Config tool ending work.");
}
return Ok(());
}
Commands::Update => {
// Initialize router for I2P connections if enabled
if config.router.integrated_router {
if let Some(ref manager) = router_manager {
println!("Waiting for router to be ready...");
tokio::time::sleep(std::time::Duration::from_secs(2)).await;
if !manager.is_running() {
eprintln!("Router is not running, cannot proceed with I2P operation");
return Err(std::io::Error::other("Router not running").into());
}
}
}
println!("Updating index from {}", config.repo.repo_url);
let mut i2p_client = I2PPackage::new(config);
i2p_client.fetch_index().await?;
println!("Index updated successfully.");
return Ok(());
}
Commands::Upgrade { pkgname } => {
println!("Upgrading {}", pkgname.as_deref().unwrap_or("all packages"));
return Ok(());
}
Commands::Credits => {
println!(
"CREATED BY: Namilsk as part of the Anthrill independent Global network distribution project"
);
println!(" ");
println!("The Anthrill project repos: https://codeberg.org/NamelessTeam ");
return Ok(());
}
Commands::GenIndex { path } => {
println!("Generating index for {}", path);
Package::gen_index(path)?;
println!("Index generated successfully.");
return Ok(());
}
}
};
// Shutdown router if it was initialized
if let Some(ref manager) = router_manager {
println!("Shutting down integrated router...");
if let Err(e) = manager.stop().await {
eprintln!("Error stopping router: {}", e);
}
}
result
}
|