soar-cli 0.12.1

A modern package manager for Linux
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
use nu_ansi_term::Color::{Blue, Cyan, Green, Magenta, Red, Yellow};
use soar_core::{package::install::InstallTarget, SoarResult};
use soar_operations::{install, search, InstallOptions, InstallReport, ResolveResult, SoarContext};
use tabled::{
    builder::Builder,
    settings::{themes::BorderCorrection, Panel, Style},
};
use tracing::{debug, error, info, warn};

use crate::utils::{
    ask_target_action, display_settings, icon_or, select_package_interactively,
    select_package_interactively_with_installed, Colored, Icons,
};

#[allow(clippy::too_many_arguments)]
pub async fn install_packages(
    ctx: &SoarContext,
    packages: &[String],
    force: bool,
    yes: bool,
    portable: Option<String>,
    portable_home: Option<String>,
    portable_config: Option<String>,
    portable_share: Option<String>,
    portable_cache: Option<String>,
    no_notes: bool,
    binary_only: bool,
    ask: bool,
    no_verify: bool,
    name_override: Option<String>,
    version_override: Option<String>,
    pkg_type_override: Option<String>,
    pkg_id_override: Option<String>,
    show: bool,
) -> SoarResult<()> {
    debug!(
        count = packages.len(),
        force = force,
        "starting package installation"
    );

    let options = InstallOptions {
        force,
        portable: portable.clone(),
        portable_home: portable_home.clone(),
        portable_config: portable_config.clone(),
        portable_share: portable_share.clone(),
        portable_cache: portable_cache.clone(),
        binary_only,
        no_verify,
        name_override,
        version_override,
        pkg_type_override,
        pkg_id_override,
    };

    // If --show flag is used, handle interactive selection before resolving
    if show {
        return install_with_show(ctx, packages, &options, yes, force, ask, no_notes).await;
    }

    let results = install::resolve_packages(ctx, packages, &options).await?;

    let mut install_targets = Vec::new();
    for result in results {
        match result {
            ResolveResult::Resolved(targets) => {
                install_targets.extend(targets);
            }
            ResolveResult::Ambiguous(amb) => {
                let pkg = if yes {
                    amb.candidates.into_iter().next()
                } else {
                    select_package_interactively(amb.candidates, &amb.query)?
                };

                if let Some(pkg) = pkg {
                    // Re-resolve with the specific selected package
                    let specific_query =
                        format!("{}#{}:{}", pkg.pkg_name, pkg.pkg_id, pkg.repo_name);
                    let re_results =
                        install::resolve_packages(ctx, &[specific_query], &options).await?;
                    for r in re_results {
                        if let ResolveResult::Resolved(targets) = r {
                            install_targets.extend(targets);
                        }
                    }
                }
            }
            ResolveResult::NotFound(name) => {
                error!("Package {} not found", name);
                if let Ok(suggestions) = search::suggest_similar(ctx, &name, 3).await {
                    if !suggestions.is_empty() {
                        info!("Did you mean: {}?", suggestions.join(", "));
                    }
                }
            }
            ResolveResult::AlreadyInstalled {
                pkg_name,
                pkg_id,
                repo_name,
                version,
            } => {
                warn!(
                    "{}#{}:{} ({}) is already installed - skipping",
                    pkg_name, pkg_id, repo_name, version,
                );
                if !force {
                    info!("Hint: Use --force to reinstall, or --show to see other variants");
                }
            }
        }
    }

    if install_targets.is_empty() {
        info!("No packages to install");
        return Ok(());
    }

    debug!(targets = install_targets.len(), "resolved install targets");

    if ask {
        ask_target_action(&install_targets, "install")?;
    }

    let report = install::perform_installation(ctx, install_targets, &options).await?;
    display_install_report(&report, no_notes);

    Ok(())
}

