feedparser-rs 0.5.3

High-performance RSS/Atom/JSON Feed parser
Documentation
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
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
use super::generics::{FromAttributes, ParseFrom};
use crate::util::{date::parse_date, text::bytes_to_string};
use chrono::{DateTime, Utc};
use compact_str::CompactString;
use serde_json::Value;
use std::ops::Deref;
use std::sync::Arc;

/// Optimized string type for small strings (≤24 bytes stored inline)
///
/// Uses `CompactString` which stores strings up to 24 bytes inline without heap allocation.
/// This significantly reduces allocations for common short strings like language codes,
/// author names, category terms, and other metadata fields.
///
/// `CompactString` implements `Deref<Target=str>`, so it can be used transparently as a string.
///
/// # Examples
///
/// ```
/// use feedparser_rs::types::SmallString;
///
/// let s: SmallString = "en-US".into();
/// assert_eq!(s.as_str(), "en-US");
/// assert_eq!(s.len(), 5); // Stored inline, no heap allocation
/// ```
pub type SmallString = CompactString;

/// URL newtype for type-safe URL handling
///
/// Provides a semantic wrapper around string URLs without validation.
/// Following the bozo pattern, URLs are not validated during parsing.
///
/// # Examples
///
/// ```
/// use feedparser_rs::Url;
///
/// let url = Url::new("https://example.com");
/// assert_eq!(url.as_str(), "https://example.com");
///
/// // Deref coercion allows transparent string access
/// let len: usize = url.len();
/// assert_eq!(len, 19);
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default, serde::Serialize, serde::Deserialize)]
#[serde(transparent)]
pub struct Url(String);

impl Url {
    /// Creates a new URL from any type that can be converted to a String
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::Url;
    ///
    /// let url1 = Url::new("https://example.com");
    /// let url2 = Url::new(String::from("https://example.com"));
    /// assert_eq!(url1, url2);
    /// ```
    #[inline]
    pub fn new(s: impl Into<String>) -> Self {
        Self(s.into())
    }

    /// Returns the URL as a string slice
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::Url;
    ///
    /// let url = Url::new("https://example.com");
    /// assert_eq!(url.as_str(), "https://example.com");
    /// ```
    #[inline]
    pub fn as_str(&self) -> &str {
        &self.0
    }

    /// Consumes the `Url` and returns the inner `String`
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::Url;
    ///
    /// let url = Url::new("https://example.com");
    /// let inner: String = url.into_inner();
    /// assert_eq!(inner, "https://example.com");
    /// ```
    #[inline]
    pub fn into_inner(self) -> String {
        self.0
    }
}

impl Deref for Url {
    type Target = str;

    #[inline]
    fn deref(&self) -> &str {
        &self.0
    }
}

impl From<String> for Url {
    #[inline]
    fn from(s: String) -> Self {
        Self(s)
    }
}

impl From<&str> for Url {
    #[inline]
    fn from(s: &str) -> Self {
        Self(s.to_string())
    }
}

impl AsRef<str> for Url {
    #[inline]
    fn as_ref(&self) -> &str {
        &self.0
    }
}

impl std::fmt::Display for Url {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for Url {
    fn eq(&self, other: &str) -> bool {
        self.0 == other
    }
}

impl PartialEq<&str> for Url {
    fn eq(&self, other: &&str) -> bool {
        self.0 == *other
    }
}

impl PartialEq<String> for Url {
    fn eq(&self, other: &String) -> bool {
        &self.0 == other
    }
}

/// MIME type newtype with string interning
///
/// Uses `Arc<str>` for efficient cloning of common MIME types.
/// Multiple references to the same MIME type share the same allocation.
///
/// # Examples
///
/// ```
/// use feedparser_rs::MimeType;
///
/// let mime = MimeType::new("text/html");
/// assert_eq!(mime.as_str(), "text/html");
///
/// // Cloning is cheap (just increments reference count)
/// let clone = mime.clone();
/// assert_eq!(mime, clone);
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct MimeType(Arc<str>);

// Custom serde implementation for MimeType since Arc<str> doesn't implement Serialize/Deserialize
impl serde::Serialize for MimeType {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer,
    {
        serializer.serialize_str(&self.0)
    }
}

impl<'de> serde::Deserialize<'de> for MimeType {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let s = <String as serde::Deserialize>::deserialize(deserializer)?;
        Ok(Self::new(s))
    }
}

impl MimeType {
    /// Creates a new MIME type from any string-like type
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::MimeType;
    ///
    /// let mime = MimeType::new("application/json");
    /// assert_eq!(mime.as_str(), "application/json");
    /// ```
    #[inline]
    pub fn new(s: impl AsRef<str>) -> Self {
        Self(Arc::from(s.as_ref()))
    }

