forked from enesser/vCards-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
338 lines (290 loc) · 8.14 KB
/
index.js
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
/********************************************************************************
vCards-js, Eric J Nesser, November 2014
********************************************************************************/
/*jslint node: true */
'use strict';
/**
* Represents a contact that can be imported into Outlook, iOS, Mac OS, Android devices, and more
*/
var vCard = (function () {
/**
* Get photo object for storing photos in vCards
*/
function getPhoto() {
return {
url: '',
mediaType: '',
base64: false,
/**
* Attach a photo from a URL
* @param {string} url URL where photo can be found
* @param {string} mediaType Media type of photo (JPEG, PNG, GIF)
*/
attachFromUrl: function(url, mediaType) {
this.url = url;
this.mediaType = mediaType;
this.base64 = false;
},
/**
* Embed a photo from a file using base-64 encoding (not implemented yet)
* @param {string} filename
*/
embedFromFile: function(fileLocation) {
var fs = require('fs');
var path = require('path');
this.mediaType = path.extname(fileLocation).toUpperCase().replace(/\./g, "");
var imgData = fs.readFileSync(fileLocation);
this.url = imgData.toString('base64');
this.base64 = true;
},
/**
* Embed a photo from a base-64 string
* @param {string} base64String
*/
embedFromString: function(base64String, mediaType) {
this.mediaType = mediaType;
this.url = base64String;
this.base64 = true;
}
};
}
/**
* Get a mailing address to attach to a vCard.
*/
function getMailingAddress() {
return {
/**
* Represents the actual text that should be put on the mailing label when delivering a physical package
* @type {String}
*/
label: '',
/**
* Street address
* @type {String}
*/
street: '',
/**
* City
* @type {String}
*/
city: '',
/**
* State or province
* @type {String}
*/
stateProvince: '',
/**
* Postal code
* @type {String}
*/
postalCode: '',
/**
* Country or region
* @type {String}
*/
countryRegion: ''
};
}
/**
* Get social media URLs
* @return {object} Social media URL hash group
*/
function getSocialUrls() {
return {
'facebook': '',
'linkedIn': '',
'twitter': '',
'flickr': ''
};
}
/********************************************************************************
* Public interface for vCard
********************************************************************************/
return {
/**
* Specifies a value that represents a persistent, globally unique identifier associated with the vCard
* @type {String}
*/
uid: '',
/**
* Date of birth
* @type {Datetime}
*/
birthday: '',
/**
* Cell phone number
* @type {String}
*/
cellPhone: '',
/**
* Other cell phone number or pager
* @type {String}
*/
pagerPhone: '',
/**
* The address for private electronic mail communication
* @type {String}
*/
email: '',
/**
* The address for work-related electronic mail communication
* @type {String}
*/
workEmail: '',
/**
* First name
* @type {String}
*/
firstName: '',
/**
* Formatted name string associated with the vCard object (will automatically populate if not set)
* @type {String}
*/
formattedName: '',
/**
* Gender.
* @type {String} Must be M or F for Male or Female
*/
gender: '',
/**
* Home mailing address
* @type {object}
*/
homeAddress: getMailingAddress(),
/**
* Home phone
* @type {String}
*/
homePhone: '',
/**
* Home facsimile
* @type {String}
*/
homeFax: '',
/**
* Last name
* @type {String}
*/
lastName: '',
/**
* Logo
* @type {object}
*/
logo: getPhoto(),
/**
* Middle name
* @type {String}
*/
middleName: '',
/**
* Prefix for individual's name
* @type {String}
*/
namePrefix: '',
/**
* Suffix for individual's name
* @type {String}
*/
nameSuffix: '',
/**
* Nickname of individual
* @type {String}
*/
nickname: '',
/**
* Specifies supplemental information or a comment that is associated with the vCard
* @type {String}
*/
note: '',
/**
* The name and optionally the unit(s) of the organization associated with the vCard object
* @type {String}
*/
organization: '',
/**
* Individual's photo
* @type {object}
*/
photo: getPhoto(),
/**
* The role, occupation, or business category of the vCard object within an organization
* @type {String}
*/
role: '',
/**
* Social URLs attached to the vCard object (ex: Facebook, Twitter, LinkedIn)
* @type {String}
*/
socialUrls: getSocialUrls(),
/**
* A URL that can be used to get the latest version of this vCard
* @type {String}
*/
source: '',
/**
* Specifies the job title, functional position or function of the individual within an organization
* @type {String}
*/
title: '',
/**
* URL pointing to a website that represents the person in some way
* @type {String}
*/
url: '',
/**
* URL pointing to a website that represents the person's work in some way
* @type {String}
*/
workUrl: '',
/**
* Work mailing address
* @type {object}
*/
workAddress: getMailingAddress(),
/**
* Work phone
* @type {String}
*/
workPhone: '',
/**
* Work facsimile
* @type {String}
*/
workFax: '',
/**
* vCard version
* @type {String}
*/
version: '3.0',
/**
* Get major version of the vCard format
* @return {integer}
*/
getMajorVersion: function() {
var majorVersionString = this.version ? this.version.split('.')[0] : '4';
if (!isNaN(majorVersionString)) {
return parseInt(majorVersionString);
}
return 4;
},
/**
* Get formatted vCard
* @return {String} Formatted vCard in VCF format
*/
getFormattedString: function() {
var vCardFormatter = require('./lib/vCardFormatter');
return vCardFormatter.getFormattedString(this);
},
/**
* Save formatted vCard to file
* @param {String} filename
*/
saveToFile: function(filename) {
var vCardFormatter = require('./lib/vCardFormatter');
var contents = vCardFormatter.getFormattedString(this);
var fs = require('fs');
fs.writeFileSync(filename, contents, { encoding: 'utf8' });
}
};
});
module.exports = vCard;