async fn install_with_show(
    ctx: &SoarContext,
    packages: &[String],
    options: &InstallOptions,
    yes: bool,
    force: bool,
    ask: bool,
    no_notes: bool,
) -> SoarResult<()> {
    use soar_core::{database::models::Package, package::query::PackageQuery};
    use soar_db::repository::{
        core::{CoreRepository, SortDirection},
        metadata::MetadataRepository,
    };

    let metadata_mgr = ctx.metadata_manager().await?;
    let diesel_db = ctx.diesel_core_db()?;
    let mut install_targets = Vec::new();

    for package in packages {
        let query = PackageQuery::try_from(package.as_str())?;

        // --show requires a name and no pkg_id
        if query.pkg_id.is_some() || query.name.is_none() {
            // Fall through to normal resolve for non-show cases
            let results =
                install::resolve_packages(ctx, std::slice::from_ref(package), options).await?;
            for result in results {
                match result {
                    ResolveResult::Resolved(targets) => {
                        install_targets.extend(targets);
                    }
                    ResolveResult::Ambiguous(amb) => {
                        let pkg = if yes {
                            amb.candidates.into_iter().next()
                        } else {
                            select_package_interactively(amb.candidates, &amb.query)?
                        };

                        if let Some(pkg) = pkg {
                            let specific_query =
                                format!("{}#{}:{}", pkg.pkg_name, pkg.pkg_id, pkg.repo_name);
                            let re_results =
                                install::resolve_packages(ctx, &[specific_query], options).await?;
                            for r in re_results {
                                if let ResolveResult::Resolved(targets) = r {
                                    install_targets.extend(targets);
                                }
                            }
                        }
                    }
                    ResolveResult::NotFound(name) => {
                        error!("Package {} not found", name);
                        if let Ok(suggestions) = search::suggest_similar(ctx, &name, 3).await {
                            if !suggestions.is_empty() {
                                info!("Did you mean: {}?", suggestions.join(", "));
                            }
                        }
                    }
                    ResolveResult::AlreadyInstalled {
                        pkg_name,
                        pkg_id,
                        repo_name,
                        version,
                    } => {
                        warn!(
                            "{}#{}:{} ({}) is already installed - skipping",
                            pkg_name, pkg_id, repo_name, version,
                        );
                        if !force {
                            info!(
                                "Hint: Use --force to reinstall, or --show to see other variants"
                            );
                        }
                    }
                }
            }
            continue;
        }

        let repo_pkgs: Vec<Package> = if let Some(ref repo_name) = query.repo_name {
            metadata_mgr
                .query_repo(repo_name, |conn| {
                    MetadataRepository::find_filtered(
                        conn,
                        query.name.as_deref(),
                        None,
                        None,
                        None,
                        Some(SortDirection::Asc),
                    )
                })?
                .unwrap_or_default()
                .into_iter()
                .map(|p| {
                    let mut pkg: Package = p.into();
                    pkg.repo_name = repo_name.clone();
                    pkg
                })
                .collect()
        } else {
            metadata_mgr.query_all_flat(|repo_name, conn| {
                let pkgs = MetadataRepository::find_filtered(
                    conn,
                    query.name.as_deref(),
                    None,
                    None,
                    None,
                    Some(SortDirection::Asc),
                )?;
                Ok(pkgs
                    .into_iter()
                    .map(|p| {
                        let mut pkg: Package = p.into();
                        pkg.repo_name = repo_name.to_string();
                        pkg
                    })
                    .collect())
            })?
        };

        let repo_pkgs: Vec<Package> = if let Some(ref version) = query.version {
            repo_pkgs
                .into_iter()
                .filter(|p| p.has_version(version))
                .collect()
        } else {
            repo_pkgs
        };

        if repo_pkgs.is_empty() {
            let name = query.name.as_ref().unwrap();
            error!("Package {} not found", name);
            if let Ok(suggestions) = search::suggest_similar(ctx, name, 3).await {
                if !suggestions.is_empty() {
                    info!("Did you mean: {}?", suggestions.join(", "));
                }
            }
            continue;
        }

        // Get installed packages to show [installed] marker
        let installed_packages: Vec<(String, String, String)> = diesel_db
            .with_conn(|conn| {
                CoreRepository::list_filtered(
                    conn,
                    query.repo_name.as_deref(),
                    query.name.as_deref(),
                    None,
                    None,
                    Some(true),
                    None,
                    None,
                    None,
                )
            })?
            .into_iter()
            .map(|p| (p.pkg_id, p.repo_name, p.version))
            .collect();

        let pkg = select_package_interactively_with_installed(
            repo_pkgs,
            &query.name.clone().unwrap_or(package.clone()),
            &installed_packages,
        )?;

        let Some(pkg) = pkg else {
            continue;
        };

        // Check if this specific package is already installed
        let existing_install: Option<soar_core::database::models::InstalledPackage> = diesel_db
            .with_conn(|conn| {
                CoreRepository::list_filtered(
                    conn,
                    Some(&pkg.repo_name),
                    Some(&pkg.pkg_name),
                    Some(&pkg.pkg_id),
                    None,
                    None,
                    None,
                    None,
                    Some(SortDirection::Asc),
                )
            })?
            .into_iter()
            .map(Into::into)
            .next();

        if let Some(ref existing) = existing_install {
            if existing.is_installed {
                warn!(
                    "{}#{}:{} ({}) is already installed - {}",
                    existing.pkg_name,
                    existing.pkg_id,
                    existing.repo_name,
                    existing.version,
                    if force { "reinstalling" } else { "skipping" }
                );
                if !force {
                    info!("Hint: Use --force to reinstall, or --show to see other variants");
                    continue;
                }
            }
        }

        let pkg = pkg.resolve(query.version.as_deref());

        install_targets.push(InstallTarget {
            package: pkg,
            existing_install,
            pinned: query.version.is_some(),
            profile: None,
            ..Default::default()
        });
    }

    if install_targets.is_empty() {
        info!("No packages to install");
        return Ok(());
    }

    if ask {
        ask_target_action(&install_targets, "install")?;
    }

    let report = install::perform_installation(ctx, install_targets, options).await?;
    display_install_report(&report, no_notes);

    Ok(())
}

