File size: 15,795 Bytes
bc32e7b | 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 | //! 章节内容解析与文本处理。
use regex::Regex;
use serde_json::Value;
use std::collections::HashMap;
use std::sync::OnceLock;
use crate::base_system::context::Config;
// 编译一次复用的正则表达式缓存
fn re_breaks() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| {
Regex::new(r"(?is)<br\s*/?>|</p\s*>|</div\s*>|</section\s*>|</h[1-6]\s*>").unwrap()
})
}
fn re_open_p() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"(?is)<p\b[^>]*>").unwrap())
}
fn re_para() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"(?is)<p[^>]*>(.*?)</p>").unwrap())
}
fn re_strip_tags() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"<[^>]+>").unwrap())
}
fn re_strip_header() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"<header[^>]*>.*?</header>").unwrap())
}
fn re_strip_script() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"<script[^>]*>.*?</script>").unwrap())
}
fn re_strip_style() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"<style[^>]*>.*?</style>").unwrap())
}
fn re_strip_comments() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"(?s)<!--.*?-->").unwrap())
}
fn re_extract_body() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"(?is)<body[^>]*>(.*?)</body>").unwrap())
}
fn re_br_normalize() -> &'static Regex {
static R: OnceLock<Regex> = OnceLock::new();
R.get_or_init(|| Regex::new(r"(?i)<br\s*/?>").unwrap())
}
pub struct ContentParser;
impl ContentParser {
/// 解析 API 返回的章节内容映射: chapter_id -> (内容, 标题)
pub fn extract_api_content(value: &Value, cfg: &Config) -> HashMap<String, (String, String)> {
let mut out = HashMap::new();
let data = value
.get("data")
.and_then(|v| v.as_object())
.or_else(|| value.as_object());
let Some(map) = data else {
return out;
};
for (cid, info) in map {
let obj = info.as_object();
let raw_content = obj
.and_then(|o| o.get("content"))
.and_then(Value::as_str)
.unwrap_or_default();
let title = obj
.and_then(|o| o.get("title"))
.and_then(Value::as_str)
.or_else(|| {
obj.and_then(|o| o.get("origin_chapter_title"))
.and_then(Value::as_str)
})
.unwrap_or(cid.as_str());
// 缓存统一保存为 XHTML 格式,txt 的清洗在 finalize 阶段完成。
let processed = if cfg.novel_format.eq_ignore_ascii_case("epub") {
Self::prepare_epub_xhtml(raw_content)
} else {
Self::clean_xhtml(raw_content, title)
};
out.insert(cid.clone(), (processed, title.to_string()));
}
out
}
/// EPUB 专用:保留正文 XHTML,移除 header/script/style 并抽取 body 内容。
fn prepare_epub_xhtml(raw: &str) -> String {
let stripped = Self::strip_header(raw);
let body = Self::extract_body(&stripped).unwrap_or(stripped);
Self::strip_comments(&body)
}
/// 纯文本清洗:移除标签、统一换行并添加简单缩进。
pub fn clean_plain(raw: &str, title: &str) -> String {
// Many chapters come as XHTML fragments (<p>, <br>, etc.).
// If we strip tags directly, paragraphs collapse into a single line.
let normalized = re_breaks().replace_all(raw, "\n");
let normalized = re_open_p().replace_all(&normalized, "\n");
let normalized = normalized.replace("\r\n", "\n").replace('\r', "\n");
let without_tags = Self::strip_tags(&normalized);
let without_tags = Self::unescape_html_entities(&without_tags);
let without_tags = without_tags.replace("\r\n", "\n").replace('\r', "\n");
// Keep paragraph breaks: output blank lines between paragraphs.
let mut out = Vec::new();
let mut last_blank = true;
for line in without_tags.lines() {
let trimmed = line.trim();
if trimmed.is_empty() {
if !last_blank {
out.push(String::new());
last_blank = true;
}
continue;
}
last_blank = false;
out.push(trimmed.to_string());
}
while out.last().is_some_and(|l| l.trim().is_empty()) {
out.pop();
}
// 某些章节正文首段会重复输出章节标题(常见于 h1/h2 被扁平化后),
// 这里做保守去重:仅当首个非空行与章节标题一致时移除首行。
let normalized_title = normalize_title_for_compare(title);
if !normalized_title.is_empty() {
loop {
let Some(first_non_empty_idx) = out.iter().position(|l| !l.trim().is_empty())
else {
break;
};
let first_line_norm =
normalize_title_for_compare(out[first_non_empty_idx].as_str());
if first_line_norm != normalized_title {
break;
}
out.remove(first_non_empty_idx);
if first_non_empty_idx < out.len() && out[first_non_empty_idx].trim().is_empty() {
out.remove(first_non_empty_idx);
}
}
}
if out.is_empty() {
without_tags.trim().to_string()
} else {
out.into_iter()
.map(|line| {
if line.trim().is_empty() {
String::new()
} else {
format!(" {}", line.trim())
}
})
.collect::<Vec<_>>()
.join("\n")
}
}
/// 简化的 XHTML 清洗:去掉 <header> 与脚本,保留主体文本。
pub fn clean_xhtml(raw: &str, _title: &str) -> String {
let stripped = Self::strip_header(raw);
let body = Self::extract_body(&stripped).unwrap_or(stripped);
let body = Self::strip_comments(&body);
let mut paragraphs = Vec::new();
// 尝试提取已有段落,清理标签,保留基本文本。
let re_para = re_para();
for cap in re_para.captures_iter(&body) {
let inner = cap.get(1).map(|m| m.as_str()).unwrap_or("");
let cleaned = Self::sanitize_paragraph(inner);
if !cleaned.is_empty() {
paragraphs.push(format!("<p>{}</p>", cleaned));
}
}
if paragraphs.is_empty() {
let plain = Self::strip_tags(&body);
for line in plain.split('\n') {
let decoded = Self::unescape_html_entities(line);
let trimmed = decoded.trim();
if !trimmed.is_empty() {
paragraphs.push(format!("<p>{}</p>", Self::escape_html(trimmed)));
}
}
}
paragraphs.join("\n")
}
fn strip_tags(raw: &str) -> String {
// 粗暴去标签,避免引入额外 HTML 解析库
let s = re_strip_tags().replace_all(raw, "");
s.replace("\r\n", "\n").replace('\r', "\n")
}
fn strip_header(raw: &str) -> String {
// 移除 <header>...</header> 以及 <script>...</script>
let tmp = re_strip_header().replace_all(raw, "");
let tmp = re_strip_script().replace_all(&tmp, "");
re_strip_style().replace_all(&tmp, "").to_string()
}
fn strip_comments(raw: &str) -> String {
re_strip_comments().replace_all(raw, "").to_string()
}
fn extract_body(raw: &str) -> Option<String> {
re_extract_body()
.captures(raw)
.and_then(|cap| cap.get(1))
.map(|m| m.as_str().to_string())
}
fn sanitize_paragraph(inner: &str) -> String {
// 保留换行,将 <br> 视为换行,去掉其他标签。
let with_newlines = re_br_normalize().replace_all(inner, "\n");
let text = Self::strip_tags(&with_newlines);
let decoded = Self::unescape_html_entities(text.trim());
let trimmed = decoded.trim();
if trimmed.is_empty() {
return String::new();
}
Self::escape_html(trimmed)
}
fn escape_html(s: &str) -> String {
s.replace('&', "&")
.replace('<', "<")
.replace('>', ">")
.replace('"', """)
.replace('\'', "'")
}
fn unescape_html_entities(s: &str) -> String {
// Decode common HTML entities that may appear in the API response
// Note: & must be replaced last to avoid double-decoding issues
if !(s.contains('&')) {
return s.to_string();
}
let mut result = s.to_string();
for _ in 0..4 {
let decoded = Self::unescape_html_entities_once(&result);
if decoded == result {
break;
}
result = decoded;
if !result.contains('&') {
break;
}
}
result
}
fn unescape_html_entities_once(s: &str) -> String {
// Decode common HTML entities that may appear in the API response.
// `&` must be replaced last so `&#34;` can be decoded by the
// next bounded pass instead of being over/under-decoded in one pass.
if !(s.contains('&')) {
return s.to_string();
}
use std::sync::OnceLock;
static RE_DECIMAL: OnceLock<Regex> = OnceLock::new();
static RE_HEX: OnceLock<Regex> = OnceLock::new();
let re_decimal = RE_DECIMAL.get_or_init(|| Regex::new(r"&#(\d+);").unwrap());
let re_hex = RE_HEX.get_or_init(|| Regex::new(r"&#[xX]([0-9a-fA-F]+);").unwrap());
let mut result = s.to_string();
// Decode decimal numeric entities (&#NNN;)
result = re_decimal
.replace_all(&result, |caps: ®ex::Captures| {
if let Some(num_str) = caps.get(1)
&& let Ok(code_point) = num_str.as_str().parse::<u32>()
{
// Validate code point is in valid Unicode range (0 to 0x10FFFF)
if code_point <= 0x10FFFF
&& let Some(ch) = char::from_u32(code_point)
{
return ch.to_string();
}
}
caps[0].to_string() // Return original if parsing fails
})
.to_string();
// Decode hexadecimal numeric entities (&#xHH; or &#XHH;)
result = re_hex
.replace_all(&result, |caps: ®ex::Captures| {
if let Some(hex_str) = caps.get(1)
&& let Ok(code_point) = u32::from_str_radix(hex_str.as_str(), 16)
{
// Validate code point is in valid Unicode range (0 to 0x10FFFF)
if code_point <= 0x10FFFF
&& let Some(ch) = char::from_u32(code_point)
{
return ch.to_string();
}
}
caps[0].to_string() // Return original if parsing fails
})
.to_string();
// Then decode named entities
result
.replace(" ", " ")
// Straight quotes and apostrophes
.replace(""", "\"")
.replace("'", "'")
// Curly quotes (common in Chinese novels)
.replace("“", "\u{201C}")
.replace("”", "\u{201D}")
.replace("‘", "\u{2018}")
.replace("’", "\u{2019}")
.replace("‚", "\u{201A}")
.replace("„", "\u{201E}")
// Dashes (common in Chinese novels)
.replace("–", "\u{2013}")
.replace("—", "\u{2014}")
// Ellipsis
.replace("…", "\u{2026}")
// Other punctuation
.replace("•", "\u{2022}")
.replace("­", "\u{00AD}")
// Angle brackets
.replace("<", "<")
.replace(">", ">")
.replace("‹", "\u{2039}")
.replace("›", "\u{203A}")
// Must be last to avoid double-decoding
.replace("&", "&")
}
}
fn normalize_title_for_compare(s: &str) -> String {
s.chars()
.filter(|ch| {
!ch.is_whitespace()
&& !matches!(
ch,
' ' | ':' | ':' | ',' | ',' | '。' | '!' | '!' | '?' | '?' | '、'
)
})
.collect::<String>()
.to_lowercase()
}
#[cfg(test)]
mod tests {
use super::ContentParser;
#[test]
fn clean_plain_removes_duplicated_leading_title() {
let raw = "<h1>第1章 开局</h1><p>第1章 开局</p><p>正文第一段</p><p>正文第二段</p>";
let out = ContentParser::clean_plain(raw, "第1章 开局");
assert!(
!out.lines()
.any(|l| l.contains("第1章 开局") && l.trim() == "第1章 开局")
);
assert!(out.contains("正文第一段"));
assert!(out.contains("正文第二段"));
}
#[test]
fn clean_plain_keeps_non_title_first_line() {
let raw = "<p>引子</p><p>正文第一段</p>";
let out = ContentParser::clean_plain(raw, "第1章 开局");
assert!(out.contains("引子"));
assert!(out.contains("正文第一段"));
}
#[test]
fn clean_xhtml_decodes_entities_before_reescaping() {
let raw = "<p>他说"A&B",还写了'C'</p>";
let out = ContentParser::clean_xhtml(raw, "第1章 开局");
assert_eq!(out, "<p>他说"A&B",还写了'C'</p>");
assert!(!out.contains("&#34;"));
assert!(!out.contains("&amp;"));
}
#[test]
fn clean_plain_decodes_double_escaped_cached_entities() {
let raw = "<p>他说&#34;A&amp;B&#34;,还写了&#x27;C&#x27;</p>";
let out = ContentParser::clean_plain(raw, "第1章 开局");
assert!(out.contains("他说\"A&B\",还写了'C'"));
assert!(!out.contains("""));
assert!(!out.contains("&"));
}
#[test]
fn clean_plain_preserves_ascii_emoticons_and_symbols() {
let raw = "<p>(^_^)/ ~~ \"hi\" it's ok :-)</p>";
let out = ContentParser::clean_plain(raw, "第1章 开局");
assert!(out.contains("(^_^)/ ~~ \"hi\" it's ok :-)"));
assert!(!out.contains("(^_^)/"));
assert!(!out.contains(""hi""));
assert!(!out.contains(":-)"));
}
#[test]
fn clean_xhtml_then_clean_plain_restores_text_entities() {
let raw = "<p>他说"A&B"</p>";
let cached = ContentParser::clean_xhtml(raw, "第1章 开局");
let out = ContentParser::clean_plain(&cached, "第1章 开局");
assert!(out.contains("他说\"A&B\""));
assert!(!out.contains("""));
assert!(!out.contains("&"));
}
}
|