sitemap 0.4.1

Sitemap parser (reader) and writer
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
//! Contains structures for working with sitemap.
use crate::Error;
use url::Url;
use url;
use std::convert::From;
use std::convert::Into;
use chrono_utils;
use chrono::DateTime;
use chrono::FixedOffset;
use chrono_utils::parser::parse_w3c_datetime;
use std::fmt;
use std::num;

/// Url entry. Contains url location, modification time,
/// priority, update frequency.
#[derive(Clone,Debug)]
pub struct UrlEntry {
    /// URL of the page.
    pub loc: Location,
    /// The date of last modification of the file.
    pub lastmod: LastMod,
    /// How frequently the page is likely to change.
    pub changefreq: ChangeFreq,
    /// The priority of this URL relative to other URLs on the site.
    pub priority: Priority,
}

impl UrlEntry {
    /// Creates a new empty `UrlEntry`.
    pub fn new() -> UrlEntry {
        UrlEntry {
            loc: Location::None,
            lastmod: LastMod::None,
            changefreq: ChangeFreq::None,
            priority: Priority::None,
        }
    }

    /// Creates builder for `UrlEntry` structure
    pub fn builder() -> UrlEntryBuilder {
        UrlEntryBuilder { url_entry: UrlEntry::new() }
    }
}

/// Builds `UrlEntry` structure
#[derive(Clone,Debug)]
pub struct UrlEntryBuilder {
    url_entry: UrlEntry,
}

impl UrlEntryBuilder {
    /// Defines `loc` tag
    pub fn loc<S: Into<String>>(mut self, url: S) -> UrlEntryBuilder {
        let url = url.into();
        self.url_entry.loc = Location::from(url);
        return self;
    }

    /// Defines `lastmod` tag
    pub fn lastmod(mut self, date: DateTime<FixedOffset>) -> UrlEntryBuilder {
        self.url_entry.lastmod = LastMod::DateTime(date);
        return self;
    }

    /// Defines `changefreq` tag
    pub fn changefreq(mut self, changefreq: ChangeFreq) -> UrlEntryBuilder {
        self.url_entry.changefreq = changefreq;
        return self;
    }

    /// Defines `priority` tag
    pub fn priority(mut self, val: f32) -> UrlEntryBuilder {
        self.url_entry.priority = Priority::Value(val);
        return self;
    }

    /// Builds `UrlEntry` structure
    pub fn build(self) -> Result<UrlEntry, Error> {
        // TODO: add check for at least the name.
        if !self.url_entry.loc.is_url() {
            return Err(Error::Invalid("Required a location in the Url".to_string()));
        }
        if let Priority::Value(val) = self.url_entry.priority {
            if val > 1.0 || val < 0.0 {
                return Err(Error::Invalid("priority should be betwheen 0 and 1".to_string()))
            }
        }
        return Ok(self.url_entry);
    }
}

impl Into<UrlEntry> for UrlEntryBuilder {
    /// Panics when builder is misconfigured.
    fn into(self) -> UrlEntry {
        return self.build().unwrap();
    }
}

impl Into<UrlEntry> for Url {
    /// Notably does not panic
    fn into( self ) -> UrlEntry {
        UrlEntry {
            loc: Location::from(self),
            lastmod: LastMod::None,
            changefreq: ChangeFreq::None,
            priority: Priority::None,
        }
    }
}

impl Into<UrlEntry> for String {
    /// Panics when url is invalid
    fn into(self) -> UrlEntry {
        let location = Location::from(self);
        if let Location::ParseErr(error) = location {
            panic!("Unable to parse location: {}", error);
        }
        UrlEntry {
            loc: location,
            lastmod: LastMod::None,
            changefreq: ChangeFreq::None,
            priority: Priority::None,
        }
    }
}

impl Into<UrlEntry> for &'static str {
    /// Panics when url is invalid
    fn into(self) -> UrlEntry {
        let location: String = self.into();
        return location.into();
    }
}

