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
|
// yt - A fully featured command line YouTube client
//
// Copyright (C) 2024 Benedikt Peetz <benedikt.peetz@b-peetz.de>
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This file is part of Yt.
//
// You should have received a copy of the License along with this program.
// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
use yt_dlp::wrapper::info_json::Comment;
#[derive(Debug, Clone)]
pub struct CommentExt {
pub value: Comment,
pub replies: Vec<CommentExt>,
}
#[derive(Debug, Default)]
pub struct Comments {
pub(super) vec: Vec<CommentExt>,
}
impl Comments {
pub fn new() -> Self {
Self::default()
}
pub fn push(&mut self, value: CommentExt) {
self.vec.push(value);
}
pub fn get_mut(&mut self, key: &str) -> Option<&mut CommentExt> {
self.vec.iter_mut().filter(|c| c.value.id.id == key).last()
}
pub fn insert(&mut self, key: &str, value: CommentExt) {
let parent = self
.vec
.iter_mut()
.filter(|c| c.value.id.id == key)
.last()
.expect("One of these should exist");
parent.push_reply(value);
}
}
impl CommentExt {
pub fn push_reply(&mut self, value: CommentExt) {
self.replies.push(value)
}
pub fn get_mut_reply(&mut self, key: &str) -> Option<&mut CommentExt> {
self.replies
.iter_mut()
.filter(|c| c.value.id.id == key)
.last()
}
}
impl From<Comment> for CommentExt {
fn from(value: Comment) -> Self {
Self {
replies: vec![],
value,
}
}
}
|