fn display_install_report(report: &InstallReport, no_notes: bool) {
    let settings = display_settings();
    let use_icons = settings.icons();

    for warn_msg in &report.warnings {
        warn!("{warn_msg}");
    }

    for info in &report.installed {
        info!(
            "\n{} {}#{}:{} [{}]",
            icon_or(Icons::CHECK, "*"),
            Colored(Blue, &info.pkg_name),
            Colored(Cyan, &info.pkg_id),
            Colored(Green, &info.repo_name),
            Colored(Magenta, info.install_dir.display())
        );

        if !info.symlinks.is_empty() {
            info!("  {} Binaries:", icon_or("📂", "-"));
            for (target, link) in &info.symlinks {
                info!(
                    "    {} {} {} {}",
                    icon_or(Icons::ARROW, "->"),
                    Colored(Green, link.display()),
                    icon_or("", "<-"),
                    Colored(Blue, target.display())
                );
            }
        }

        if !no_notes {
            if let Some(ref notes) = info.notes {
                info!(
                    "  {} Notes:\n    {}",
                    icon_or("📝", "-"),
                    Colored(Yellow, notes.join("\n    "))
                );
            }
        }
    }

    for err_info in &report.failed {
        error!(
            "Failed to install {}#{}: {}",
            err_info.pkg_name, err_info.pkg_id, err_info.error
        );
    }

    let installed_count = report.installed.len();
    let failed_count = report.failed.len();
    let total_packages = installed_count + failed_count;

    if use_icons {
        let mut builder = Builder::new();

        if installed_count > 0 {
            builder.push_record([
                format!("{} Installed", icon_or(Icons::CHECK, "+")),
                format!(
                    "{}/{}",
                    Colored(Green, installed_count),
                    Colored(Cyan, total_packages)
                ),
            ]);
        }
        if failed_count > 0 {
            builder.push_record([
                format!("{} Failed", icon_or(Icons::CROSS, "!")),
                format!("{}", Colored(Red, failed_count)),
            ]);
        }
        if installed_count == 0 && failed_count == 0 {
            builder.push_record([
                format!("{} Status", icon_or(Icons::WARNING, "!")),
                "No packages installed".to_string(),
            ]);
        }

        let table = builder
            .build()
            .with(Panel::header("Installation Summary"))
            .with(Style::rounded())
            .with(BorderCorrection {})
            .to_string();

        info!("\n{table}");
    } else if installed_count > 0 {
        info!(
            "Installed {}/{} packages{}",
            installed_count,
            total_packages,
            if failed_count > 0 {
                format!(", {} failed", failed_count)
            } else {
                String::new()
            }
        );
    } else {
        info!("No packages installed.");
    }
}