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
extern crate quick_xml;
mod pls;
mod m3u;
mod asx;
mod xspf;
use std::collections::HashSet;
use std::error::Error;
pub fn decode(content: &str) -> Result<Vec<String>, Box<dyn Error>> {
let mut set = HashSet::new();
let content_small = content.to_lowercase();
match content_small.find("<playlist"){
Some(_)=>{
let xspf_items = xspf::decode(content)?;
for item in xspf_items {
if item.url != "" {
set.insert(item.url);
}
if item.identifier != "" {
set.insert(item.identifier);
}
}
}
None =>{
match content_small.find("<asx"){
Some(_)=>{
let pls_items = asx::decode(content)?;
for item in pls_items {
set.insert(item.url);
}
}
None =>{
match content_small.find("[playlist]"){
Some(_) => {
let pls_items = pls::decode(content);
for item in pls_items {
set.insert(item.url);
}
}
None => {
let m3u_items = m3u::decode(content);
for item in m3u_items {
set.insert(item.url);
}
}
}
}
}
}
}
let v: Vec<String> = set.into_iter().collect();
Ok(v)
}
pub fn is_content_hls(content: &str) -> bool {
if content.contains("EXT-X-STREAM-INF"){
return true;
}
if content.contains("EXT-X-TARGETDURATION"){
return true;
}
return false;
}
#[cfg(test)]
mod tests {
#[test]
fn xspf() {
let s = r#"<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<trackList>
<track>
<title>Title</title>
<identifier>Identifier</identifier>
<location>http://this.is.an.example</location>
</track>
<track>
<title>Title2</title>
<identifier>Identifier2</identifier>
<location>http://this.is.an.example2</location>
</track>
</trackList>
</playlist>"#;
let items = crate::xspf::decode(s);
assert!(items.is_ok());
let items = items.unwrap();
assert!(items.len() == 2);
assert!(items[0].url == "http://this.is.an.example");
assert!(items[0].title == "Title");
assert!(items[0].identifier == "Identifier");
assert!(items[1].url == "http://this.is.an.example2");
assert!(items[1].title == "Title2");
assert!(items[1].identifier == "Identifier2");
}
#[test]
fn asx() {
let s = r#"<asx version="3.0">
<title>Test-Liste</title>
<entry>
<title>title1</title>
<ref href="ref1"/>
</entry>
<entry>
<title>title2</title>
<ref href="ref2"/>
</entry>
</asx>"#;
let items = crate::asx::decode(s);
assert!(items.is_ok());
let items = items.unwrap();
assert!(items.len() == 2);
assert!(items[0].url == "ref1");
assert!(items[0].title == "title1");
assert!(items[1].url == "ref2");
assert!(items[1].title == "title2");
}
#[test]
fn m3u() {
let items = crate::m3u::decode("http://this.is.an.example");
assert!(items.len() == 1);
assert!(items[0].url == "http://this.is.an.example");
}
#[test]
fn pls() {
let items = crate::pls::decode("[playlist]
File1=http://this.is.an.example
Title1=mytitle
");
assert!(items.len() == 1);
assert!(items[0].url == "http://this.is.an.example");
assert!(items[0].title == "mytitle");
}
#[test]
fn pls2() {
let items = crate::pls::decode("[playlist]
File1=http://this.is.an.example
Title=mytitle
");
assert!(items.len() == 1);
assert!(items[0].url == "http://this.is.an.example");
assert!(items[0].title == "mytitle");
}
#[test]
fn pls3() {
let items = crate::pls::decode("[Playlist]
File1=http://this.is.an.example
Title=mytitle
");
assert!(items.len() == 1);
assert!(items[0].url == "http://this.is.an.example");
assert!(items[0].title == "mytitle");
}
}