aboutsummaryrefslogtreecommitdiff
path: root/logic/src/node.rs
blob: 820116f9569ff4ac43ad0068db7625d0704a7c58 (plain)
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
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2025 metamuffin <metamuffin.org>
*/
use crate::{DATABASE, filter_sort::filter_and_sort_nodes, session::Session};
use anyhow::{Result, anyhow};
use jellycommon::{
    Node, NodeID, NodeKind, Visibility,
    api::{ApiNodeResponse, NodeFilterSort, SortOrder, SortProperty},
    user::{NodeUserData, WatchedState},
};
use jellydb::Database;
use std::{cmp::Reverse, collections::BTreeMap, sync::Arc};

pub fn get_node(
    session: &Session,
    id: NodeID,
    children: bool,
    parents: bool,
    filter: NodeFilterSort,
) -> Result<ApiNodeResponse> {
    let (node, udata) = DATABASE.get_node_with_userdata(id, &session)?;

    let mut children = if children {
        DATABASE
            .get_node_children(id)?
            .into_iter()
            .map(|c| DATABASE.get_node_with_userdata(c, &session))
            .collect::<anyhow::Result<Vec<_>>>()?
    } else {
        Vec::new()
    };

    let mut parents = if parents {
        node.parents
            .iter()
            .map(|pid| DATABASE.get_node_with_userdata(*pid, &session))
            .collect::<anyhow::Result<Vec<_>>>()?
    } else {
        Vec::new()
    };

    let mut similar = get_similar_media(&session, &node)?;

    similar.retain(|(n, _)| n.visibility >= Visibility::Reduced);
    children.retain(|(n, _)| n.visibility >= Visibility::Reduced);
    parents.retain(|(n, _)| n.visibility >= Visibility::Reduced);

    filter_and_sort_nodes(
        &filter,
        match node.kind {
            NodeKind::Channel => (SortProperty::ReleaseDate, SortOrder::Descending),
            NodeKind::Season | NodeKind::Show => (SortProperty::Index, SortOrder::Ascending),
            _ => (SortProperty::Title, SortOrder::Ascending),
        },
        &mut children,
    );

    Ok(ApiNodeResponse {
        children,
        parents,
        node,
        userdata: udata,
    })
}

pub fn get_similar_media(session: &Session, node: &Node) -> Result<Vec<(Arc<Node>, NodeUserData)>> {
    let this_id = NodeID::from_slug(&node.slug);
    let mut ranking = BTreeMap::<NodeID, usize>::new();
    for tag in &node.tags {
        let nodes = DATABASE.get_tag_nodes(tag)?;
        let weight = 1_000_000 / nodes.len();
        for n in nodes {
            if n != this_id {
                *ranking.entry(n).or_default() += weight;
            }
        }
    }
    let mut ranking = ranking.into_iter().collect::<Vec<_>>();
    ranking.sort_by_key(|(_, k)| Reverse(*k));
    ranking
        .into_iter()
        .take(32)
        .map(|(pid, _)| DATABASE.get_node_with_userdata(pid, session))
        .collect::<anyhow::Result<Vec<_>>>()
}

pub trait DatabaseNodeUserDataExt {
    fn get_node_with_userdata(
        &self,
        id: NodeID,
        session: &Session,
    ) -> Result<(Arc<Node>, NodeUserData)>;
}
impl DatabaseNodeUserDataExt for Database {
    fn get_node_with_userdata(
        &self,
        id: NodeID,
        session: &Session,
    ) -> Result<(Arc<Node>, NodeUserData)> {
        Ok((
            self.get_node(id)?.ok_or(anyhow!("node does not exist"))?,
            self.get_node_udata(id, &session.user.name)?
                .unwrap_or_default(),
        ))
    }
}

pub fn get_nodes_modified_since(_session: &Session, since: u64) -> Result<Vec<NodeID>> {
    let mut nodes = DATABASE.get_nodes_modified_since(since)?;
    nodes.retain(|id| {
        DATABASE.get_node(*id).is_ok_and(|n| {
            n.as_ref()
                .is_some_and(|n| n.visibility >= Visibility::Reduced)
        })
    });
    Ok(nodes)
}

pub fn get_node_by_eid(_session: &Session, platform: &str, eid: &str) -> Result<Option<NodeID>> {
    DATABASE.get_node_external_id(platform, eid)
}
pub fn node_id_to_slug(_session: &Session, id: NodeID) -> Result<String> {
    Ok(DATABASE
        .get_node(id)?
        .ok_or(anyhow!("node does not exist"))?
        .slug
        .to_owned())
}

pub fn update_node_userdata_watched(
    session: &Session,
    node: NodeID,
    state: WatchedState,
) -> Result<()> {
    // TODO perm
    DATABASE.update_node_udata(node, &session.user.name, |udata| {
        udata.watched = state;
        Ok(())
    })
}
pub fn update_node_userdata_watched_progress(
    session: &Session,
    node: NodeID,
    time: f64,
) -> Result<()> {
    // TODO perm
    DATABASE.update_node_udata(node, &session.user.name, |udata| {
        udata.watched = match udata.watched {
            WatchedState::None | WatchedState::Pending | WatchedState::Progress(_) => {
                WatchedState::Progress(time)
            }
            WatchedState::Watched => WatchedState::Watched,
        };
        Ok(())
    })
}
pub fn update_node_userdata_rating(session: &Session, node: NodeID, rating: i32) -> Result<()> {
    // TODO perm
    DATABASE.update_node_udata(node, &session.user.name, |udata| {
        udata.rating = rating;
        Ok(())
    })
}