-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lints to ensure link text for EIPs should match the EIP's number #99
base: master
Are you sure you want to change the base?
Changes from all commits
fd7cebb
011babb
2829f03
4930ed4
09d7de7
0df9027
cdfc4d0
8772403
04b0e07
47a8bbd
ad8e022
0da655d
680beea
1cbd715
eef80dd
550e0d2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,177 @@ | ||||||||||||||||||||||||||||||||||||||||||
/* | ||||||||||||||||||||||||||||||||||||||||||
* This Source Code Form is subject to the terms of the Mozilla Public | ||||||||||||||||||||||||||||||||||||||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||||||||||||||||||||||||||||||||||||||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
use annotate_snippets::snippet::{Annotation, AnnotationType, Slice, Snippet}; | ||||||||||||||||||||||||||||||||||||||||||
Check failure on line 7 in eipw-lint/src/lints/markdown/link_eip.rs GitHub Actions / Test Suite (ubuntu-latest)
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
use comrak::nodes::{Ast, NodeLink}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
use crate::lints::{Context, Error, Lint}; | ||||||||||||||||||||||||||||||||||||||||||
use crate::tree::{self, Next, TraverseExt}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
use regex::Regex; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
use serde::{Deserialize, Serialize}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
use std::fmt::{Debug, Display}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug, Serialize, Deserialize, Clone)] | ||||||||||||||||||||||||||||||||||||||||||
pub struct LinkEip<S>(pub S); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
impl<S> Lint for LinkEip<S> | ||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||
S: Display + Debug + AsRef<str>, | ||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||
fn lint<'a>(&self, slug: &'a str, ctx: &Context<'a, '_>) -> Result<(), Error> { | ||||||||||||||||||||||||||||||||||||||||||
let pattern = self.0.as_ref(); | ||||||||||||||||||||||||||||||||||||||||||
let re = Regex::new(pattern).map_err(Error::custom)?; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let mut visitor = Visitor { | ||||||||||||||||||||||||||||||||||||||||||
ctx, | ||||||||||||||||||||||||||||||||||||||||||
re, | ||||||||||||||||||||||||||||||||||||||||||
slug, | ||||||||||||||||||||||||||||||||||||||||||
link_depth: 0, | ||||||||||||||||||||||||||||||||||||||||||
text_depth: 0, | ||||||||||||||||||||||||||||||||||||||||||
current_link: Link { | ||||||||||||||||||||||||||||||||||||||||||
url: String::new(), | ||||||||||||||||||||||||||||||||||||||||||
text: String::new(), | ||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
ctx.body().traverse().visit(&mut visitor)?; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug)] | ||||||||||||||||||||||||||||||||||||||||||
struct Link { | ||||||||||||||||||||||||||||||||||||||||||
url: String, | ||||||||||||||||||||||||||||||||||||||||||
text: String, | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
#[derive(Debug)] | ||||||||||||||||||||||||||||||||||||||||||
struct Visitor<'a, 'b, 'c> { | ||||||||||||||||||||||||||||||||||||||||||
ctx: &'c Context<'a, 'b>, | ||||||||||||||||||||||||||||||||||||||||||
re: Regex, | ||||||||||||||||||||||||||||||||||||||||||
slug: &'c str, | ||||||||||||||||||||||||||||||||||||||||||
link_depth: usize, | ||||||||||||||||||||||||||||||||||||||||||
text_depth: usize, | ||||||||||||||||||||||||||||||||||||||||||
current_link: Link, | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
impl<'a, 'b, 'c> Visitor<'a, 'b, 'c> { | ||||||||||||||||||||||||||||||||||||||||||
fn extract_capture(&self, text: &str, re: &Regex, index: usize) -> Result<String, Error> { | ||||||||||||||||||||||||||||||||||||||||||
if let Some(captures) = re.captures(text) { | ||||||||||||||||||||||||||||||||||||||||||
Ok(captures | ||||||||||||||||||||||||||||||||||||||||||
.get(index) | ||||||||||||||||||||||||||||||||||||||||||
.map(|m| m.as_str().to_string()) | ||||||||||||||||||||||||||||||||||||||||||
.unwrap_or_default()) | ||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||
Ok(String::new()) | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+64
to
+73
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This function never returns an error, so you can simplify it a bit:
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
fn transform_section_description(description: &str) -> String { | ||||||||||||||||||||||||||||||||||||||||||
let re = Regex::new(r"[-_]").unwrap(); | ||||||||||||||||||||||||||||||||||||||||||
let mut description = re.replace_all(description, " ").to_string(); | ||||||||||||||||||||||||||||||||||||||||||
if let Some(first_char) = description.get_mut(0..1) { | ||||||||||||||||||||||||||||||||||||||||||
first_char.make_ascii_uppercase(); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
description | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
fn check(&self, ast: &Ast) -> Result<Next, Error> { | ||||||||||||||||||||||||||||||||||||||||||
let url_eip_text = self.extract_capture(&self.current_link.url, &self.re, 1)?; | ||||||||||||||||||||||||||||||||||||||||||
let url_eip_number = self.extract_capture(&self.current_link.url, &self.re, 2)?; | ||||||||||||||||||||||||||||||||||||||||||
let url_section = self.extract_capture(&self.current_link.url, &self.re, 4)?; | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+85
to
+87
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This repeats the regex search each time, which is pretty inefficient. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let dynamic_pattern = if url_section != "" { | ||||||||||||||||||||||||||||||||||||||||||
format!(r"^(EIP|ERC)-{}(\s*\S+)", regex::escape(&url_eip_number)) | ||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||
format!(r"^(EIP|ERC)-{}$", regex::escape(&url_eip_number)) | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
let text_re = Regex::new(&dynamic_pattern).map_err(Error::custom)?; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
if text_re.is_match(&self.current_link.text) && self.text_depth <= 1 { | ||||||||||||||||||||||||||||||||||||||||||
return Ok(Next::TraverseChildren); | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let expected = if url_section != "" { | ||||||||||||||||||||||||||||||||||||||||||
let section_description = Visitor::transform_section_description(&url_section); | ||||||||||||||||||||||||||||||||||||||||||
format!( | ||||||||||||||||||||||||||||||||||||||||||
"[{}{}: {}]({})", | ||||||||||||||||||||||||||||||||||||||||||
url_eip_text.to_uppercase(), | ||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Weirdly enough, ERCs are still stored in files named like The correct way to solve this (reading the linked file) won't work for reasons outside
|
||||||||||||||||||||||||||||||||||||||||||
url_eip_number, | ||||||||||||||||||||||||||||||||||||||||||
section_description, | ||||||||||||||||||||||||||||||||||||||||||
&self.current_link.url | ||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||
format!( | ||||||||||||||||||||||||||||||||||||||||||
"[{}{}]({})", | ||||||||||||||||||||||||||||||||||||||||||
url_eip_text.to_uppercase(), | ||||||||||||||||||||||||||||||||||||||||||
url_eip_number, | ||||||||||||||||||||||||||||||||||||||||||
&self.current_link.url | ||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let footer_label = format!("use `{}` instead", expected); | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
let source = self | ||||||||||||||||||||||||||||||||||||||||||
.ctx | ||||||||||||||||||||||||||||||||||||||||||
.source_for_text(ast.sourcepos.start.line, &self.current_link.text); | ||||||||||||||||||||||||||||||||||||||||||
self.ctx.report(Snippet { | ||||||||||||||||||||||||||||||||||||||||||
title: Some(Annotation { | ||||||||||||||||||||||||||||||||||||||||||
annotation_type: self.ctx.annotation_type(), | ||||||||||||||||||||||||||||||||||||||||||
Check failure on line 125 in eipw-lint/src/lints/markdown/link_eip.rs GitHub Actions / Test Suite (ubuntu-latest)
|
||||||||||||||||||||||||||||||||||||||||||
id: Some(self.slug), | ||||||||||||||||||||||||||||||||||||||||||
label: Some("link text does not match link destination"), | ||||||||||||||||||||||||||||||||||||||||||
}), | ||||||||||||||||||||||||||||||||||||||||||
slices: vec![Slice { | ||||||||||||||||||||||||||||||||||||||||||
fold: false, | ||||||||||||||||||||||||||||||||||||||||||
line_start: ast.sourcepos.start.line, | ||||||||||||||||||||||||||||||||||||||||||
origin: self.ctx.origin(), | ||||||||||||||||||||||||||||||||||||||||||
source: &source, | ||||||||||||||||||||||||||||||||||||||||||
annotations: vec![], | ||||||||||||||||||||||||||||||||||||||||||
}], | ||||||||||||||||||||||||||||||||||||||||||
footer: vec![Annotation { | ||||||||||||||||||||||||||||||||||||||||||
id: None, | ||||||||||||||||||||||||||||||||||||||||||
annotation_type: AnnotationType::Help, | ||||||||||||||||||||||||||||||||||||||||||
label: Some(&footer_label), | ||||||||||||||||||||||||||||||||||||||||||
}], | ||||||||||||||||||||||||||||||||||||||||||
opt: Default::default(), | ||||||||||||||||||||||||||||||||||||||||||
})?; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
Ok(Next::TraverseChildren) | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
impl<'a, 'b, 'c> tree::Visitor for Visitor<'a, 'b, 'c> { | ||||||||||||||||||||||||||||||||||||||||||
type Error = Error; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
fn enter_link(&mut self, _: &Ast, link: &NodeLink) -> Result<Next, Self::Error> { | ||||||||||||||||||||||||||||||||||||||||||
if self.re.is_match(&link.url) { | ||||||||||||||||||||||||||||||||||||||||||
self.current_link = Link { | ||||||||||||||||||||||||||||||||||||||||||
url: link.url.to_owned(), | ||||||||||||||||||||||||||||||||||||||||||
text: String::new(), | ||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||
self.link_depth += 1; | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
Ok(Next::TraverseChildren) | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
fn depart_link(&mut self, ast: &Ast, _: &NodeLink) -> Result<(), Self::Error> { | ||||||||||||||||||||||||||||||||||||||||||
if self.link_depth > 0 { | ||||||||||||||||||||||||||||||||||||||||||
self.check(ast)?; | ||||||||||||||||||||||||||||||||||||||||||
self.link_depth -= 1; | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
fn enter_text(&mut self, ast: &Ast, txt: &str) -> Result<Next, Self::Error> { | ||||||||||||||||||||||||||||||||||||||||||
Check warning on line 170 in eipw-lint/src/lints/markdown/link_eip.rs GitHub Actions / Test Suite (ubuntu-latest)
|
||||||||||||||||||||||||||||||||||||||||||
if self.link_depth > 0 { | ||||||||||||||||||||||||||||||||||||||||||
self.text_depth += 1; | ||||||||||||||||||||||||||||||||||||||||||
self.current_link.text.push_str(txt); | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
Ok(Next::SkipChildren) | ||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd say that if the regular expression has the wrong number of capture groups, we should inform the user instead of silently returning the empty string.
You can ignore my previous comment about simplifying, and use
Error::custom
and something like: