about summary refs log tree commit diff stats
path: root/src/xmpp/vcard.h
blob: 9ec04c8ce6b55bad8a90c596e2908a9e204b224c (plain) (blame)
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
/*
 * vcard.h
 * vim: expandtab:ts=4:sts=4:sw=4
 *
 * Copyright (C) 2022 Marouane L. <techmetx11@disroot.org>
 *
 * This file is part of Profanity.
 *
 * Profanity 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.
 *
 * Profanity 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 Profanity.  If not, see <https://www.gnu.org/licenses/>.
 *
 * In addition, as a special exception, the copyright holders give permission to
 * link the code of portions of this program with the OpenSSL library under
 * certain conditions as described in each individual source file, and
 * distribute linked combinations including the two.
 *
 * You must obey the GNU General Public License in all respects for all of the
 * code used other than OpenSSL. If you modify file(s) with this exception, you
 * may extend this exception to your version of the file(s), but you are not
 * obligated to do so. If you do not wish to do so, delete this exception
 * statement from your version. If you delete this exception statement from all
 * source files in the program, then also delete it here.
 *
 */

#ifndef XMPP_VCARD_H
#define XMPP_VCARD_H

#include <glib.h>

// 17 bits are currently used, out of (a possible) 32 bits
typedef enum {
    VCARD_HOME = 1,
    VCARD_WORK = 2,
    VCARD_POSTAL = 4,
    VCARD_PARCEL = 8,
    VCARD_INTL = 16,
    VCARD_PREF = 32,
    VCARD_TEL_VOICE = 64,
    VCARD_TEL_FAX = 128,
    VCARD_TEL_PAGER = 256,
    VCARD_TEL_MSG = 512,
    VCARD_TEL_CELL = 1024,
    VCARD_TEL_VIDEO = 2048,
    VCARD_TEL_BBS = 4096,
    VCARD_TEL_MODEM = 8192,
    VCARD_TEL_ISDN = 16384,
    VCARD_TEL_PCS = 32768,
    VCARD_EMAIL_X400 = 65536,
    VCARD_EMAIL_INTERNET = 131072,
    VCARD_DOM = 262144
} vcard_element_options_t;

typedef struct _vcard_name
{
    char *family, *given, *middle, *prefix, *suffix;
} vcard_name_t;

typedef struct _vcard_element_photo
{
    union {
        struct
        {
            guchar* data;
            char* type;
            gsize length;
        };
        char* extval;
    };
    gboolean external;
} vcard_element_photo_t;

typedef struct _vcard_element_address
{
    char *pobox, *extaddr, *street, *locality, *region, *pcode, *country;

    // Options used:
    // VCARD_HOME
    // VCARD_WORK
    // VCARD_POSTAL
    // VCARD_PARCEL
    // VCARD_DOM
    // VCARD_INTL
    // VCARD_PREF
    vcard_element_options_t options;
} vcard_element_address_t;

typedef struct _vcard_element_telephone
{
    char* number;

    // Options used:
    // VCARD_HOME
    // VCARD_WORK
    // VCARD_TEL_VOICE
    // VCARD_TEL_FAX
    // VCARD_TEL_PAGER
    // VCARD_TEL_MSG
    // VCARD_TEL_CELL
    // VCARD_TEL_VIDEO
    // VCARD_TEL_BBS
    // VCARD_TEL_MODEM
    // VCARD_TEL_ISDN
    // VCARD_TEL_PCS
    // VCARD_PREF
    vcard_element_options_t options;
} vcard_element_telephone_t;

typedef struct _vcard_element_email
{
    char* userid;

    // Options used:
    // VCARD_HOME
    // VCARD_WORK
    // VCARD_EMAIL_X400
    // VCARD_PREF
    vcard_element_options_t options;
} vcard_element_email_t;

typedef enum _vcard_element_type {
    VCARD_NICKNAME,
    VCARD_PHOTO,
    VCARD_BIRTHDAY,
    VCARD_ADDRESS,
    VCARD_TELEPHONE,
    VCARD_EMAIL,
    VCARD_JID,
    VCARD_TITLE,
    VCARD_ROLE,
    VCARD_NOTE,
    VCARD_URL
} vcard_element_type;

typedef struct _vcard_element
{
    vcard_element_type type;

    union {
        char *nickname, *jid, *title, *role, *note, *url;
        vcard_element_photo_t photo;
        GDateTime* birthday;
        vcard_element_address_t address;
        vcard_element_telephone_t telephone;
        vcard_element_email_t email;
    };
} vcard_element_t;

typedef struct _vcard
{
    // These elements are only meant to appear once (per DTD)
    vcard_name_t name;
    char* fullname;

    gboolean modified;

    // GQueue of vcard_element*
    GQueue* elements;
} vCard;

#endif