    /// Returns the MIME type as a string slice
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::MimeType;
    ///
    /// let mime = MimeType::new("text/plain");
    /// assert_eq!(mime.as_str(), "text/plain");
    /// ```
    #[inline]
    pub fn as_str(&self) -> &str {
        &self.0
    }

    /// Common MIME type constants for convenience.
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::MimeType;
    ///
    /// let html = MimeType::new(MimeType::TEXT_HTML);
    /// assert_eq!(html.as_str(), "text/html");
    /// ```
    pub const TEXT_HTML: &'static str = "text/html";

    /// `text/plain` MIME type constant
    pub const TEXT_PLAIN: &'static str = "text/plain";

    /// `application/xml` MIME type constant
    pub const APPLICATION_XML: &'static str = "application/xml";

    /// `application/json` MIME type constant
    pub const APPLICATION_JSON: &'static str = "application/json";
}

impl Default for MimeType {
    #[inline]
    fn default() -> Self {
        Self(Arc::from(""))
    }
}

impl Deref for MimeType {
    type Target = str;

    #[inline]
    fn deref(&self) -> &str {
        &self.0
    }
}

impl From<String> for MimeType {
    #[inline]
    fn from(s: String) -> Self {
        Self(Arc::from(s.as_str()))
    }
}

impl From<&str> for MimeType {
    #[inline]
    fn from(s: &str) -> Self {
        Self(Arc::from(s))
    }
}

impl AsRef<str> for MimeType {
    #[inline]
    fn as_ref(&self) -> &str {
        &self.0
    }
}

impl std::fmt::Display for MimeType {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for MimeType {
    fn eq(&self, other: &str) -> bool {
        &*self.0 == other
    }
}

impl PartialEq<&str> for MimeType {
    fn eq(&self, other: &&str) -> bool {
        &*self.0 == *other
    }
}

impl PartialEq<String> for MimeType {
    fn eq(&self, other: &String) -> bool {
        &*self.0 == other
    }
}

/// Email newtype for type-safe email handling
///
/// Provides a semantic wrapper around email addresses without validation.
/// Following the bozo pattern, emails are not validated during parsing.
///
/// # Examples
///
/// ```
/// use feedparser_rs::Email;
///
/// let email = Email::new("user@example.com");
/// assert_eq!(email.as_str(), "user@example.com");
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default, serde::Serialize, serde::Deserialize)]
#[serde(transparent)]
pub struct Email(String);

impl Email {
    /// Creates a new email from any type that can be converted to a String
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::Email;
    ///
    /// let email = Email::new("user@example.com");
    /// assert_eq!(email.as_str(), "user@example.com");
    /// ```
    #[inline]
    pub fn new(s: impl Into<String>) -> Self {
        Self(s.into())
    }

    /// Returns the email as a string slice
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::Email;
    ///
    /// let email = Email::new("user@example.com");
    /// assert_eq!(email.as_str(), "user@example.com");
    /// ```
    #[inline]
    pub fn as_str(&self) -> &str {
        &self.0
    }

    /// Consumes the `Email` and returns the inner `String`
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::Email;
    ///
    /// let email = Email::new("user@example.com");
    /// let inner: String = email.into_inner();
    /// assert_eq!(inner, "user@example.com");
    /// ```
    #[inline]
    pub fn into_inner(self) -> String {
        self.0
    }
}

impl Deref for Email {
    type Target = str;

    #[inline]
    fn deref(&self) -> &str {
        &self.0
    }
}

impl From<String> for Email {
    #[inline]
    fn from(s: String) -> Self {
        Self(s)
    }
}

impl From<&str> for Email {
    #[inline]
    fn from(s: &str) -> Self {
        Self(s.to_string())
    }
}

impl AsRef<str> for Email {
    #[inline]
    fn as_ref(&self) -> &str {
        &self.0
    }
}

impl std::fmt::Display for Email {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.0.fmt(f)
    }
}

impl PartialEq<str> for Email {
    fn eq(&self, other: &str) -> bool {
        self.0 == other
    }
}

impl PartialEq<&str> for Email {
    fn eq(&self, other: &&str) -> bool {
        self.0 == *other
    }
}

impl PartialEq<String> for Email {
    fn eq(&self, other: &String) -> bool {
        &self.0 == other
    }
}

/// Link in feed or entry
#[derive(Debug, Clone, Default)]
pub struct Link {
    /// Link URL
    pub href: Url,
    /// Link relationship type (e.g., "alternate", "enclosure", "self")
    /// Stored inline as these are typically short (≤24 bytes)
    pub rel: Option<SmallString>,
    /// MIME type of the linked resource
    pub link_type: Option<MimeType>,
    /// Human-readable link title
    pub title: Option<String>,
    /// Length of the linked resource in bytes (raw string value, as in Python feedparser)
    pub length: Option<String>,
    /// Language of the linked resource (stored inline for lang codes ≤24 bytes)
    pub hreflang: Option<SmallString>,
    /// RFC 4685 §4: number of replies at the IRI
    pub thr_count: Option<u32>,
    /// RFC 4685 §4: when the reply resource was last modified
    pub thr_updated: Option<DateTime<Utc>>,
}

