1use crate::rule::{LintError, LintResult, LintWarning, Rule, Severity};
7use crate::utils::range_utils::calculate_match_range;
8use regex::Regex;
9use std::collections::BTreeSet;
10use std::sync::LazyLock;
11
12mod md054_config;
13use md054_config::MD054Config;
14
15static AUTOLINK_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"<([^<>]+)>").unwrap());
17static INLINE_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\[([^\]]+)\]\(([^)]+)\)").unwrap());
18static SHORTCUT_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\[([^\]]+)\]").unwrap());
19static COLLAPSED_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\[([^\]]+)\]\[\]").unwrap());
20static FULL_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\[([^\]]+)\]\[([^\]]+)\]").unwrap());
21static REFERENCE_DEF_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"^\s*\[([^\]]+)\]:\s+(.+)$").unwrap());
22
23#[derive(Debug, Default, Clone)]
68pub struct MD054LinkImageStyle {
69 config: MD054Config,
70}
71
72impl MD054LinkImageStyle {
73 pub fn new(autolink: bool, collapsed: bool, full: bool, inline: bool, shortcut: bool, url_inline: bool) -> Self {
74 Self {
75 config: MD054Config {
76 autolink,
77 collapsed,
78 full,
79 inline,
80 shortcut,
81 url_inline,
82 },
83 }
84 }
85
86 pub fn from_config_struct(config: MD054Config) -> Self {
87 Self { config }
88 }
89
90 fn is_style_allowed(&self, style: &str) -> bool {
92 match style {
93 "autolink" => self.config.autolink,
94 "collapsed" => self.config.collapsed,
95 "full" => self.config.full,
96 "inline" => self.config.inline,
97 "shortcut" => self.config.shortcut,
98 "url_inline" => self.config.url_inline,
99 _ => false,
100 }
101 }
102}
103
104#[derive(Debug)]
105struct LinkMatch {
106 style: &'static str,
107 start: usize,
108 end: usize,
109}
110
111impl Rule for MD054LinkImageStyle {
112 fn name(&self) -> &'static str {
113 "MD054"
114 }
115
116 fn description(&self) -> &'static str {
117 "Link and image style should be consistent"
118 }
119
120 fn check(&self, ctx: &crate::lint_context::LintContext) -> LintResult {
121 let content = ctx.content;
122
123 if content.is_empty() {
125 return Ok(Vec::new());
126 }
127
128 if !content.contains('[') && !content.contains('<') {
130 return Ok(Vec::new());
131 }
132
133 let mut warnings = Vec::new();
134 let lines: Vec<&str> = content.lines().collect();
135
136 for (line_num, line) in lines.iter().enumerate() {
137 if ctx.line_info(line_num + 1).is_some_and(|info| info.in_code_block) {
139 continue;
140 }
141 if REFERENCE_DEF_RE.is_match(line) {
142 continue;
143 }
144 if line.trim_start().starts_with("<!--") {
145 continue;
146 }
147
148 if !line.contains('[') && !line.contains('<') {
150 continue;
151 }
152
153 let mut occupied_ranges = BTreeSet::new();
155 let mut filtered_matches = Vec::new();
156
157 let mut all_matches = Vec::new();
159
160 for cap in AUTOLINK_RE.captures_iter(line) {
162 let m = cap.get(0).unwrap();
163 let content = cap.get(1).unwrap().as_str();
164
165 let is_url = content.starts_with("http://")
168 || content.starts_with("https://")
169 || content.starts_with("ftp://")
170 || content.starts_with("ftps://")
171 || content.starts_with("mailto:");
172
173 if is_url {
174 all_matches.push(LinkMatch {
175 style: "autolink",
176 start: m.start(),
177 end: m.end(),
178 });
179 }
180 }
181
182 for cap in FULL_RE.captures_iter(line) {
184 let m = cap.get(0).unwrap();
185 all_matches.push(LinkMatch {
186 style: "full",
187 start: m.start(),
188 end: m.end(),
189 });
190 }
191
192 for cap in COLLAPSED_RE.captures_iter(line) {
194 let m = cap.get(0).unwrap();
195 all_matches.push(LinkMatch {
196 style: "collapsed",
197 start: m.start(),
198 end: m.end(),
199 });
200 }
201
202 for cap in INLINE_RE.captures_iter(line) {
204 let m = cap.get(0).unwrap();
205 let text = cap.get(1).unwrap().as_str();
206 let url = cap.get(2).unwrap().as_str();
207 all_matches.push(LinkMatch {
208 style: if text == url { "url_inline" } else { "inline" },
209 start: m.start(),
210 end: m.end(),
211 });
212 }
213
214 all_matches.sort_by_key(|m| m.start);
216
217 let mut last_end = 0;
219 for m in all_matches {
220 if m.start >= last_end {
221 last_end = m.end;
222 for byte_pos in m.start..m.end {
224 occupied_ranges.insert(byte_pos);
225 }
226 filtered_matches.push(m);
227 }
228 }
229
230 for cap in SHORTCUT_RE.captures_iter(line) {
233 let m = cap.get(0).unwrap();
234 let start = m.start();
235 let end = m.end();
236 let link_text = cap.get(1).unwrap().as_str();
237
238 if link_text.trim() == "" || link_text == "x" || link_text == "X" {
242 if start > 0 {
244 let before = &line[..start];
245 let trimmed_before = before.trim_start();
247 if let Some(marker_char) = trimmed_before.chars().next()
249 && (marker_char == '*' || marker_char == '-' || marker_char == '+')
250 && trimmed_before.len() > 1
251 {
252 let after_marker = &trimmed_before[1..];
253 if after_marker.chars().next().is_some_and(|c| c.is_whitespace()) {
254 continue;
256 }
257 }
258 }
259 }
260
261 let overlaps = (start..end).any(|byte_pos| occupied_ranges.contains(&byte_pos));
263
264 if !overlaps {
265 let after = &line[end..];
267 if !after.starts_with('(') && !after.starts_with('[') {
268 for byte_pos in start..end {
270 occupied_ranges.insert(byte_pos);
271 }
272 filtered_matches.push(LinkMatch {
273 style: "shortcut",
274 start,
275 end,
276 });
277 }
278 }
279 }
280
281 filtered_matches.sort_by_key(|m| m.start);
283
284 for m in filtered_matches {
286 let match_start_char = line[..m.start].chars().count();
287
288 if !ctx.is_in_code_span(line_num + 1, match_start_char) && !self.is_style_allowed(m.style) {
289 let match_len = line[m.start..m.end].chars().count();
290 let (start_line, start_col, end_line, end_col) =
291 calculate_match_range(line_num + 1, line, match_start_char, match_len);
292
293 warnings.push(LintWarning {
294 rule_name: Some(self.name().to_string()),
295 line: start_line,
296 column: start_col,
297 end_line,
298 end_column: end_col,
299 message: format!("Link/image style '{}' is not allowed", m.style),
300 severity: Severity::Warning,
301 fix: None,
302 });
303 }
304 }
305 }
306 Ok(warnings)
307 }
308
309 fn fix(&self, _ctx: &crate::lint_context::LintContext) -> Result<String, LintError> {
310 Err(LintError::FixFailed(
312 "MD054 does not support automatic fixing of link/image style consistency.".to_string(),
313 ))
314 }
315
316 fn fix_capability(&self) -> crate::rule::FixCapability {
317 crate::rule::FixCapability::Unfixable
318 }
319
320 fn should_skip(&self, ctx: &crate::lint_context::LintContext) -> bool {
321 ctx.content.is_empty() || !ctx.likely_has_links_or_images()
322 }
323
324 fn as_any(&self) -> &dyn std::any::Any {
325 self
326 }
327
328 fn default_config_section(&self) -> Option<(String, toml::Value)> {
329 let json_value = serde_json::to_value(&self.config).ok()?;
330 Some((
331 self.name().to_string(),
332 crate::rule_config_serde::json_to_toml_value(&json_value)?,
333 ))
334 }
335
336 fn from_config(config: &crate::config::Config) -> Box<dyn Rule>
337 where
338 Self: Sized,
339 {
340 let rule_config = crate::rule_config_serde::load_rule_config::<MD054Config>(config);
341 Box::new(Self::from_config_struct(rule_config))
342 }
343}
344
345#[cfg(test)]
346mod tests {
347 use super::*;
348 use crate::lint_context::LintContext;
349
350 #[test]
351 fn test_all_styles_allowed_by_default() {
352 let rule = MD054LinkImageStyle::new(true, true, true, true, true, true);
353 let content = "[inline](url) [ref][] [ref] <autolink> [full][ref] [url](url)\n\n[ref]: url";
354 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
355 let result = rule.check(&ctx).unwrap();
356
357 assert_eq!(result.len(), 0);
358 }
359
360 #[test]
361 fn test_only_inline_allowed() {
362 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
363 let content = "[allowed](url) [not][ref] <https://bad.com> [bad][] [shortcut]\n\n[ref]: url\n[shortcut]: url";
364 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
365 let result = rule.check(&ctx).unwrap();
366
367 assert_eq!(result.len(), 4);
368 assert!(result[0].message.contains("'full'"));
369 assert!(result[1].message.contains("'autolink'"));
370 assert!(result[2].message.contains("'collapsed'"));
371 assert!(result[3].message.contains("'shortcut'"));
372 }
373
374 #[test]
375 fn test_only_autolink_allowed() {
376 let rule = MD054LinkImageStyle::new(true, false, false, false, false, false);
377 let content = "<https://good.com> [bad](url) [bad][ref]\n\n[ref]: url";
378 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
379 let result = rule.check(&ctx).unwrap();
380
381 assert_eq!(result.len(), 2);
382 assert!(result[0].message.contains("'inline'"));
383 assert!(result[1].message.contains("'full'"));
384 }
385
386 #[test]
387 fn test_url_inline_detection() {
388 let rule = MD054LinkImageStyle::new(false, false, false, true, false, true);
389 let content = "[https://example.com](https://example.com) [text](https://example.com)";
390 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
391 let result = rule.check(&ctx).unwrap();
392
393 assert_eq!(result.len(), 0);
395 }
396
397 #[test]
398 fn test_url_inline_not_allowed() {
399 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
400 let content = "[https://example.com](https://example.com)";
401 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
402 let result = rule.check(&ctx).unwrap();
403
404 assert_eq!(result.len(), 1);
405 assert!(result[0].message.contains("'url_inline'"));
406 }
407
408 #[test]
409 fn test_shortcut_vs_full_detection() {
410 let rule = MD054LinkImageStyle::new(false, false, true, false, false, false);
411 let content = "[shortcut] [full][ref]\n\n[shortcut]: url\n[ref]: url2";
412 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
413 let result = rule.check(&ctx).unwrap();
414
415 assert_eq!(result.len(), 1);
417 assert!(result[0].message.contains("'shortcut'"));
418 }
419
420 #[test]
421 fn test_collapsed_reference() {
422 let rule = MD054LinkImageStyle::new(false, true, false, false, false, false);
423 let content = "[collapsed][] [bad][ref]\n\n[collapsed]: url\n[ref]: url2";
424 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
425 let result = rule.check(&ctx).unwrap();
426
427 assert_eq!(result.len(), 1);
428 assert!(result[0].message.contains("'full'"));
429 }
430
431 #[test]
432 fn test_code_blocks_ignored() {
433 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
434 let content = "```\n[ignored](url) <https://ignored.com>\n```\n\n[checked](url)";
435 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
436 let result = rule.check(&ctx).unwrap();
437
438 assert_eq!(result.len(), 0);
440 }
441
442 #[test]
443 fn test_code_spans_ignored() {
444 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
445 let content = "`[ignored](url)` and `<https://ignored.com>` but [checked](url)";
446 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
447 let result = rule.check(&ctx).unwrap();
448
449 assert_eq!(result.len(), 0);
451 }
452
453 #[test]
454 fn test_reference_definitions_ignored() {
455 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
456 let content = "[ref]: https://example.com\n[ref2]: <https://example2.com>";
457 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
458 let result = rule.check(&ctx).unwrap();
459
460 assert_eq!(result.len(), 0);
462 }
463
464 #[test]
465 fn test_html_comments_ignored() {
466 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
467 let content = "<!-- [ignored](url) -->\n <!-- <https://ignored.com> -->";
468 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
469 let result = rule.check(&ctx).unwrap();
470
471 assert_eq!(result.len(), 0);
472 }
473
474 #[test]
475 fn test_unicode_support() {
476 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
477 let content = "[café ☕](https://café.com) [emoji 😀](url) [한글](url) [עברית](url)";
478 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
479 let result = rule.check(&ctx).unwrap();
480
481 assert_eq!(result.len(), 0);
483 }
484
485 #[test]
486 fn test_line_positions() {
487 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
488 let content = "Line 1\n\nLine 3 with <https://bad.com> here";
489 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
490 let result = rule.check(&ctx).unwrap();
491
492 assert_eq!(result.len(), 1);
493 assert_eq!(result[0].line, 3);
494 assert_eq!(result[0].column, 13); }
496
497 #[test]
498 fn test_multiple_links_same_line() {
499 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
500 let content = "[ok](url) but <https://good.com> and [also][bad]\n\n[bad]: url";
501 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
502 let result = rule.check(&ctx).unwrap();
503
504 assert_eq!(result.len(), 2);
505 assert!(result[0].message.contains("'autolink'"));
506 assert!(result[1].message.contains("'full'"));
507 }
508
509 #[test]
510 fn test_empty_content() {
511 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
512 let content = "";
513 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
514 let result = rule.check(&ctx).unwrap();
515
516 assert_eq!(result.len(), 0);
517 }
518
519 #[test]
520 fn test_no_links() {
521 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
522 let content = "Just plain text without any links";
523 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
524 let result = rule.check(&ctx).unwrap();
525
526 assert_eq!(result.len(), 0);
527 }
528
529 #[test]
530 fn test_fix_returns_error() {
531 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
532 let content = "[link](url)";
533 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
534 let result = rule.fix(&ctx);
535
536 assert!(result.is_err());
537 if let Err(LintError::FixFailed(msg)) = result {
538 assert!(msg.contains("does not support automatic fixing"));
539 }
540 }
541
542 #[test]
543 fn test_priority_order() {
544 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
545 let content = "[text][ref] not detected as [shortcut]\n\n[ref]: url\n[shortcut]: url2";
547 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
548 let result = rule.check(&ctx).unwrap();
549
550 assert_eq!(result.len(), 2);
551 assert!(result[0].message.contains("'full'"));
552 assert!(result[1].message.contains("'shortcut'"));
553 }
554
555 #[test]
556 fn test_not_shortcut_when_followed_by_bracket() {
557 let rule = MD054LinkImageStyle::new(false, false, false, true, true, false);
558 let content = "[text][ more text\n[text](url) is inline";
560 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
561 let result = rule.check(&ctx).unwrap();
562
563 assert_eq!(result.len(), 0);
565 }
566
567 #[test]
568 fn test_complex_unicode_with_zwj() {
569 let rule = MD054LinkImageStyle::new(false, false, false, true, false, false);
570 let content = "[👨👩👧👦 family](url) [café☕](https://café.com)";
572 let ctx = LintContext::new(content, crate::config::MarkdownFlavor::Standard, None);
573 let result = rule.check(&ctx).unwrap();
574
575 assert_eq!(result.len(), 0);
577 }
578}