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
|
// zotapi - Rust wrapper for the Zot API as implemented by Hubzilla
// Copyright (C) 2018 Harald Eilertsen <haraldei@anduin.net>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use crate::{client::Client, error::Error};
use serde::Deserialize;
use std::collections::HashMap;
use std::iter::FromIterator;
/// A struct for storing a key value pair with a category in
/// relation to a contact. Typically used to store permissions
/// a given contact has on a given channel.
#[derive(Debug, Deserialize)]
pub struct ABConfig {
/// Database ID for this entry
pub id: u32,
/// Channel
pub chan: u32,
/// Unique identifier for the related contact
pub xchan: String,
/// Category
pub cat: String,
/// Key
pub k: String,
/// Value
pub v: String,
}
/// Fetch ABConfig for all contacts
pub fn fetch(client: &Client) -> Result<Vec<ABConfig>, Error> {
let payload = client.fetch_stream("abconfig", &())?;
Ok(serde_json::from_str(&payload)?)
}
#[derive(Default)]
pub struct ABConfigRequest {
abook_id: u32,
}
impl ABConfigRequest {
pub fn fetch(&self, client: &Client) -> Result<Vec<ABConfig>, Error> {
let data: HashMap<&str, String> = HashMap::from_iter(vec![("abook_id", self.abook_id.to_string())]);
let body = client.fetch_stream("abconfig", &data)?;
Ok(serde_json::from_str(&body)?)
}
}
/// Fetch ABConfig for a given contact
///
/// `abook` is the abook id of the given contact
pub fn with_abook_id(abook: u32) -> ABConfigRequest {
ABConfigRequest { abook_id: abook }
}
|