impl Link {
    /// Create a new link with just URL and relation type
    #[inline]
    pub fn new(href: impl Into<Url>, rel: impl AsRef<str>) -> Self {
        Self {
            href: href.into(),
            rel: Some(rel.as_ref().into()),
            link_type: None,
            title: None,
            length: None,
            hreflang: None,
            thr_count: None,
            thr_updated: None,
        }
    }

    /// Create an alternate link (common for entry URLs)
    #[inline]
    pub fn alternate(href: impl Into<Url>) -> Self {
        Self::new(href, "alternate")
    }

    /// Create a self link (for feed URLs)
    #[inline]
    pub fn self_link(href: impl Into<Url>, mime_type: impl Into<MimeType>) -> Self {
        Self {
            href: href.into(),
            rel: Some("self".into()),
            link_type: Some(mime_type.into()),
            title: None,
            length: None,
            hreflang: None,
            thr_count: None,
            thr_updated: None,
        }
    }

    /// Create an enclosure link (for media)
    #[inline]
    pub fn enclosure(href: impl Into<Url>, mime_type: Option<MimeType>) -> Self {
        Self {
            href: href.into(),
            rel: Some("enclosure".into()),
            link_type: mime_type,
            title: None,
            length: None,
            hreflang: None,
            thr_count: None,
            thr_updated: None,
        }
    }

    /// Create a related link
    #[inline]
    pub fn related(href: impl Into<Url>) -> Self {
        Self::new(href, "related")
    }

    /// Create a banner image link (JSON Feed `banner_image`, project-internal convention)
    ///
    /// Note: `rel="banner"` is not a standard link relation. It is used here as a project
    /// convention to store JSON Feed `banner_image` in the existing `Link` type. Consumers
    /// must search `entry.links` for `rel="banner"` to retrieve this field.
    #[inline]
    pub fn banner(href: impl Into<Url>) -> Self {
        Self::new(href, "banner")
    }

    /// Create a hub link (JSON Feed 1.1 `hubs` array, `WebSub` convention)
    #[inline]
    pub fn hub(href: impl Into<Url>) -> Self {
        Self::new(href, "hub")
    }

    /// Set MIME type (builder pattern)
    #[inline]
    #[must_use]
    pub fn with_type(mut self, mime_type: impl Into<MimeType>) -> Self {
        self.link_type = Some(mime_type.into());
        self
    }
}

/// Person (author, contributor, etc.)
#[derive(Debug, Clone, Default)]
pub struct Person {
    /// Person's name (stored inline for names ≤24 bytes)
    pub name: Option<SmallString>,
    /// Person's email address
    pub email: Option<Email>,
    /// Person's URI/website
    pub uri: Option<String>,
    /// Person's avatar image URL (JSON Feed only)
    pub avatar: Option<String>,
}

impl Person {
    /// Create person from just a name
    ///
    /// # Examples
    ///
    /// ```
    /// use feedparser_rs::types::Person;
    ///
    /// let person = Person::from_name("John Doe");
    /// assert_eq!(person.name.as_deref(), Some("John Doe"));
    /// assert!(person.email.is_none());
    /// assert!(person.uri.is_none());
    /// ```
    #[inline]
    pub fn from_name(name: impl AsRef<str>) -> Self {
        Self {
            name: Some(name.as_ref().into()),
            email: None,
            uri: None,
            avatar: None,
        }
    }

    /// Build flat author string in `"Name (email)"` format when email is present.
    ///
    /// Returns `None` if neither name nor email is set.
    #[must_use]
    pub fn flat_string(&self) -> Option<SmallString> {
        match (&self.name, &self.email) {
            (Some(name), Some(email)) => Some(format!("{name} ({email})").into()),
            (Some(name), None) => Some(name.clone()),
            (None, Some(email)) => Some(email.as_str().into()),
            (None, None) => None,
        }
    }
}

/// Tag/category
#[derive(Debug, Clone)]
pub struct Tag {
    /// Tag term/label (stored inline for terms ≤24 bytes)
    pub term: SmallString,
    /// Tag scheme/domain (stored inline for schemes ≤24 bytes)
    pub scheme: Option<SmallString>,
    /// Human-readable tag label (stored inline for labels ≤24 bytes)
    pub label: Option<SmallString>,
}

impl Tag {
    /// Create a simple tag with just term
    #[inline]
    pub fn new(term: impl AsRef<str>) -> Self {
        Self {
            term: term.as_ref().into(),
            scheme: None,
            label: None,
        }
    }
}

