-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
66 lines (57 loc) · 1.45 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
'use strict'
const xml = require('@xmpp/xml')
const NS = 'vcard-temp'
function parse({children}) {
return children.reduce((dict, c) => {
dict[c.name] =
c.children && typeof c.children[0] === 'string' ? c.text() : parse(c)
return dict
}, {})
}
function build(dict, parent) {
return (parent || xml('vCard', {xmlns: NS})).append(
Object.entries(dict).map(([key, val]) => {
return typeof val === 'object' ? build(val, xml(key)) : xml(key, {}, val)
})
)
}
class VcardPlugin {
constructor({iqCaller}) {
this.iqCaller = iqCaller
}
/**
* Request the vcard of a user. If no jid is provided the vcard for
* the current user is returned.
*
* @param {string|undefined} jid Jabber id whose vcard we want
* @returns {Promise<object>} vcard instance
*/
get(jid) {
return this.iqCaller
.request(
xml('iq', {type: 'get', to: jid}, xml('vCard', {xmlns: NS}, jid))
)
.then(r => parse(r).vCard)
}
/**
* Change the user's vcard
*
* @param {object} vCard Vcard data to store
* @returns {Promise<void>} Completion promise
*/
set(vCard) {
return this.iqCaller
.request(xml('iq', {type: 'set'}, build(vCard)))
.then(() => undefined)
}
}
/**
* Register a vcard plugin.
*
* @param {Client} client XMPP client instance
* @returns {VcardPlugin} Vcard plugin instance
*/
function setupVcard(client) {
return new VcardPlugin(client)
}
module.exports = setupVcard