summaryrefslogtreecommitdiffstats
path: root/melib/src/addressbook.rs
blob: 8a79041b72b65b2692192e1fa772dc50f0dfb6f5 (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
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
/*
 * meli - addressbook module
 *
 * Copyright 2019 Manos Pitsidianakis
 *
 * This file is part of meli.
 *
 * meli 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.
 *
 * meli 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 meli. If not, see <http://www.gnu.org/licenses/>.
 */
use chrono::{DateTime, Local};
use fnv::FnvHashMap;
use uuid::Uuid;

use std::ops::Deref;

pub type CardId = Uuid;

#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
pub struct AddressBook {
    display_name: String,
    created: DateTime<Local>,
    last_edited: DateTime<Local>,
    cards: FnvHashMap<CardId, Card>,
}

#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
pub struct Card {
    id: CardId,
    title: String,
    name: String,
    additionalname: String,
    name_prefix: String,
    name_suffix: String,
    //address
    birthday: Option<DateTime<Local>>,
    email: String,
    url: String,
    key: String,

    color: u8,
    last_edited: DateTime<Local>,
    extra_properties: FnvHashMap<String, String>,
}

impl AddressBook {
    pub fn new(display_name: String) -> AddressBook {
        AddressBook {
            display_name,
            created: Local::now(),
            last_edited: Local::now(),
            cards: FnvHashMap::default(),
        }
    }
    pub fn add_card(&mut self, card: Card) {
        self.cards.insert(card.id, card);
    }
    pub fn remove_card(&mut self, card_id: CardId) {
        self.cards.remove(&card_id);
    }
    pub fn card_exists(&self, card_id: CardId) -> bool {
        self.cards.contains_key(&card_id)
    }
    pub fn search(&self, term: &str) -> Vec<String> {
        self.cards
            .values()
            .filter(|c| c.email.contains(term))
            .map(|c| c.email.clone())
            .collect()
    }
}

impl Deref for AddressBook {
    type Target = FnvHashMap<CardId, Card>;

    fn deref(&self) -> &FnvHashMap<CardId, Card> {
        &self.cards
    }
}

impl Card {
    pub fn new() -> Card {
        Card {
            id: Uuid::new_v4(),
            title: String::new(),
            name: String::new(),
            additionalname: String::new(),
            name_prefix: String::new(),
            name_suffix: String::new(),
            //address
            birthday: None,
            email: String::new(),
            url: String::new(),
            key: String::new(),

            last_edited: Local::now(),
            extra_properties: FnvHashMap::default(),
            color: 0,
        }
    }

    pub fn id(&self) -> &CardId {
        &self.id
    }

    pub fn title(&self) -> &str {
        self.title.as_str()
    }
    pub fn name(&self) -> &str {
        self.name.as_str()
    }
    pub fn additionalname(&self) -> &str {
        self.additionalname.as_str()
    }
    pub fn name_prefix(&self) -> &str {
        self.name_prefix.as_str()
    }
    pub fn name_suffix(&self) -> &str {
        self.name_suffix.as_str()
    }
    pub fn email(&self) -> &str {
        self.email.as_str()
    }
    pub fn url(&self) -> &str {
        self.url.as_str()
    }
    pub fn key(&self) -> &str {
        self.key.as_str()
    }
    pub fn last_edited(&self) -> String {
        self.last_edited.to_rfc2822()
    }

    pub fn set_id(&mut self, new: Uuid) {
        self.id = new;
    }
    pub fn set_title(&mut self, new: String) {
        self.title = new;
    }
    pub fn set_name(&mut self, new: String) {
        self.name = new;
    }
    pub fn set_additionalname(&mut self, new: String) {
        self.additionalname = new;
    }
    pub fn set_name_prefix(&mut self, new: String) {
        self.name_prefix = new;
    }
    pub fn set_name_suffix(&mut self, new: String) {
        self.name_suffix = new;
    }
    pub fn set_email(&mut self, new: String) {
        self.email = new;
    }
    pub fn set_url(&mut self, new: String) {
        self.url = new;
    }
    pub fn set_key(&mut self, new: String) {
        self.key = new;
    }

    pub fn set_extra_property(&mut self, key: &str, value: String) {
        self.extra_properties.insert(key.to_string(), value);
    }
    pub fn extra_property(&self, key: &str) -> Option<&str> {
        self.extra_properties.get(key).map(|v| v.as_str())
    }
}

impl From<FnvHashMap<String, String>> for Card {
    fn from(mut map: FnvHashMap<String, String>) -> Card {
        let mut card = Card::new();
        if let Some(val) = map.remove("Title") {
            card.title = val;
        }
        if let Some(val) = map.remove("Name") {
            card.name = val;
        }
        if let Some(val) = map.remove("Additional Name") {
            card.additionalname = val;
        }
        if let Some(val) = map.remove("Name Prefix") {
            card.name_prefix = val;
        }
        if let Some(val) = map.remove("Name Suffix") {
            card.name_suffix = val;
        }

        if let Some(val) = map.remove("E-mail") {
            card.email = val;
        }
        if let Some(val) = map.remove("url") {
            card.url = val;
        }
        if let Some(val) = map.remove("key") {
            card.key = val;
        }
        card.extra_properties = map;
        card
    }
}

impl Default for Card {
    fn default() -> Self {
        Self::new()
    }
}