/// RSS 2.0 `<cloud>` element — subscription endpoint for updates
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct Cloud {
    /// Domain of the cloud server
    pub domain: Option<String>,
    /// Port of the cloud server
    pub port: Option<String>,
    /// Path of the cloud server
    pub path: Option<String>,
    /// Procedure to register for update notifications
    pub register_procedure: Option<String>,
    /// Protocol: xml-rpc, soap, or http-post
    pub protocol: Option<String>,
}

/// RSS 2.0 `<textInput>` element — text input form associated with the channel
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct TextInput {
    /// Title of the Submit button in the text input area
    pub title: Option<String>,
    /// Explains the text input area
    pub description: Option<String>,
    /// The name of the text object in the text input area
    pub name: Option<String>,
    /// The URL of the CGI script that processes text input requests
    pub link: Option<String>,
}

/// Image metadata
#[derive(Debug, Clone)]
pub struct Image {
    /// Image URL
    pub url: Url,
    /// Image title
    pub title: Option<String>,
    /// Link associated with the image
    pub link: Option<String>,
    /// Image width in pixels
    pub width: Option<u32>,
    /// Image height in pixels
    pub height: Option<u32>,
    /// Image description
    pub description: Option<String>,
}

/// Enclosure (attached media file)
#[derive(Debug, Clone)]
pub struct Enclosure {
    /// Enclosure URL
    pub url: Url,
    /// File size in bytes (raw string value, as in Python feedparser)
    pub length: Option<String>,
    /// MIME type
    pub enclosure_type: Option<MimeType>,
    /// Attachment title (JSON Feed only)
    pub title: Option<String>,
    /// Duration in seconds as raw string (JSON Feed `duration_in_seconds`)
    pub duration: Option<String>,
}

/// Content block
#[derive(Debug, Clone)]
pub struct Content {
    /// Content body
    pub value: String,
    /// Content MIME type
    pub content_type: Option<MimeType>,
    /// Content language (stored inline for lang codes ≤24 bytes)
    pub language: Option<SmallString>,
    /// Base URL for relative links
    pub base: Option<String>,
    /// Out-of-line content URL (Atom `<content src="...">`, RFC 4287 §4.1.3.2)
    pub src: Option<String>,
}

impl Content {
    /// Create HTML content
    #[inline]
    pub fn html(value: impl Into<String>) -> Self {
        Self {
            value: value.into(),
            content_type: Some(MimeType::new(MimeType::TEXT_HTML)),
            language: None,
            base: None,
            src: None,
        }
    }

    /// Create plain text content
    #[inline]
    pub fn plain(value: impl Into<String>) -> Self {
        Self {
            value: value.into(),
            content_type: Some(MimeType::new(MimeType::TEXT_PLAIN)),
            language: None,
            base: None,
            src: None,
        }
    }
}

/// Text construct type (Atom-style)
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum TextType {
    /// Plain text
    Text,
    /// HTML content
    Html,
    /// XHTML content
    Xhtml,
}

/// Text construct with metadata
#[derive(Debug, Clone)]
pub struct TextConstruct {
    /// Text content
    pub value: String,
    /// Content type
    pub content_type: TextType,
    /// Content language (stored inline for lang codes ≤24 bytes)
    pub language: Option<SmallString>,
    /// Base URL for relative links
    pub base: Option<String>,
}

impl TextConstruct {
    /// Create plain text construct
    #[inline]
    pub fn text(value: impl Into<String>) -> Self {
        Self {
            value: value.into(),
            content_type: TextType::Text,
            language: None,
            base: None,
        }
    }

    /// Create HTML text construct
    #[inline]
    pub fn html(value: impl Into<String>) -> Self {
        Self {
            value: value.into(),
            content_type: TextType::Html,
            language: None,
            base: None,
        }
    }

    /// Set language (builder pattern)
    #[inline]
    #[must_use]
    pub fn with_language(mut self, language: impl AsRef<str>) -> Self {
        self.language = Some(language.as_ref().into());
        self
    }
}

/// Generator metadata
#[derive(Debug, Clone)]
pub struct Generator {
    /// Generator name (text content of the `<generator>` element)
    pub name: String,
    /// Generator URI (href attribute)
    pub href: Option<String>,
    /// Generator version (stored inline for versions ≤24 bytes)
    pub version: Option<SmallString>,
}

/// Source reference (for entries)
#[derive(Debug, Clone)]
pub struct Source {
    /// Source title
    pub title: Option<String>,
    /// Primary source URL for RSS `<source url="...">` (RSS-only field)
    pub href: Option<String>,
    /// Primary source URL for Atom `<source><link href="..."/>` (Atom-only field)
    pub link: Option<String>,
    /// Source author (flat string, Atom `<source><author>`)
    pub author: Option<String>,
    /// Source unique identifier
    pub id: Option<String>,
    /// All links from the source element
    pub links: Vec<Link>,
    /// Last update date (Atom `<updated>`)
    pub updated: Option<DateTime<Utc>>,
    /// Original update date string (timezone preserved)
    pub updated_str: Option<String>,
    /// Rights/copyright statement (Atom `<rights>`)
    pub rights: Option<String>,
    /// Whether `<id>` was used as the link.
    ///
    /// `Some(true)` when `<id>` looks like a URL and no explicit `<link>` was present.
    /// `Some(false)` when `<id>` is present but a `<link>` was also present, or `<id>` is not a URL.
    /// `None` for RSS sources (RSS `<source>` has no `<id>`).
    pub guidislink: Option<bool>,
}

