use quick_xml::Reader;
use quick_xml::events::Event;
use crate::error::Result;
use crate::xml::local_name;
#[derive(Debug, Clone, Default, PartialEq)]
pub struct CoreProperties {
pub title: Option<String>,
pub creator: Option<String>,
pub subject: Option<String>,
pub description: Option<String>,
pub keywords: Option<String>,
pub last_modified_by: Option<String>,
pub created: Option<String>,
pub modified: Option<String>,
}
impl CoreProperties {
pub fn from_xml(xml: &[u8]) -> Result<Self> {
let mut reader = Reader::from_reader(xml);
reader.config_mut().trim_text(true);
let mut props = CoreProperties::default();
let mut buf = Vec::new();
loop {
match reader.read_event_into(&mut buf) {
Ok(Event::Start(ref e)) => {
let name = e.name();
let field = match local_name(name.as_ref()) {
b"title" => &mut props.title,
b"creator" => &mut props.creator,
b"subject" => &mut props.subject,
b"description" => &mut props.description,
b"keywords" => &mut props.keywords,
b"lastModifiedBy" => &mut props.last_modified_by,
b"created" => &mut props.created,
b"modified" => &mut props.modified,
_ => {
buf.clear();
continue;
}
};
let text = crate::xml_text::read_element_text(&mut reader, name);
if !text.is_empty() {
*field = Some(text);
}
}
Ok(Event::Eof) => break,
Err(e) => return Err(e.into()),
_ => {}
}
buf.clear();
}
Ok(props)
}
pub fn to_xml(&self) -> Result<Vec<u8>> {
use quick_xml::Writer;
use quick_xml::events::{BytesDecl, BytesEnd, BytesStart, BytesText};
let mut writer = Writer::new_with_indent(Vec::new(), b' ', 2);
writer.write_event(Event::Decl(BytesDecl::new(
"1.0",
Some("UTF-8"),
Some("yes"),
)))?;
let mut root = BytesStart::new("cp:coreProperties");
root.push_attribute((
"xmlns:cp",
"http://schemas.openxmlformats.org/package/2006/metadata/core-properties",
));
root.push_attribute(("xmlns:dc", "http://purl.org/dc/elements/1.1/"));
root.push_attribute(("xmlns:dcterms", "http://purl.org/dc/terms/"));
root.push_attribute(("xmlns:dcmitype", "http://purl.org/dc/dcmitype/"));
root.push_attribute(("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance"));
writer.write_event(Event::Start(root))?;
fn write_element<W: std::io::Write>(
writer: &mut Writer<W>,
tag: &str,
value: &Option<String>,
) -> Result<()> {
if let Some(val) = value {
writer.write_event(Event::Start(BytesStart::new(tag)))?;
writer.write_event(Event::Text(BytesText::new(val)))?;
writer.write_event(Event::End(BytesEnd::new(tag)))?;
}
Ok(())
}
fn write_date_element<W: std::io::Write>(
writer: &mut Writer<W>,
tag: &str,
value: &Option<String>,
) -> Result<()> {
if let Some(val) = value {
let mut e = BytesStart::new(tag);
e.push_attribute(("xsi:type", "dcterms:W3CDTF"));
writer.write_event(Event::Start(e))?;
writer.write_event(Event::Text(BytesText::new(val)))?;
writer.write_event(Event::End(BytesEnd::new(tag)))?;
}
Ok(())
}
write_element(&mut writer, "dc:title", &self.title)?;
write_element(&mut writer, "dc:subject", &self.subject)?;
write_element(&mut writer, "dc:creator", &self.creator)?;
write_element(&mut writer, "cp:keywords", &self.keywords)?;
write_element(&mut writer, "dc:description", &self.description)?;
write_element(&mut writer, "cp:lastModifiedBy", &self.last_modified_by)?;
write_date_element(&mut writer, "dcterms:created", &self.created)?;
write_date_element(&mut writer, "dcterms:modified", &self.modified)?;
writer.write_event(Event::End(BytesEnd::new("cp:coreProperties")))?;
Ok(writer.into_inner())
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn parse_core_properties() {
let xml = br#"<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<dc:title>Test Document</dc:title>
<dc:creator>John Doe</dc:creator>
<dc:subject>Testing</dc:subject>
<dc:description>A test document</dc:description>
<cp:keywords>test, document</cp:keywords>
<cp:lastModifiedBy>Jane Doe</cp:lastModifiedBy>
<dcterms:created xsi:type="dcterms:W3CDTF">2024-01-15T10:30:00Z</dcterms:created>
<dcterms:modified xsi:type="dcterms:W3CDTF">2024-06-20T14:00:00Z</dcterms:modified>
</cp:coreProperties>"#;
let props = CoreProperties::from_xml(xml).unwrap();
assert_eq!(props.title, Some("Test Document".to_string()));
assert_eq!(props.creator, Some("John Doe".to_string()));
assert_eq!(props.subject, Some("Testing".to_string()));
assert_eq!(props.description, Some("A test document".to_string()));
assert_eq!(props.keywords, Some("test, document".to_string()));
assert_eq!(props.last_modified_by, Some("Jane Doe".to_string()));
assert_eq!(props.created, Some("2024-01-15T10:30:00Z".to_string()));
assert_eq!(props.modified, Some("2024-06-20T14:00:00Z".to_string()));
}
#[test]
fn round_trip_core_properties() {
let props = CoreProperties {
title: Some("My Title".to_string()),
creator: Some("Author".to_string()),
subject: None,
description: None,
keywords: Some("rust, docx".to_string()),
last_modified_by: None,
created: Some("2024-01-01T00:00:00Z".to_string()),
modified: Some("2024-06-01T00:00:00Z".to_string()),
};
let xml = props.to_xml().unwrap();
let parsed = CoreProperties::from_xml(&xml).unwrap();
assert_eq!(parsed.title, props.title);
assert_eq!(parsed.creator, props.creator);
assert_eq!(parsed.keywords, props.keywords);
assert_eq!(parsed.created, props.created);
assert_eq!(parsed.modified, props.modified);
}
}