mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 02:16:30 +00:00
Extend dependency status box to report more issues (#121)
* Extend dependency status box to report more issues - replace render_dev_dependency_box with an extended render_dependency_box - reports insecure dev dependencies, outdated main dependencies, and outdated dev dependencies - handle pluralization in dependency count message - change methods in AnalyzeDependenciesOutcome - add count_outdated - remove any_dev_issues - remove AnalyzedDependencies::any_dev_issues * Format status.rs * Simplify AnalyzeDependenciesOutcome method impls - match ergonomics lint * Use bullet point list * Tweak dependency box again - only use list items if there is more than one dependency kind * Fix outdated dependency count - `count_outdated` already counts only main dependencies * Tweak dependency box to no longer assume non-zero issues - check for when all dependency component counts are zero, render nothing - always call `render_dependency_box` if it finds no security issues Co-authored-by: Cecile Tonglet <cecile.tonglet@cecton.com>
This commit is contained in:
parent
6cd7256ee8
commit
309f13ec84
4 changed files with 67 additions and 28 deletions
|
@ -50,3 +50,6 @@ $notification-colors: $colors !default
|
|||
&.is-light
|
||||
background-color: $color-light
|
||||
color: $color-dark
|
||||
ul
|
||||
list-style: disc
|
||||
padding: 0 40
|
||||
|
|
|
@ -97,7 +97,7 @@ pub struct AnalyzeDependenciesOutcome {
|
|||
|
||||
impl AnalyzeDependenciesOutcome {
|
||||
pub fn any_outdated(&self) -> bool {
|
||||
self.crates.iter().any(|&(_, ref deps)| deps.any_outdated())
|
||||
self.crates.iter().any(|(_, deps)| deps.any_outdated())
|
||||
}
|
||||
|
||||
// TODO(feliix42): Why is this different from the any_outdated() function above?
|
||||
|
@ -105,28 +105,29 @@ impl AnalyzeDependenciesOutcome {
|
|||
pub fn any_insecure(&self) -> bool {
|
||||
self.crates
|
||||
.iter()
|
||||
.any(|&(_, ref deps)| deps.count_insecure() > 0)
|
||||
.any(|(_, deps)| deps.count_insecure() > 0)
|
||||
}
|
||||
|
||||
/// Checks if any always insecure main or build dependencies exist in the scanned crates
|
||||
pub fn any_always_insecure(&self) -> bool {
|
||||
self.crates
|
||||
.iter()
|
||||
.any(|&(_, ref deps)| deps.count_always_insecure() > 0)
|
||||
.any(|(_, deps)| deps.count_always_insecure() > 0)
|
||||
}
|
||||
|
||||
/// Checks if any dev-dependencies in the scanned crates are either outdated or insecure
|
||||
pub fn any_dev_issues(&self) -> bool {
|
||||
/// Returns the number of outdated main and dev dependencies
|
||||
pub fn count_outdated(&self) -> usize {
|
||||
self.crates
|
||||
.iter()
|
||||
.any(|&(_, ref deps)| deps.any_dev_issues())
|
||||
.map(|(_, deps)| deps.count_outdated())
|
||||
.sum()
|
||||
}
|
||||
|
||||
/// Returns the number of outdated dev-dependencies
|
||||
pub fn count_dev_outdated(&self) -> usize {
|
||||
self.crates
|
||||
.iter()
|
||||
.map(|&(_, ref deps)| deps.count_dev_outdated())
|
||||
.map(|(_, deps)| deps.count_dev_outdated())
|
||||
.sum()
|
||||
}
|
||||
|
||||
|
@ -134,7 +135,7 @@ impl AnalyzeDependenciesOutcome {
|
|||
pub fn count_dev_insecure(&self) -> usize {
|
||||
self.crates
|
||||
.iter()
|
||||
.map(|&(_, ref deps)| deps.count_dev_insecure())
|
||||
.map(|(_, deps)| deps.count_dev_insecure())
|
||||
.sum()
|
||||
}
|
||||
|
||||
|
@ -142,7 +143,7 @@ impl AnalyzeDependenciesOutcome {
|
|||
pub fn outdated_ratio(&self) -> (usize, usize) {
|
||||
self.crates
|
||||
.iter()
|
||||
.fold((0, 0), |(outdated, total), &(_, ref deps)| {
|
||||
.fold((0, 0), |(outdated, total), (_, deps)| {
|
||||
(outdated + deps.count_outdated(), total + deps.count_total())
|
||||
})
|
||||
}
|
||||
|
|
|
@ -255,13 +255,6 @@ impl AnalyzedDependencies {
|
|||
.filter(|&(_, dep)| dep.is_insecure())
|
||||
.count()
|
||||
}
|
||||
|
||||
/// Returns `true` if any dev-dependencies are either insecure or outdated.
|
||||
pub fn any_dev_issues(&self) -> bool {
|
||||
self.dev
|
||||
.iter()
|
||||
.any(|(_, dep)| dep.is_outdated() || dep.is_insecure())
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
|
|
|
@ -158,20 +158,62 @@ fn render_title(subject_path: &SubjectPath) -> Markup {
|
|||
}
|
||||
}
|
||||
|
||||
fn render_dev_dependency_box(outcome: &AnalyzeDependenciesOutcome) -> Markup {
|
||||
let insecure = outcome.count_dev_insecure();
|
||||
let outdated = outcome.count_dev_outdated();
|
||||
let text = if insecure > 0 {
|
||||
format!("{} insecure development dependencies", insecure)
|
||||
fn dependencies_pluralized(count: usize) -> &'static str {
|
||||
if count == 1 {
|
||||
"dependency"
|
||||
} else {
|
||||
format!("{} outdated development dependencies", outdated)
|
||||
};
|
||||
"dependencies"
|
||||
}
|
||||
}
|
||||
|
||||
/// Renders a warning with the numbers of outdated dependencies (of both kinds)
|
||||
/// or insecure dev-dependencies.
|
||||
///
|
||||
/// The function assumes that there are no insecure main dependencies.
|
||||
/// If there is more than one kind of dependency with issues,
|
||||
/// an unordered list is rendered.
|
||||
/// Renders nothing if the counts of all three components are zero.
|
||||
fn render_dependency_box(outcome: &AnalyzeDependenciesOutcome) -> Markup {
|
||||
// assuming zero insecure main dependencies
|
||||
let insecure_dev = outcome.count_dev_insecure();
|
||||
let outdated_dev = outcome.count_dev_outdated();
|
||||
let outdated = outcome.count_outdated();
|
||||
|
||||
let components = [
|
||||
("insecure development", insecure_dev),
|
||||
("outdated main", outdated),
|
||||
("outdated development", outdated_dev),
|
||||
]
|
||||
.iter()
|
||||
.copied()
|
||||
.filter(|&(_, c)| c > 0)
|
||||
.map(|(kind, c)| {
|
||||
let pluralized = dependencies_pluralized(c);
|
||||
(c, kind, pluralized)
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
match components.len() {
|
||||
0 => html! {},
|
||||
1 => {
|
||||
let (c, kind, dep) = components[0];
|
||||
html! {
|
||||
div class="notification is-warning" {
|
||||
p { "This project contains " b { (text) } "." }
|
||||
p { "This project contains " b { (c) " " (kind) " " (dep) } "." }
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => html! {
|
||||
div class="notification is-warning" {
|
||||
p { "This project contains:" }
|
||||
ul {
|
||||
@for (c, kind, dep) in components {
|
||||
li { b { (c) " " (kind) " " (dep) } }
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
fn build_rustsec_link(advisory: &Advisory) -> String {
|
||||
|
@ -351,8 +393,8 @@ fn render_success(
|
|||
a href="#vulnerabilities" { "bottom"} "."
|
||||
}
|
||||
}
|
||||
} @else if analysis_outcome.any_dev_issues() {
|
||||
(render_dev_dependency_box(&analysis_outcome))
|
||||
} @else {
|
||||
(render_dependency_box(&analysis_outcome))
|
||||
}
|
||||
@for (crate_name, deps) in &analysis_outcome.crates {
|
||||
(dependency_tables(crate_name, deps))
|
||||
|
|
Loading…
Reference in a new issue