/// Media RSS thumbnail
#[derive(Debug, Clone)]
pub struct MediaThumbnail {
    /// Thumbnail URL
    ///
    /// # Security Warning
    ///
    /// This URL comes from untrusted feed input and has NOT been validated for SSRF.
    /// Applications MUST validate URLs before fetching to prevent SSRF attacks.
    pub url: Url,
    /// Thumbnail width in pixels (raw string value, as in Python feedparser)
    pub width: Option<String>,
    /// Thumbnail height in pixels (raw string value, as in Python feedparser)
    pub height: Option<String>,
    /// Time offset in NTP format (time attribute)
    ///
    /// Indicates which frame of the media this thumbnail represents.
    pub time: Option<String>,
}

/// Media RSS content
#[derive(Debug, Clone)]
pub struct MediaContent {
    /// Media URL
    ///
    /// # Security Warning
    ///
    /// This URL comes from untrusted feed input and has NOT been validated for SSRF.
    /// Applications MUST validate URLs before fetching to prevent SSRF attacks.
    pub url: Url,
    /// MIME type
    pub content_type: Option<MimeType>,
    /// Medium type: "image", "video", "audio", "document", "executable"
    pub medium: Option<String>,
    /// File size in bytes (raw string value, as in Python feedparser)
    pub filesize: Option<String>,
    /// Media width in pixels (raw string value, as in Python feedparser)
    pub width: Option<String>,
    /// Media height in pixels (raw string value, as in Python feedparser)
    pub height: Option<String>,
    /// Duration in seconds (raw string value, as in Python feedparser)
    pub duration: Option<String>,
    /// Bitrate in kilobits per second (raw string value)
    pub bitrate: Option<String>,
    /// Language of the media (lang attribute)
    pub lang: Option<String>,
    /// Number of audio channels (raw string value)
    pub channels: Option<String>,
    /// Codec used to produce the media (codec attribute)
    pub codec: Option<String>,
    /// Expression type: "full", "sample", "nonstop"
    pub expression: Option<String>,
    /// Whether this is the default media object (isDefault attribute, raw string)
    pub isdefault: Option<String>,
    /// Sampling rate in kHz (raw string value)
    pub samplingrate: Option<String>,
    /// Frame rate in frames per second (raw string value)
    pub framerate: Option<String>,
}

/// Media RSS rating element (`media:rating`)
///
/// Describes the permissible audience for the media content.
/// Commonly uses the MPAA or urn:simple rating schemes.
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct MediaRating {
    /// Rating scheme URI (scheme attribute), e.g. "urn:simple", "urn:mpaa"
    pub scheme: Option<String>,
    /// Rating value, e.g. "adult", "nonadult", "pg-13"
    pub content: String,
}

impl FromAttributes for Link {
    fn from_attributes<'a, I>(attrs: I, max_attr_length: usize) -> Option<Self>
    where
        I: Iterator<Item = quick_xml::events::attributes::Attribute<'a>>,
    {
        let mut href = None;
        let mut rel = None;
        let mut link_type = None;
        let mut title = None;
        let mut hreflang = None;
        let mut length = None;
        let mut thr_count = None;
        let mut thr_updated = None;

        for attr in attrs {
            if attr.value.len() > max_attr_length {
                continue;
            }
            match attr.key.as_ref() {
                b"href" => href = Some(bytes_to_string(&attr.value)),
                b"rel" => rel = Some(bytes_to_string(&attr.value)),
                b"type" => link_type = Some(bytes_to_string(&attr.value)),
                b"title" => title = Some(bytes_to_string(&attr.value)),
                b"hreflang" => hreflang = Some(bytes_to_string(&attr.value)),
                b"length" => length = Some(bytes_to_string(&attr.value)),
                b"thr:count" => {
                    thr_count = bytes_to_string(&attr.value).trim().parse::<u32>().ok();
                }
                b"thr:updated" => {
                    thr_updated = parse_date(bytes_to_string(&attr.value).trim());
                }
                _ => {}
            }
        }

        let rel_str: Option<SmallString> = rel
            .map(std::convert::Into::into)
            .or_else(|| Some("alternate".into()));
        let resolved_type = link_type
            .map(MimeType::new)
            .or_else(|| match rel_str.as_deref() {
                Some("self") => Some(MimeType::new("application/atom+xml")),
                _ => Some(MimeType::new("text/html")),
            });

        href.map(|href| Self {
            href: Url::new(href),
            rel: rel_str,
            link_type: resolved_type,
            title,
            length,
            hreflang: hreflang.map(std::convert::Into::into),
            thr_count,
            thr_updated,
        })
    }
}