/// Sitemap entry. Contains url location and modification time.
#[derive(Clone,Debug)]
pub struct SiteMapEntry {
    /// URL of the sitemap.
    pub loc: Location,
    /// The date of last modification of the file.
    pub lastmod: LastMod,
}
impl SiteMapEntry {
    /// Creates a new empty `SiteMapEntry`.
    pub fn new() -> SiteMapEntry {
        SiteMapEntry {
            loc: Location::None,
            lastmod: LastMod::None,
        }
    }

    /// Creates builder for `SiteMapEntry` structure
    pub fn builder() -> SiteMapEntryBuilder {
        SiteMapEntryBuilder { sitemap_entry: SiteMapEntry::new() }
    }
}


/// Builds `SiteMapEntry` structure
#[derive(Debug,Clone)]
pub struct SiteMapEntryBuilder {
    sitemap_entry: SiteMapEntry,
}

impl SiteMapEntryBuilder {
    /// Defines `loc` tag
    pub fn loc<S: Into<String>>(mut self, url: S) -> SiteMapEntryBuilder {
        let url = url.into();
        self.sitemap_entry.loc = Location::from(url);
        return self;
    }

    /// Defines `lastmod` tag
    pub fn lastmod(mut self, date: DateTime<FixedOffset>) -> SiteMapEntryBuilder {
        self.sitemap_entry.lastmod = LastMod::DateTime(date);
        return self;
    }

    /// Builds `SiteMapEntry` structure
    pub fn build(self) -> Result<SiteMapEntry, Error> {
        // TODO: add check for at least the name.
        if let Location::Url(_) = self.sitemap_entry.loc {
            Ok(self.sitemap_entry)
        } else {
            Err(Error::Invalid("Required a location in the sitemap".to_string()))
        }
    }
}

impl Into<SiteMapEntry> for SiteMapEntryBuilder {
    /// Panics when builder is misconfigured.
    fn into(self) -> SiteMapEntry {
        return self.build().unwrap();
    }
}

impl Into<SiteMapEntry> for Url {
    /// Notably does not panic
    fn into( self ) -> SiteMapEntry {
        SiteMapEntry {
            loc: Location::from( self ),
            lastmod: LastMod::None,
        }
    }
}

impl Into<SiteMapEntry> for String {
    /// Panics when url is invalid
    fn into(self) -> SiteMapEntry {
        let location = Location::from(self);
        if let Location::ParseErr(error) = location {
            panic!("Unable to parse location: {}", error);
        }
        SiteMapEntry {
            loc: location,
            lastmod: LastMod::None,
        }
    }
}

impl Into<SiteMapEntry> for &'static str {
    /// Panics when url is invalid
    fn into(self) -> SiteMapEntry {
        let location: String = self.into();
        return location.into();
    }
}

/// Url location.
#[derive(Debug,Clone)]
pub enum Location {
    /// No value.
    None,
    /// Url
    Url(Url),
    /// Url parse error.
    ParseErr(url::ParseError),
}
impl Location {
    /// Returns url if present.
    pub fn get_url(&self) -> Option<Url> {
        match *self {
            Location::Url(ref url) => {
                return Some(url.clone());
            }
            _ => {
                return None;
            }
        }
    }

    /// Checks is location equals url
    pub fn is_url(&self) -> bool {
        return match *self {
            Location::Url(_) => true,
            _ => false,
        }
    }

    /// Checks is location equals none
    pub fn is_none(&self) -> bool {
        return match *self {
            Location::None => true,
            _ => false,
        }
    }

    /// Checks is location contains parse error.
    pub fn is_parse_error(&self) -> bool {
        return match *self {
            Location::ParseErr(_) => true,
            _ => false,
        }
    }
}
impl From<Url> for Location {
    ///Wraps a Url into a Location enum
    fn from( url: Url ) -> Self {
        Location::Url( url )
    }
}

