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 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946
// This file is part of rss. // // Copyright © 2015-2017 The rust-syndication Developers // // This program is free software; you can redistribute it and/or modify // it under the terms of the MIT License and/or Apache 2.0 License. use category::Category; use chrono::DateTime; use enclosure::Enclosure; use error::Error; use extension::ExtensionMap; use extension::dublincore::DublinCoreExtension; use extension::itunes::ITunesItemExtension; use fromxml::{self, FromXml, parse_extension, element_text}; use guid::Guid; use quick_xml::errors::Error as XmlError; use quick_xml::events::{Event, BytesStart, BytesEnd}; use quick_xml::events::attributes::Attributes; use quick_xml::reader::Reader; use quick_xml::writer::Writer; use source::Source; use toxml::{ToXml, WriterExt}; use url::Url; /// A representation of the `<item>` element. #[derive(Debug, Default, Clone, PartialEq)] pub struct Item { /// The title of the item. title: Option<String>, /// The URL of the item. link: Option<String>, /// The item synopsis. description: Option<String>, /// The email address of author of the item. author: Option<String>, /// The categories the item belongs to. categories: Vec<Category>, /// The URL for the comments page of the item. comments: Option<String>, /// The description of a media object that is attached to the item. enclosure: Option<Enclosure>, /// A unique identifier for the item. guid: Option<Guid>, /// The date the item was published. pub_date: Option<String>, /// The RSS channel the item came from. source: Option<Source>, /// The HTML contents of the item. content: Option<String>, /// The extensions for the item. extensions: ExtensionMap, /// The iTunes extension for the item. itunes_ext: Option<ITunesItemExtension>, /// The Dublin Core extension for the item. dublin_core_ext: Option<DublinCoreExtension>, } impl Item { /// Get the optional title that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let title_string = "Making Music with Linux | LAS 408"; /// /// let item = ItemBuilder::new() /// .title(Some(title_string.to_string())) /// .finalize() /// .unwrap(); /// /// assert_eq!(Some(title_string), item.title()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .title(None) /// .finalize() /// .unwrap(); /// /// assert!(item.title().is_none()); /// ``` pub fn title(&self) -> Option<&str> { self.title.as_ref().map(|s| s.as_str()) } /// Get the optional link that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let link_string = "http://www.jupiterbroadcasting.com/"; /// let item = ItemBuilder::new() /// .link(Some(link_string.to_string())) /// .finalize() /// .unwrap(); /// /// assert_eq!(Some(link_string), item.link()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .link(None) /// .finalize() /// .unwrap(); /// /// assert!(item.link().is_none()); /// ``` pub fn link(&self) -> Option<&str> { self.link.as_ref().map(|s| s.as_str()) } /// Get the optional description that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let description_string = "This is a test description"; /// /// let item = ItemBuilder::new() /// .description(Some(description_string.to_string())) /// .finalize() /// .unwrap(); /// /// assert_eq!(Some(description_string), item.description()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .description(None) /// .finalize() /// .unwrap(); /// /// assert!(item.description().is_none()); /// ``` pub fn description(&self) -> Option<&str> { self.description.as_ref().map(|s| s.as_str()) } /// Get the optional author that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let author_string = "Chris Fisher"; /// /// let item = ItemBuilder::new() /// .author(Some(author_string.to_string())) /// .finalize() /// .unwrap(); /// /// assert_eq!(Some(author_string), item.author()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .author(None) /// .finalize() /// .unwrap(); /// /// assert!(item.author().is_none()); /// ``` pub fn author(&self) -> Option<&str> { self.author.as_ref().map(|s| s.as_str()) } /// Get the categories that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{CategoryBuilder, ItemBuilder, Item}; /// /// let category_1 = CategoryBuilder::new() /// .domain(None) /// .name("Media") /// .finalize() /// .unwrap(); /// /// let category_2 = CategoryBuilder::new() /// .domain(Some("http://jupiterbroadcasting.com".to_string())) /// .name("Podcast") /// .finalize() /// .unwrap(); /// /// let categories_vec = vec![category_1, category_2]; /// /// let item = ItemBuilder::new() /// .categories(categories_vec.clone()) /// .finalize() /// .unwrap(); /// /// assert_eq!(categories_vec.clone().len(), item.categories().len()); /// ``` pub fn categories(&self) -> &[Category] { &self.categories } /// Get the optional comments that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let comments_string = "http://example.com/comments"; /// /// let item = ItemBuilder::new() /// .comments(Some(comments_string.to_string())) /// .finalize() /// .unwrap(); /// /// let comments_option = item.comments(); /// assert!(comments_option.is_some()); /// /// assert_eq!(Some(comments_string), item.comments()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .comments(None) /// .finalize() /// .unwrap(); /// /// assert!(item.comments().is_none()); /// ``` pub fn comments(&self) -> Option<&str> { self.comments.as_ref().map(|s| s.as_str()) } /// Get the optional enclosure that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{EnclosureBuilder, ItemBuilder, Item}; /// /// let url = "http://www.podtrac.com/pts/redirect.ogg/".to_string() /// + "traffic.libsyn.com/jnite/linuxactionshowep408.ogg"; /// /// let enclosure = EnclosureBuilder::new() /// .url(url.as_ref()) /// .length(70772893) /// .mime_type("audio/ogg") /// .finalize() /// .unwrap(); /// /// let item = ItemBuilder::new() /// .enclosure(Some(enclosure)) /// .finalize() /// .unwrap(); /// /// assert!(item.enclosure().is_some()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .enclosure(None) /// .finalize() /// .unwrap(); /// /// assert!(item.enclosure().is_none()); /// ``` pub fn enclosure(&self) -> Option<&Enclosure> { self.enclosure.as_ref() } /// Get the optional guid that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{GuidBuilder, ItemBuilder, Item}; /// /// let guid = GuidBuilder::new() /// .value("9DE46946-2F90-4D5D-9047-7E9165C16E7C") /// .is_permalink(None) /// .finalize() /// .unwrap(); /// /// let item = ItemBuilder::new() /// .guid(Some(guid)) /// .finalize() /// .unwrap(); /// assert!(item.guid().is_some()) /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .guid(None) /// .finalize() /// .unwrap(); /// /// assert!(item.guid().is_none()); /// ``` pub fn guid(&self) -> Option<&Guid> { self.guid.as_ref() } /// Get the optional pub date that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let pub_date = "Sun, 13 Mar 2016 20:02:02 -0700"; /// /// let item = ItemBuilder::new() /// .pub_date(Some(pub_date.to_string())) /// .finalize() /// .unwrap(); /// /// let local = item.pub_date(); /// assert!(local.is_some()); /// /// assert_eq!(pub_date.to_string(), local.unwrap()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .pub_date(None) /// .finalize() /// .unwrap(); /// /// assert!(item.pub_date().is_none()); /// ``` pub fn pub_date(&self) -> Option<&str> { self.pub_date.as_ref().map(|s| s.as_str()) } /// Get the optional source that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item, SourceBuilder}; /// /// let source = SourceBuilder::new() /// .url("http://www.tomalak.org/links2.xml") /// .finalize() /// .unwrap(); /// /// let item = ItemBuilder::new() /// .source(Some(source)) /// .finalize() /// .unwrap(); /// /// assert!(item.source().is_some()) /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .source(None) /// .finalize() /// .unwrap(); /// /// assert!(item.source().is_none()); /// ``` pub fn source(&self) -> Option<&Source> { self.source.as_ref() } /// Get the optional `ITunesItemExtension` under `Item`. /// # Examples /// /// ``` /// use rss::{ItemBuilder, Item}; /// use rss::extension::itunes::ITunesItemExtensionBuilder; /// /// let itunes_item = ITunesItemExtensionBuilder::new() /// .author(Some("author".to_string())) /// .block(Some("block".to_string())) /// .image(Some("image".to_string())) /// .duration(Some("duration".to_string())) /// .explicit(Some("explicit".to_string())) /// .closed_captioned(Some("closed_captioned".to_string())) /// .order(Some("order".to_string())) /// .subtitle(Some("subtitle".to_string())) /// .summary(Some("summary".to_string())) /// .keywords(Some("keywords".to_string())) /// .finalize() /// .unwrap(); /// /// let item = ItemBuilder::new() /// .title(Some("Making Music with Linux | LAS 408".to_string())) /// .itunes_ext(Some(itunes_item)) /// .finalize() /// .unwrap(); /// /// assert!(item.itunes_ext().is_some()); /// ``` /// /// ``` /// use rss::{ItemBuilder, Item}; /// /// let item = ItemBuilder::new() /// .title(Some("Making Music with Linux | LAS 408".to_string())) /// .itunes_ext(None) /// .finalize() /// .unwrap(); /// /// assert!(item.itunes_ext().is_none()); /// ``` pub fn itunes_ext(&self) -> Option<&ITunesItemExtension> { self.itunes_ext.as_ref() } /// Get the optional `DublinCoreExtension` under `Item`. pub fn dublin_core_ext(&self) -> Option<&DublinCoreExtension> { self.dublin_core_ext.as_ref() } /// Get the `ExtensionMap` under `Item`. pub fn extensions(&self) -> &ExtensionMap { &self.extensions } /// Get the optional content under `Item`. pub fn content(&self) -> Option<&str> { self.content.as_ref().map(|s| s.as_str()) } } impl FromXml for Item { fn from_xml<R: ::std::io::BufRead>(reader: &mut Reader<R>, _: Attributes) -> Result<Self, Error> { let mut item = Item::default(); let mut buf = Vec::new(); loop { match reader.read_event(&mut buf) { Ok(Event::Start(element)) => { match element.name() { b"category" => { let category = Category::from_xml(reader, element.attributes())?; item.categories.push(category); } b"guid" => { let guid = Guid::from_xml(reader, element.attributes())?; item.guid = Some(guid); } b"enclosure" => { let enclosure = Enclosure::from_xml(reader, element.attributes())?; item.enclosure = Some(enclosure); } b"source" => { let source = Source::from_xml(reader, element.attributes())?; item.source = Some(source); } b"title" => item.title = element_text(reader)?, b"link" => item.link = element_text(reader)?, b"description" => item.description = element_text(reader)?, b"author" => item.author = element_text(reader)?, b"comments" => item.comments = element_text(reader)?, b"pubDate" => item.pub_date = element_text(reader)?, b"content:encoded" => item.content = element_text(reader)?, n => { if let Some((ns, name)) = fromxml::extension_name(n) { parse_extension(reader, element.attributes(), ns, name, &mut item.extensions)?; } else { reader.read_to_end(n, &mut Vec::new())?; } } } } Ok(Event::End(_)) => { if !item.extensions.is_empty() { if let Some(map) = item.extensions.remove("itunes") { item.itunes_ext = Some(ITunesItemExtension::from_map(map)); } if let Some(map) = item.extensions.remove("dc") { item.dublin_core_ext = Some(DublinCoreExtension::from_map(map)); } } return Ok(item); } Ok(Event::Eof) => break, Err(err) => return Err(err.into()), _ => {} } buf.clear(); } Err(Error::EOF) } } impl ToXml for Item { fn to_xml<W: ::std::io::Write>(&self, writer: &mut Writer<W>) -> Result<(), XmlError> { let name = b"item"; writer .write_event(Event::Start(BytesStart::borrowed(name, name.len())))?; if let Some(title) = self.title.as_ref() { writer.write_text_element(b"title", title)?; } if let Some(link) = self.link.as_ref() { writer.write_text_element(b"link", link)?; } if let Some(description) = self.description.as_ref() { writer.write_text_element(b"description", description)?; } if let Some(author) = self.author.as_ref() { writer.write_text_element(b"author", author)?; } writer.write_objects(&self.categories)?; if let Some(comments) = self.comments.as_ref() { writer.write_text_element(b"comments", comments)?; } if let Some(enclosure) = self.enclosure.as_ref() { writer.write_object(enclosure)?; } if let Some(guid) = self.guid.as_ref() { writer.write_object(guid)?; } if let Some(pub_date) = self.pub_date.as_ref() { writer.write_text_element(b"pubDate", pub_date)?; } if let Some(source) = self.source.as_ref() { writer.write_object(source)?; } if let Some(content) = self.content.as_ref() { writer.write_cdata_element(b"content:encoded", content)?; } for map in self.extensions.values() { for extensions in map.values() { for extension in extensions { extension.to_xml(writer)?; } } } if let Some(ext) = self.itunes_ext.as_ref() { ext.to_xml(writer)?; } if let Some(ext) = self.dublin_core_ext.as_ref() { ext.to_xml(writer)?; } writer.write_event(Event::End(BytesEnd::borrowed(name)))?; Ok(()) } } /// This `ItemBuilder` struct creates the `Item`. #[derive(Debug, Clone, Default)] pub struct ItemBuilder { title: Option<String>, link: Option<String>, description: Option<String>, author: Option<String>, categories: Vec<Category>, comments: Option<String>, enclosure: Option<Enclosure>, guid: Option<Guid>, pub_date: Option<String>, source: Option<Source>, extensions: ExtensionMap, itunes_ext: Option<ITunesItemExtension>, dublin_core_ext: Option<DublinCoreExtension>, content: Option<String>, } impl ItemBuilder { /// Construct a new `ItemBuilder` and return default values. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let item_builder = ItemBuilder::new(); /// ``` pub fn new() -> ItemBuilder { ItemBuilder::default() } /// Set the optional title that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.title(Some("Making Music with Linux | LAS /// 408".to_string())); /// ``` pub fn title(mut self, title: Option<String>) -> ItemBuilder { self.title = title; self } /// Set the optional link that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.link(Some("http://www.jupiterbroadcasting.com". /// to_owned())); /// ``` pub fn link(mut self, link: Option<String>) -> ItemBuilder { self.link = link; self } /// Set the optional description that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.description(Some("This is a test description".to_string())); /// ``` pub fn description(mut self, description: Option<String>) -> ItemBuilder { self.description = description; self } /// Set the optional author that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.author(Some("Chris Fisher".to_string())); /// ``` pub fn author(mut self, author: Option<String>) -> ItemBuilder { self.author = author; self } /// Set the optional categories that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{CategoryBuilder, ItemBuilder}; /// /// let category = CategoryBuilder::new() /// .finalize() /// .unwrap();; /// let categories = vec![category]; /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.categories(categories); /// ``` pub fn categories(mut self, categories: Vec<Category>) -> ItemBuilder { self.categories = categories; self } /// Set the optional comments that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.comments(Some("Test Comment".to_string())); /// ``` pub fn comments(mut self, comments: Option<String>) -> ItemBuilder { self.comments = comments; self } /// Set the optional enclosure that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{EnclosureBuilder, ItemBuilder}; /// /// let url = "http://www.podtrac.com/pts/redirect.ogg/".to_string() /// + "traffic.libsyn.com/jnite/linuxactionshowep408.ogg"; /// /// let enclosure = EnclosureBuilder::new() /// .url(url.as_str()) /// .mime_type("audio/ogg") /// .finalize() /// .unwrap(); /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.enclosure(Some(enclosure)); /// ``` pub fn enclosure(mut self, enclosure: Option<Enclosure>) -> ItemBuilder { self.enclosure = enclosure; self } /// Set the optional guid that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{GuidBuilder, ItemBuilder}; /// /// let guid = GuidBuilder::new() /// .finalize() /// .unwrap(); /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.guid(Some(guid)); /// ``` pub fn guid(mut self, guid: Option<Guid>) -> ItemBuilder { self.guid = guid; self } /// Set the optional pub date that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.pub_date(Some("Sun, 13 Mar 2016 /// 20:02:02-0700".to_string())); /// ``` pub fn pub_date(mut self, pub_date: Option<String>) -> ItemBuilder { self.pub_date = pub_date; self } /// Set the optional source that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::{ItemBuilder, SourceBuilder}; /// /// let url = "http://www.tomalak.org/links2.xml"; /// /// let source = SourceBuilder::new() /// .url(url) /// .finalize() /// .unwrap(); /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.source(Some(source)); /// ``` pub fn source(mut self, source: Option<Source>) -> ItemBuilder { self.source = source; self } /// Set the optional itunes_ext that exists under `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// use rss::extension::itunes::ITunesItemExtensionBuilder; /// /// let url = "http://www.tomalak.org/links2.xml"; /// /// let itunes_item = ITunesItemExtensionBuilder::new() /// .author(Some("author".to_string())) /// .block(Some("block".to_string())) /// .image(Some("image".to_string())) /// .duration(Some("duration".to_string())) /// .explicit(Some("explicit".to_string())) /// .closed_captioned(Some("closed_captioned".to_string())) /// .order(Some("order".to_string())) /// .subtitle(Some("subtitle".to_string())) /// .summary(Some("summary".to_string())) /// .keywords(Some("keywords".to_string())) /// .finalize() /// .unwrap(); /// /// let mut item_builder = ItemBuilder::new(); /// item_builder.itunes_ext(Some(itunes_item)); /// ``` pub fn itunes_ext(mut self, itunes_ext: Option<ITunesItemExtension>) -> ItemBuilder { self.itunes_ext = itunes_ext; self } /// Set the optional dublin_core_ext that exists under `Item`. pub fn dublin_core_ext(mut self, dublin_core_ext: Option<DublinCoreExtension>) -> ItemBuilder { self.dublin_core_ext = dublin_core_ext; self } /// Set the extensions that exists under `Item`. pub fn extensions(mut self, extensions: ExtensionMap) -> ItemBuilder { self.extensions = extensions; self } /// Set the optional content that exists under `Item`. pub fn content(mut self, content: Option<String>) -> ItemBuilder { self.content = content; self } /// Validate the contents of `Item`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let item = ItemBuilder::new() /// .title(Some("Making Music with Linux | LAS 408".to_string())) /// .link(Some("http://www.jupiterbroadcasting.com".to_string())) /// .description(None) /// .author(None) /// .categories(Vec::new()) /// .comments(None) /// .enclosure(None) /// .guid(None) /// .pub_date(None) /// .source(None) /// .validate().unwrap() /// .finalize().unwrap(); /// ``` pub fn validate(self) -> Result<ItemBuilder, Error> { if self.title.is_none() && self.description.is_none() { return Err(Error::Validation("Either Title or Description must have a value." .to_string())); } if let Some(ref link) = self.link { Url::parse(link.as_str())?; } if let Some(ref comments) = self.comments { Url::parse(comments.as_str())?; } if let Some(ref pub_date) = self.pub_date { DateTime::parse_from_rfc2822(pub_date.as_str())?; } Ok(self) } /// Construct the `Item` from the `ItemBuilder`. /// /// # Examples /// /// ``` /// use rss::ItemBuilder; /// /// let item = ItemBuilder::new() /// .title(Some("Making Music with Linux | LAS 408".to_string())) /// .link(Some("http://www.jupiterbroadcasting.com".to_string())) /// .description(None) /// .author(None) /// .categories(Vec::new()) /// .comments(None) /// .enclosure(None) /// .guid(None) /// .pub_date(None) /// .source(None) /// .finalize() /// .unwrap(); /// ``` pub fn finalize(self) -> Result<Item, Error> { Ok(Item { title: self.title, link: self.link, description: self.description, author: self.author, categories: self.categories, comments: self.comments, enclosure: self.enclosure, guid: self.guid, pub_date: self.pub_date, source: self.source, extensions: self.extensions, itunes_ext: self.itunes_ext, dublin_core_ext: self.dublin_core_ext, content: self.content, }) } }