impl FromAttributes for Tag {
    fn from_attributes<'a, I>(attrs: I, max_attr_length: usize) -> Option<Self>
    where
        I: Iterator<Item = quick_xml::events::attributes::Attribute<'a>>,
    {
        let mut term = None;
        let mut scheme = None;
        let mut label = None;

        for attr in attrs {
            if attr.value.len() > max_attr_length {
                continue;
            }

            match attr.key.as_ref() {
                b"term" => term = Some(bytes_to_string(&attr.value)),
                b"scheme" | b"domain" => scheme = Some(bytes_to_string(&attr.value)),
                b"label" => label = Some(bytes_to_string(&attr.value)),
                _ => {}
            }
        }

        term.map(|term| Self {
            term: term.into(),
            scheme: scheme.map(std::convert::Into::into),
            label: label.map(std::convert::Into::into),
        })
    }
}

impl FromAttributes for Enclosure {
    fn from_attributes<'a, I>(attrs: I, max_attr_length: usize) -> Option<Self>
    where
        I: Iterator<Item = quick_xml::events::attributes::Attribute<'a>>,
    {
        let mut url = None;
        let mut length = None;
        let mut enclosure_type = None;

        for attr in attrs {
            if attr.value.len() > max_attr_length {
                continue;
            }

            match attr.key.as_ref() {
                b"url" => url = Some(bytes_to_string(&attr.value)),
                b"length" => length = Some(bytes_to_string(&attr.value)),
                b"type" => enclosure_type = Some(bytes_to_string(&attr.value)),
                _ => {}
            }
        }

        url.map(|url| Self {
            url: Url::new(url),
            length,
            enclosure_type: enclosure_type.map(MimeType::new),
            title: None,
            duration: None,
        })
    }
}

impl FromAttributes for MediaThumbnail {
    fn from_attributes<'a, I>(attrs: I, max_attr_length: usize) -> Option<Self>
    where
        I: Iterator<Item = quick_xml::events::attributes::Attribute<'a>>,
    {
        let mut url = None;
        let mut width = None;
        let mut height = None;

        let mut time = None;

        for attr in attrs {
            if attr.value.len() > max_attr_length {
                continue;
            }

            match attr.key.as_ref() {
                b"url" => url = Some(bytes_to_string(&attr.value)),
                b"width" => width = Some(bytes_to_string(&attr.value)),
                b"height" => height = Some(bytes_to_string(&attr.value)),
                b"time" => time = Some(bytes_to_string(&attr.value)),
                _ => {}
            }
        }

        url.map(|url| Self {
            url: Url::new(url),
            width,
            height,
            time,
        })
    }
}

impl FromAttributes for MediaContent {
    fn from_attributes<'a, I>(attrs: I, max_attr_length: usize) -> Option<Self>
    where
        I: Iterator<Item = quick_xml::events::attributes::Attribute<'a>>,
    {
        let mut url = None;
        let mut content_type = None;
        let mut medium = None;
        let mut filesize = None;
        let mut width = None;
        let mut height = None;
        let mut duration = None;
        let mut bitrate = None;
        let mut lang = None;
        let mut channels = None;
        let mut codec = None;
        let mut expression = None;
        let mut isdefault = None;
        let mut samplingrate = None;
        let mut framerate = None;

        for attr in attrs {
            if attr.value.len() > max_attr_length {
                continue;
            }

            match attr.key.as_ref() {
                b"url" => url = Some(bytes_to_string(&attr.value)),
                b"type" => content_type = Some(bytes_to_string(&attr.value)),
                b"medium" => medium = Some(bytes_to_string(&attr.value)),
                b"fileSize" => filesize = Some(bytes_to_string(&attr.value)),
                b"width" => width = Some(bytes_to_string(&attr.value)),
                b"height" => height = Some(bytes_to_string(&attr.value)),
                b"duration" => duration = Some(bytes_to_string(&attr.value)),
                b"bitrate" => bitrate = Some(bytes_to_string(&attr.value)),
                b"lang" => lang = Some(bytes_to_string(&attr.value)),
                b"channels" => channels = Some(bytes_to_string(&attr.value)),
                b"codec" => codec = Some(bytes_to_string(&attr.value)),
                b"expression" => expression = Some(bytes_to_string(&attr.value)),
                b"isDefault" => isdefault = Some(bytes_to_string(&attr.value)),
                b"samplingrate" => samplingrate = Some(bytes_to_string(&attr.value)),
                b"framerate" => framerate = Some(bytes_to_string(&attr.value)),
                _ => {}
            }
        }

        url.map(|url| Self {
            url: Url::new(url),
            content_type: content_type.map(MimeType::new),
            medium,
            filesize,
            width,
            height,
            duration,
            bitrate,
            lang,
            channels,
            codec,
            expression,
            isdefault,
            samplingrate,
            framerate,
        })
    }
}

