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
//
// imag - the personal information management suite for the commandline
// Copyright (C) 2015-2019 Matthias Beyer <mail@beyermatthias.de> and contributors
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; version
// 2.1 of the License.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//

use toml_query::insert::TomlValueInsertExt;
use toml_query::read::TomlValueReadExt;
use toml_query::read::TomlValueReadTypeExt;
use toml::Value;

use libimagstore::store::Entry;
use libimagentrylink::internal::InternalLinker;
use libimagerror::errors::ErrorMsg as EM;

use failure::Fallible as Result;
use failure::ResultExt;
use failure::Error;
use failure::err_msg;
use store::CategoryStore;

pub trait EntryCategory {

    fn set_category(&mut self, s: &str) -> Result<()>;

    fn set_category_checked(&mut self, register: &CategoryStore, s: &str) -> Result<()>;

    fn get_category(&self) -> Result<String>;

    fn has_category(&self) -> Result<bool>;

    fn remove_category(&mut self) -> Result<()>;

}

impl EntryCategory for Entry {

    fn set_category(&mut self, s: &str) -> Result<()> {
        trace!("Setting category '{}' UNCHECKED", s);
        self.get_header_mut()
            .insert(&String::from("category.value"), Value::String(s.to_string()))
            .map_err(Error::from)
            .context(EM::EntryHeaderWriteError)
            .map_err(Error::from)
            .map(|_| ())
    }

    /// Check whether a category exists before setting it.
    ///
    /// This function should be used by default over EntryCategory::set_category()!
    fn set_category_checked(&mut self, register: &CategoryStore, s: &str) -> Result<()> {
        trace!("Setting category '{}' checked", s);
        let mut category = register
            .get_category_by_name(s)?
            .ok_or_else(|| Error::from(err_msg("Category does not exist")))?;

        let _ = self.set_category(s)?;
        let _ = self.add_internal_link(&mut category)?;

        Ok(())
    }

    fn get_category(&self) -> Result<String> {
        trace!("Getting category from '{}'", self.get_location());
        self.get_header()
            .read_string("category.value")?
            .ok_or_else(|| Error::from(err_msg("Category name missing")))
    }

    fn has_category(&self) -> Result<bool> {
        trace!("Has category? '{}'", self.get_location());
        self.get_header()
            .read("category.value")
            .map_err(Error::from)
            .context(EM::EntryHeaderReadError)
            .map_err(Error::from)
            .map(|x| x.is_some())
    }

    /// Remove the category setting
    ///
    /// # Warning
    ///
    /// This does _only_ remove the category setting in the header. This does _not_ remove the
    /// internal link to the category entry, nor does it remove the category from the store.
    fn remove_category(&mut self) -> Result<()> {
        use toml_query::delete::TomlValueDeleteExt;

        self.get_header_mut()
            .delete("category.value")
            .map_err(Error::from)
            .context(EM::EntryHeaderWriteError)
            .map_err(Error::from)
            .map(|_| ())
    }

}