impl From<String> for Location {
    /// Parses Url from string.
    fn from(url: String) -> Self {
        match Url::parse(&url) {
            Ok(url) => {
                return Location::Url(url);
            }
            Err(error) => {
                return Location::ParseErr(error);
            }
        }
    }
}
/// The date of last modification of the resource.
#[derive(Debug,Clone)]
pub enum LastMod {
    /// No value.
    None,
    /// Modification time
    DateTime(DateTime<FixedOffset>),
    /// Parse error
    ParseErr(chrono_utils::parser::error::ParseError),
}
impl LastMod {
    /// Returns modification time if present.
    pub fn get_time(&self) -> Option<DateTime<FixedOffset>> {
        match *self {
            LastMod::DateTime(ref time) => {
                return Some(time.clone());
            }
            _ => {
                return None;
            }
        }
    }
}
impl From<String> for LastMod {
    fn from(time: String) -> Self {
        match parse_w3c_datetime(&time) {
            Ok(time) => {
                return LastMod::DateTime(time);
            }
            Err(error) => {
                return LastMod::ParseErr(error);
            }
        }
    }
}
/// Error parsing URL Priority.
#[derive(PartialEq,Debug,Clone)]
pub struct ChangeFreqParseError {
    /// Error description
    pub description: String,
}
impl ChangeFreqParseError {
    /// Creates new error.
    pub fn new(description: String) -> ChangeFreqParseError {
        ChangeFreqParseError { description: description }
    }
}
impl fmt::Display for ChangeFreqParseError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Not recognized string '{}'", self.description)
    }
}
/// How frequently the page is likely to change.
#[derive(PartialEq,Debug,Clone)]
pub enum ChangeFreq {
    /// No value.
    None,
    /// Document that change each time.
    Always,
    /// Document that change each hour.
    Hourly,
    /// Document that change each day.
    Daily,
    /// Document that change each week.
    Weekly,
    /// Document that change each month.
    Monthly,
    /// Document that change each year.
    Yearly,
    /// Archived URL.
    Never,
    /// Parse error.
    ParseErr(ChangeFreqParseError),
}
impl ChangeFreq {
    pub fn as_str(&self) -> &str {
        match *self {
            ChangeFreq::None => "",
            ChangeFreq::Always => "always",
            ChangeFreq::Hourly => "hourly",
            ChangeFreq::Daily => "daily",
            ChangeFreq::Weekly => "weekly",
            ChangeFreq::Monthly => "monthly",
            ChangeFreq::Yearly => "yearly",
            ChangeFreq::Never => "never",
            ChangeFreq::ParseErr(_) => "",
        }

    }
}
impl From<String> for ChangeFreq {
    fn from(time: String) -> Self {
        let lowercase_time = time.to_lowercase();
        match lowercase_time.as_ref() {
            "always" => {
                return ChangeFreq::Always;
            }
            "hourly" => {
                return ChangeFreq::Hourly;
            }
            "daily" => {
                return ChangeFreq::Daily;
            }
            "weekly" => {
                return ChangeFreq::Weekly;
            }
            "monthly" => {
                return ChangeFreq::Monthly;
            }
            "yearly" => {
                return ChangeFreq::Yearly;
            }
            "never" => {
                return ChangeFreq::Never;
            }
            _ => {
                return ChangeFreq::ParseErr(ChangeFreqParseError::new(time));
            }
        }
    }
}

/// The priority of this URL relative to other URLs on the site.
#[derive(Debug,Clone)]
pub enum Priority {
    /// No value.
    None,
    /// Priority
    Value(f32),
    /// Parse error.
    ParseErr(num::ParseFloatError),
    /// Error: priority lesser than zero.
    ErrValueLesserZero(f32),
    /// Error: priority greater than one.
    ErrValueGreaterOne(f32),
}
impl Priority {
    /// Returns priority if present.
    pub fn get_priority(&self) -> Option<f32> {
        match *self {
            Priority::Value(value) => {
                return Some(value);
            }
            _ => {
                return None;
            }
        }
    }
}
impl From<String> for Priority {
    fn from(priority: String) -> Self {
        let value = priority.parse::<f32>();
        match value {
            Ok(value) => {
                if value > 1.0 {
                    return Priority::ErrValueGreaterOne(value);
                } else if value < 0.0 {
                    return Priority::ErrValueLesserZero(value);
                } else {
                    return Priority::Value(value);
                }
            }
            Err(error) => {
                return Priority::ParseErr(error);
            }
        }
    }
}