// ParseFrom implementations for JSON Feed parsing

impl ParseFrom<&Value> for Person {
    /// Parse Person from JSON Feed author object
    ///
    /// JSON Feed format: `{"name": "...", "url": "...", "avatar": "..."}`
    fn parse_from(json: &Value) -> Option<Self> {
        json.as_object().map(|obj| Self {
            name: obj
                .get("name")
                .and_then(Value::as_str)
                .map(std::convert::Into::into),
            email: None, // JSON Feed doesn't have email field
            uri: obj.get("url").and_then(Value::as_str).map(String::from),
            avatar: obj.get("avatar").and_then(Value::as_str).map(String::from),
        })
    }
}

impl ParseFrom<&Value> for Enclosure {
    /// Parse Enclosure from JSON Feed attachment object
    ///
    /// JSON Feed format: `{"url": "...", "mime_type": "...", "size_in_bytes": ...}`
    fn parse_from(json: &Value) -> Option<Self> {
        let obj = json.as_object()?;
        let url = obj.get("url").and_then(Value::as_str)?;
        Some(Self {
            url: Url::new(url),
            length: obj
                .get("size_in_bytes")
                .and_then(Value::as_u64)
                .map(|v| v.to_string()),
            enclosure_type: obj
                .get("mime_type")
                .and_then(Value::as_str)
                .map(MimeType::new),
            title: obj.get("title").and_then(Value::as_str).map(String::from),
            duration: obj
                .get("duration_in_seconds")
                .and_then(Value::as_u64)
                .map(|v| v.to_string()),
        })
    }
}

/// Media RSS credit element (media:credit)
#[derive(Debug, Clone, Default)]
pub struct MediaCredit {
    /// Credit role (e.g., "author", "producer")
    pub role: Option<String>,
    /// Credit scheme URI (default: "urn:ebu")
    pub scheme: Option<String>,
    /// Credit text content (person/entity name)
    pub content: String,
}

/// Media RSS copyright element (media:copyright)
#[derive(Debug, Clone, Default)]
pub struct MediaCopyright {
    /// Copyright URL
    pub url: Option<String>,
}

#[cfg(test)]
mod tests {
    use super::*;
    use serde_json::json;

    #[test]
    fn test_link_default() {
        let link = Link::default();
        assert!(link.href.is_empty());
        assert!(link.rel.is_none());
    }

    #[test]
    fn test_link_builders() {
        let link = Link::alternate("https://example.com");
        assert_eq!(link.href, "https://example.com");
        assert_eq!(link.rel.as_deref(), Some("alternate"));

        let link = Link::self_link("https://example.com/feed", "application/feed+json");
        assert_eq!(link.rel.as_deref(), Some("self"));
        assert_eq!(link.link_type.as_deref(), Some("application/feed+json"));

        let link = Link::enclosure("https://example.com/audio.mp3", Some("audio/mpeg".into()));
        assert_eq!(link.rel.as_deref(), Some("enclosure"));
        assert_eq!(link.link_type.as_deref(), Some("audio/mpeg"));

        let link = Link::related("https://other.com");
        assert_eq!(link.rel.as_deref(), Some("related"));
    }

    #[test]
    fn test_tag_builder() {
        let tag = Tag::new("rust");
        assert_eq!(tag.term, "rust");
        assert!(tag.scheme.is_none());
    }

    #[test]
    fn test_text_construct_builders() {
        let text = TextConstruct::text("Hello");
        assert_eq!(text.value, "Hello");
        assert_eq!(text.content_type, TextType::Text);

        let html = TextConstruct::html("<p>Hello</p>");
        assert_eq!(html.content_type, TextType::Html);

        let with_lang = TextConstruct::text("Hello").with_language("en");
        assert_eq!(with_lang.language.as_deref(), Some("en"));
    }

    #[test]
    fn test_content_builders() {
        let html = Content::html("<p>Content</p>");
        assert_eq!(html.content_type.as_deref(), Some("text/html"));

        let plain = Content::plain("Content");
        assert_eq!(plain.content_type.as_deref(), Some("text/plain"));
    }

    #[test]
    fn test_person_default() {
        let person = Person::default();
        assert!(person.name.is_none());
        assert!(person.email.is_none());
        assert!(person.uri.is_none());
    }

    #[test]
    fn test_person_parse_from_json() {
        let json = json!({"name": "John Doe", "url": "https://example.com"});
        let person = Person::parse_from(&json).unwrap();
        assert_eq!(person.name.as_deref(), Some("John Doe"));
        assert_eq!(person.uri.as_deref(), Some("https://example.com"));
        assert!(person.email.is_none());
    }

