/* * Copyright (C) 2022 Niels De Graef * * 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 2 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 . */ using Folks; public class Contacts.EmailAddressesChunk : BinChunk { public override string property_name { get { return "email-addresses"; } } construct { if (persona != null) { return_if_fail (persona is EmailDetails); unowned var email_details = (EmailDetails) persona; foreach (var email_field in email_details.email_addresses) { var email = new EmailAddress.from_field_details (email_field); add_child (email); } } emptiness_check (); } protected override BinChunkChild create_empty_child () { return new EmailAddress (); } public override async void save_to_persona () throws GLib.Error requires (this.persona is EmailDetails) { var afds = (Gee.Set) get_abstract_field_details (); yield ((EmailDetails) this.persona).change_email_addresses (afds); } } public class Contacts.EmailAddress : BinChunkChild { public string raw_address { get { return this._raw_address; } set { change_string_prop ("raw-address", ref this._raw_address, value); } } private string _raw_address = ""; public override bool is_empty { get { return this.raw_address.strip () == ""; } } public override string icon_name { get { return "mail-unread-symbolic"; } } public EmailAddress () { this.parameters = new Gee.HashMultiMap (); this.parameters["type"] = "PERSONAL"; } public EmailAddress.from_field_details (EmailFieldDetails email_field) { this.raw_address = email_field.value; this.parameters = email_field.parameters; } /** * Returns the TypeDescriptor that describes the type of the email address * (for example personal, work, ...) */ public TypeDescriptor get_email_address_type () { return TypeSet.email.lookup_by_parameters (this.parameters); } public override AbstractFieldDetails? create_afd () { if (this.is_empty) return null; return new EmailFieldDetails (this.raw_address, this.parameters); } public string get_mailto_uri () { return "mailto:" + Uri.escape_string (this.raw_address, "@" , false); } }