aboutsummaryrefslogtreecommitdiff
path: root/src/bibiman/sanitize.rs
blob: 9ccf4c47ae54b7830e55ddb23227608b29c30604 (plain)
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
// bibiman - a TUI for managing BibLaTeX databases
// Copyright (C) 2025  lukeflo
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.
/////

use crate::bibiman::bibisetup::{BibiData, SanitizedBibiData};

mod optimized_sanitize;
use optimized_sanitize::optimized_sanitize;

/// Helper macro to sanitize bibidata structs.
/// Here lives the code that generates SanitizedBibiData
/// structs from BibiData structs.
macro_rules! optimized_sanitize_bibidata {
    ($bibidata:expr) => {
        SanitizedBibiData {
            title: optimized_sanitize(&$bibidata.title),
            subtitle: match &$bibidata.subtitle {
                None => None,
                Some(subtitle) => Some(optimized_sanitize(subtitle)),
            },
            abstract_text: optimized_sanitize(&$bibidata.abstract_text),
        }
    };
}

/// Sanitize one BibiData and return a SanitizedBibiData struct.
/// This function does ignore any existing sanitization of the bibidata struct.
pub fn sanitize_one_bibidata(bibidata: &BibiData) -> SanitizedBibiData {
    optimized_sanitize_bibidata!(bibidata)
}