    #[test]
    fn test_person_parse_from_empty_json() {
        let json = json!({});
        let person = Person::parse_from(&json).unwrap();
        assert!(person.name.is_none());
    }

    #[test]
    fn test_enclosure_parse_from_json() {
        let json = json!({
            "url": "https://example.com/file.mp3",
            "mime_type": "audio/mpeg",
            "size_in_bytes": 12345
        });
        let enclosure = Enclosure::parse_from(&json).unwrap();
        assert_eq!(enclosure.url, "https://example.com/file.mp3");
        assert_eq!(enclosure.enclosure_type.as_deref(), Some("audio/mpeg"));
        assert_eq!(enclosure.length.as_deref(), Some("12345"));
    }

    #[test]
    fn test_enclosure_parse_from_json_missing_url() {
        let json = json!({"mime_type": "audio/mpeg"});
        assert!(Enclosure::parse_from(&json).is_none());
    }

    #[test]
    fn test_text_type_equality() {
        assert_eq!(TextType::Text, TextType::Text);
        assert_ne!(TextType::Text, TextType::Html);
    }

    // Newtype tests

    #[test]
    fn test_url_new() {
        let url = Url::new("https://example.com");
        assert_eq!(url.as_str(), "https://example.com");
    }

    #[test]
    fn test_url_from_string() {
        let url: Url = String::from("https://example.com").into();
        assert_eq!(url.as_str(), "https://example.com");
    }

    #[test]
    fn test_url_from_str() {
        let url: Url = "https://example.com".into();
        assert_eq!(url.as_str(), "https://example.com");
    }

    #[test]
    fn test_url_deref() {
        let url = Url::new("https://example.com");
        // Deref allows calling str methods directly
        assert_eq!(url.len(), 19);
        assert!(url.starts_with("https://"));
    }

    #[test]
    fn test_url_into_inner() {
        let url = Url::new("https://example.com");
        let inner = url.into_inner();
        assert_eq!(inner, "https://example.com");
    }

    #[test]
    fn test_url_default() {
        let url = Url::default();
        assert_eq!(url.as_str(), "");
    }

    #[test]
    fn test_url_clone() {
        let url1 = Url::new("https://example.com");
        let url2 = url1.clone();
        assert_eq!(url1, url2);
    }

    #[test]
    fn test_mime_type_new() {
        let mime = MimeType::new("text/html");
        assert_eq!(mime.as_str(), "text/html");
    }

    #[test]
    fn test_mime_type_from_string() {
        let mime: MimeType = String::from("application/json").into();
        assert_eq!(mime.as_str(), "application/json");
    }

    #[test]
    fn test_mime_type_from_str() {
        let mime: MimeType = "text/plain".into();
        assert_eq!(mime.as_str(), "text/plain");
    }

    #[test]
    fn test_mime_type_deref() {
        let mime = MimeType::new("text/html");
        assert_eq!(mime.len(), 9);
        assert!(mime.starts_with("text/"));
    }

    #[test]
    fn test_mime_type_default() {
        let mime = MimeType::default();
        assert_eq!(mime.as_str(), "");
    }

    #[test]
    fn test_mime_type_clone() {
        let mime1 = MimeType::new("application/xml");
        let mime2 = mime1.clone();
        assert_eq!(mime1, mime2);
        // Arc cloning is cheap - just increments refcount
    }

    #[test]
    fn test_mime_type_constants() {
        assert_eq!(MimeType::TEXT_HTML, "text/html");
        assert_eq!(MimeType::TEXT_PLAIN, "text/plain");
        assert_eq!(MimeType::APPLICATION_XML, "application/xml");
        assert_eq!(MimeType::APPLICATION_JSON, "application/json");
    }

    #[test]
    fn test_email_new() {
        let email = Email::new("user@example.com");
        assert_eq!(email.as_str(), "user@example.com");
    }

    #[test]
    fn test_email_from_string() {
        let email: Email = String::from("user@example.com").into();
        assert_eq!(email.as_str(), "user@example.com");
    }

    #[test]
    fn test_email_from_str() {
        let email: Email = "user@example.com".into();
        assert_eq!(email.as_str(), "user@example.com");
    }

    #[test]
    fn test_email_deref() {
        let email = Email::new("user@example.com");
        assert_eq!(email.len(), 16);
        assert!(email.contains('@'));
    }

    #[test]
    fn test_email_into_inner() {
        let email = Email::new("user@example.com");
        let inner = email.into_inner();
        assert_eq!(inner, "user@example.com");
    }

    #[test]
    fn test_email_default() {
        let email = Email::default();
        assert_eq!(email.as_str(), "");
    }

    #[test]
    fn test_email_clone() {
        let email1 = Email::new("user@example.com");
        let email2 = email1.clone();
        assert_eq!(email1, email2);
    }
}