IqGenerator.java

  1package eu.siacs.conversations.generator;
  2
  3
  4import android.os.Bundle;
  5import android.util.Base64;
  6import android.util.Log;
  7
  8import org.whispersystems.libsignal.IdentityKey;
  9import org.whispersystems.libsignal.ecc.ECPublicKey;
 10import org.whispersystems.libsignal.state.PreKeyRecord;
 11import org.whispersystems.libsignal.state.SignedPreKeyRecord;
 12
 13import java.nio.ByteBuffer;
 14import java.security.cert.CertificateEncodingException;
 15import java.security.cert.X509Certificate;
 16import java.util.ArrayList;
 17import java.util.List;
 18import java.util.Locale;
 19import java.util.Set;
 20import java.util.TimeZone;
 21import java.util.UUID;
 22
 23import eu.siacs.conversations.Config;
 24import eu.siacs.conversations.R;
 25import eu.siacs.conversations.crypto.axolotl.AxolotlService;
 26import eu.siacs.conversations.entities.Account;
 27import eu.siacs.conversations.entities.Bookmark;
 28import eu.siacs.conversations.entities.Conversation;
 29import eu.siacs.conversations.entities.DownloadableFile;
 30import eu.siacs.conversations.services.MessageArchiveService;
 31import eu.siacs.conversations.services.XmppConnectionService;
 32import eu.siacs.conversations.xml.Element;
 33import eu.siacs.conversations.xml.Namespace;
 34import eu.siacs.conversations.xmpp.Jid;
 35import eu.siacs.conversations.xmpp.forms.Data;
 36import eu.siacs.conversations.xmpp.pep.Avatar;
 37import eu.siacs.conversations.xmpp.stanzas.IqPacket;
 38
 39public class IqGenerator extends AbstractGenerator {
 40
 41    public IqGenerator(final XmppConnectionService service) {
 42        super(service);
 43    }
 44
 45    public IqPacket discoResponse(final Account account, final IqPacket request) {
 46        final IqPacket packet = new IqPacket(IqPacket.TYPE.RESULT);
 47        packet.setId(request.getId());
 48        packet.setTo(request.getFrom());
 49        final Element query = packet.addChild("query", "http://jabber.org/protocol/disco#info");
 50        query.setAttribute("node", request.query().getAttribute("node"));
 51        final Element identity = query.addChild("identity");
 52        identity.setAttribute("category", "client");
 53        identity.setAttribute("type", getIdentityType());
 54        identity.setAttribute("name", getIdentityName());
 55        for (final String feature : getFeatures(account)) {
 56            query.addChild("feature").setAttribute("var", feature);
 57        }
 58        return packet;
 59    }
 60
 61    public IqPacket versionResponse(final IqPacket request) {
 62        final IqPacket packet = request.generateResponse(IqPacket.TYPE.RESULT);
 63        Element query = packet.query("jabber:iq:version");
 64        query.addChild("name").setContent(mXmppConnectionService.getString(R.string.app_name));
 65        query.addChild("version").setContent(getIdentityVersion());
 66        if ("chromium".equals(android.os.Build.BRAND)) {
 67            query.addChild("os").setContent("Chrome OS");
 68        } else {
 69            query.addChild("os").setContent("Android");
 70        }
 71        return packet;
 72    }
 73
 74    public IqPacket entityTimeResponse(IqPacket request) {
 75        final IqPacket packet = request.generateResponse(IqPacket.TYPE.RESULT);
 76        Element time = packet.addChild("time", "urn:xmpp:time");
 77        final long now = System.currentTimeMillis();
 78        time.addChild("utc").setContent(getTimestamp(now));
 79        TimeZone ourTimezone = TimeZone.getDefault();
 80        long offsetSeconds = ourTimezone.getOffset(now) / 1000;
 81        long offsetMinutes = Math.abs((offsetSeconds % 3600) / 60);
 82        long offsetHours = offsetSeconds / 3600;
 83        String hours;
 84        if (offsetHours < 0) {
 85            hours = String.format(Locale.US, "%03d", offsetHours);
 86        } else {
 87            hours = String.format(Locale.US, "%02d", offsetHours);
 88        }
 89        String minutes = String.format(Locale.US, "%02d", offsetMinutes);
 90        time.addChild("tzo").setContent(hours + ":" + minutes);
 91        return packet;
 92    }
 93
 94    public IqPacket purgeOfflineMessages() {
 95        final IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
 96        packet.addChild("offline", Namespace.FLEXIBLE_OFFLINE_MESSAGE_RETRIEVAL).addChild("purge");
 97        return packet;
 98    }
 99
100    protected IqPacket publish(final String node, final Element item, final Bundle options) {
101        final IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
102        final Element pubsub = packet.addChild("pubsub", Namespace.PUBSUB);
103        final Element publish = pubsub.addChild("publish");
104        publish.setAttribute("node", node);
105        publish.addChild(item);
106        if (options != null) {
107            final Element publishOptions = pubsub.addChild("publish-options");
108            publishOptions.addChild(Data.create(Namespace.PUBSUB_PUBLISH_OPTIONS, options));
109        }
110        return packet;
111    }
112
113    protected IqPacket publish(final String node, final Element item) {
114        return publish(node, item, null);
115    }
116
117    private IqPacket retrieve(String node, Element item) {
118        final IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
119        final Element pubsub = packet.addChild("pubsub", Namespace.PUBSUB);
120        final Element items = pubsub.addChild("items");
121        items.setAttribute("node", node);
122        if (item != null) {
123            items.addChild(item);
124        }
125        return packet;
126    }
127
128    public IqPacket retrieveBookmarks() {
129        return retrieve(Namespace.BOOKMARKS2, null);
130    }
131
132    public IqPacket publishNick(String nick) {
133        final Element item = new Element("item");
134        item.setAttribute("id", "current");
135        item.addChild("nick", Namespace.NICK).setContent(nick);
136        return publish(Namespace.NICK, item);
137    }
138
139    public IqPacket deleteNode(final String node) {
140        final IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
141        final Element pubsub = packet.addChild("pubsub", Namespace.PUBSUB_OWNER);
142        pubsub.addChild("delete").setAttribute("node", node);
143        return packet;
144    }
145
146    public IqPacket deleteItem(final String node, final String id) {
147        IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
148        final Element pubsub = packet.addChild("pubsub", Namespace.PUBSUB);
149        final Element retract = pubsub.addChild("retract");
150        retract.setAttribute("node", node);
151        retract.setAttribute("notify","true");
152        retract.addChild("item").setAttribute("id", id);
153        return packet;
154    }
155
156    public IqPacket publishAvatar(Avatar avatar, Bundle options) {
157        final Element item = new Element("item");
158        item.setAttribute("id", avatar.sha1sum);
159        final Element data = item.addChild("data", Namespace.AVATAR_DATA);
160        data.setContent(avatar.image);
161        return publish(Namespace.AVATAR_DATA, item, options);
162    }
163
164    public IqPacket publishElement(final String namespace, final Element element, String id, final Bundle options) {
165        final Element item = new Element("item");
166        item.setAttribute("id", id);
167        item.addChild(element);
168        return publish(namespace, item, options);
169    }
170
171    public IqPacket publishAvatarMetadata(final Avatar avatar, final Bundle options) {
172        final Element item = new Element("item");
173        item.setAttribute("id", avatar.sha1sum);
174        final Element metadata = item
175                .addChild("metadata", Namespace.AVATAR_METADATA);
176        final Element info = metadata.addChild("info");
177        info.setAttribute("bytes", avatar.size);
178        info.setAttribute("id", avatar.sha1sum);
179        info.setAttribute("height", avatar.height);
180        info.setAttribute("width", avatar.height);
181        info.setAttribute("type", avatar.type);
182        return publish(Namespace.AVATAR_METADATA, item, options);
183    }
184
185    public IqPacket retrievePepAvatar(final Avatar avatar) {
186        final Element item = new Element("item");
187        item.setAttribute("id", avatar.sha1sum);
188        final IqPacket packet = retrieve(Namespace.AVATAR_DATA, item);
189        packet.setTo(avatar.owner);
190        return packet;
191    }
192
193    public IqPacket retrieveVcardAvatar(final Avatar avatar) {
194        final IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
195        packet.setTo(avatar.owner);
196        packet.addChild("vCard", "vcard-temp");
197        return packet;
198    }
199
200    public IqPacket retrieveVcardAvatar(final Jid to) {
201        final IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
202        packet.setTo(to);
203        packet.addChild("vCard", "vcard-temp");
204        return packet;
205    }
206
207    public IqPacket retrieveAvatarMetaData(final Jid to) {
208        final IqPacket packet = retrieve("urn:xmpp:avatar:metadata", null);
209        if (to != null) {
210            packet.setTo(to);
211        }
212        return packet;
213    }
214
215    public IqPacket retrieveDeviceIds(final Jid to) {
216        final IqPacket packet = retrieve(AxolotlService.PEP_DEVICE_LIST, null);
217        if (to != null) {
218            packet.setTo(to);
219        }
220        return packet;
221    }
222
223    public IqPacket retrieveBundlesForDevice(final Jid to, final int deviceid) {
224        final IqPacket packet = retrieve(AxolotlService.PEP_BUNDLES + ":" + deviceid, null);
225        packet.setTo(to);
226        return packet;
227    }
228
229    public IqPacket retrieveVerificationForDevice(final Jid to, final int deviceid) {
230        final IqPacket packet = retrieve(AxolotlService.PEP_VERIFICATION + ":" + deviceid, null);
231        packet.setTo(to);
232        return packet;
233    }
234
235    public IqPacket publishDeviceIds(final Set<Integer> ids, final Bundle publishOptions) {
236        final Element item = new Element("item");
237        item.setAttribute("id", "current");
238        final Element list = item.addChild("list", AxolotlService.PEP_PREFIX);
239        for (Integer id : ids) {
240            final Element device = new Element("device");
241            device.setAttribute("id", id);
242            list.addChild(device);
243        }
244        return publish(AxolotlService.PEP_DEVICE_LIST, item, publishOptions);
245    }
246
247    public Element publishBookmarkItem(final Bookmark bookmark) {
248        final String name = bookmark.getBookmarkName();
249        final String nick = bookmark.getNick();
250        final String password = bookmark.getPassword();
251        final boolean autojoin = bookmark.autojoin();
252        final Element conference = new Element("conference", Namespace.BOOKMARKS2);
253        if (name != null) {
254            conference.setAttribute("name", name);
255        }
256        if (nick != null) {
257            conference.addChild("nick").setContent(nick);
258        }
259        if (password != null) {
260            conference.addChild("password").setContent(password);
261        }
262        conference.setAttribute("autojoin",String.valueOf(autojoin));
263        conference.addChild(bookmark.getExtensions());
264        return conference;
265    }
266
267    public IqPacket publishBundles(final SignedPreKeyRecord signedPreKeyRecord, final IdentityKey identityKey,
268                                   final Set<PreKeyRecord> preKeyRecords, final int deviceId, Bundle publishOptions) {
269        final Element item = new Element("item");
270        item.setAttribute("id", "current");
271        final Element bundle = item.addChild("bundle", AxolotlService.PEP_PREFIX);
272        final Element signedPreKeyPublic = bundle.addChild("signedPreKeyPublic");
273        signedPreKeyPublic.setAttribute("signedPreKeyId", signedPreKeyRecord.getId());
274        ECPublicKey publicKey = signedPreKeyRecord.getKeyPair().getPublicKey();
275        signedPreKeyPublic.setContent(Base64.encodeToString(publicKey.serialize(), Base64.NO_WRAP));
276        final Element signedPreKeySignature = bundle.addChild("signedPreKeySignature");
277        signedPreKeySignature.setContent(Base64.encodeToString(signedPreKeyRecord.getSignature(), Base64.NO_WRAP));
278        final Element identityKeyElement = bundle.addChild("identityKey");
279        identityKeyElement.setContent(Base64.encodeToString(identityKey.serialize(), Base64.NO_WRAP));
280
281        final Element prekeys = bundle.addChild("prekeys", AxolotlService.PEP_PREFIX);
282        for (PreKeyRecord preKeyRecord : preKeyRecords) {
283            final Element prekey = prekeys.addChild("preKeyPublic");
284            prekey.setAttribute("preKeyId", preKeyRecord.getId());
285            prekey.setContent(Base64.encodeToString(preKeyRecord.getKeyPair().getPublicKey().serialize(), Base64.NO_WRAP));
286        }
287
288        return publish(AxolotlService.PEP_BUNDLES + ":" + deviceId, item, publishOptions);
289    }
290
291    public IqPacket publishVerification(byte[] signature, X509Certificate[] certificates, final int deviceId) {
292        final Element item = new Element("item");
293        item.setAttribute("id", "current");
294        final Element verification = item.addChild("verification", AxolotlService.PEP_PREFIX);
295        final Element chain = verification.addChild("chain");
296        for (int i = 0; i < certificates.length; ++i) {
297            try {
298                Element certificate = chain.addChild("certificate");
299                certificate.setContent(Base64.encodeToString(certificates[i].getEncoded(), Base64.NO_WRAP));
300                certificate.setAttribute("index", i);
301            } catch (CertificateEncodingException e) {
302                Log.d(Config.LOGTAG, "could not encode certificate");
303            }
304        }
305        verification.addChild("signature").setContent(Base64.encodeToString(signature, Base64.NO_WRAP));
306        return publish(AxolotlService.PEP_VERIFICATION + ":" + deviceId, item);
307    }
308
309    public IqPacket queryMessageArchiveManagement(final MessageArchiveService.Query mam) {
310        final IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
311        final Element query = packet.query(mam.version.namespace);
312        query.setAttribute("queryid", mam.getQueryId());
313        final Data data = new Data();
314        data.setFormType(mam.version.namespace);
315        if (mam.muc()) {
316            packet.setTo(mam.getWith());
317        } else if (mam.getWith() != null) {
318            data.put("with", mam.getWith().toEscapedString());
319        }
320        final long start = mam.getStart();
321        final long end = mam.getEnd();
322        if (start != 0) {
323            data.put("start", getTimestamp(start));
324        }
325        if (end != 0) {
326            data.put("end", getTimestamp(end));
327        }
328        data.submit();
329        query.addChild(data);
330        Element set = query.addChild("set", "http://jabber.org/protocol/rsm");
331        if (mam.getPagingOrder() == MessageArchiveService.PagingOrder.REVERSE) {
332            set.addChild("before").setContent(mam.getReference());
333        } else if (mam.getReference() != null) {
334            set.addChild("after").setContent(mam.getReference());
335        }
336        set.addChild("max").setContent(String.valueOf(Config.PAGE_SIZE));
337        return packet;
338    }
339
340    public IqPacket generateGetBlockList() {
341        final IqPacket iq = new IqPacket(IqPacket.TYPE.GET);
342        iq.addChild("blocklist", Namespace.BLOCKING);
343
344        return iq;
345    }
346
347    public IqPacket generateSetBlockRequest(final Jid jid, boolean reportSpam) {
348        final IqPacket iq = new IqPacket(IqPacket.TYPE.SET);
349        final Element block = iq.addChild("block", Namespace.BLOCKING);
350        final Element item = block.addChild("item").setAttribute("jid", jid);
351        if (reportSpam) {
352            item.addChild("report", "urn:xmpp:reporting:0").addChild("spam");
353        }
354        Log.d(Config.LOGTAG, iq.toString());
355        return iq;
356    }
357
358    public IqPacket generateSetUnblockRequest(final Jid jid) {
359        final IqPacket iq = new IqPacket(IqPacket.TYPE.SET);
360        final Element block = iq.addChild("unblock", Namespace.BLOCKING);
361        block.addChild("item").setAttribute("jid", jid);
362        return iq;
363    }
364
365    public IqPacket generateSetPassword(final Account account, final String newPassword) {
366        final IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
367        packet.setTo(account.getDomain());
368        final Element query = packet.addChild("query", Namespace.REGISTER);
369        final Jid jid = account.getJid();
370        query.addChild("username").setContent(jid.getLocal());
371        query.addChild("password").setContent(newPassword);
372        return packet;
373    }
374
375    public IqPacket changeAffiliation(Conversation conference, Jid jid, String affiliation) {
376        List<Jid> jids = new ArrayList<>();
377        jids.add(jid);
378        return changeAffiliation(conference, jids, affiliation);
379    }
380
381    public IqPacket changeAffiliation(Conversation conference, List<Jid> jids, String affiliation) {
382        IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
383        packet.setTo(conference.getJid().asBareJid());
384        packet.setFrom(conference.getAccount().getJid());
385        Element query = packet.query("http://jabber.org/protocol/muc#admin");
386        for (Jid jid : jids) {
387            Element item = query.addChild("item");
388            item.setAttribute("jid", jid);
389            item.setAttribute("affiliation", affiliation);
390        }
391        return packet;
392    }
393
394    public IqPacket changeRole(Conversation conference, String nick, String role) {
395        IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
396        packet.setTo(conference.getJid().asBareJid());
397        packet.setFrom(conference.getAccount().getJid());
398        Element item = packet.query("http://jabber.org/protocol/muc#admin").addChild("item");
399        item.setAttribute("nick", nick);
400        item.setAttribute("role", role);
401        return packet;
402    }
403
404    public IqPacket requestHttpUploadSlot(Jid host, DownloadableFile file, String mime) {
405        IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
406        packet.setTo(host);
407        Element request = packet.addChild("request", Namespace.HTTP_UPLOAD);
408        request.setAttribute("filename", convertFilename(file.getName()));
409        request.setAttribute("size", file.getExpectedSize());
410        request.setAttribute("content-type", mime);
411        return packet;
412    }
413
414    public IqPacket requestHttpUploadLegacySlot(Jid host, DownloadableFile file, String mime) {
415        IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
416        packet.setTo(host);
417        Element request = packet.addChild("request", Namespace.HTTP_UPLOAD_LEGACY);
418        request.addChild("filename").setContent(convertFilename(file.getName()));
419        request.addChild("size").setContent(String.valueOf(file.getExpectedSize()));
420        request.addChild("content-type").setContent(mime);
421        return packet;
422    }
423
424    private static String convertFilename(String name) {
425        int pos = name.indexOf('.');
426        if (pos != -1) {
427            try {
428                UUID uuid = UUID.fromString(name.substring(0, pos));
429                ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
430                bb.putLong(uuid.getMostSignificantBits());
431                bb.putLong(uuid.getLeastSignificantBits());
432                return Base64.encodeToString(bb.array(), Base64.URL_SAFE | Base64.NO_PADDING | Base64.NO_WRAP) + name.substring(pos);
433            } catch (Exception e) {
434                return name;
435            }
436        } else {
437            return name;
438        }
439    }
440
441    public IqPacket generateCreateAccountWithCaptcha(Account account, String id, Data data) {
442        final IqPacket register = new IqPacket(IqPacket.TYPE.SET);
443        register.setFrom(account.getJid().asBareJid());
444        register.setTo(account.getDomain());
445        register.setId(id);
446        Element query = register.query(Namespace.REGISTER);
447        if (data != null) {
448            query.addChild(data);
449        }
450        return register;
451    }
452
453    public IqPacket pushTokenToAppServer(Jid appServer, String token, String deviceId) {
454        return pushTokenToAppServer(appServer, token, deviceId, null);
455    }
456
457    public IqPacket pushTokenToAppServer(Jid appServer, String token, String deviceId, Jid muc) {
458        final IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
459        packet.setTo(appServer);
460        final Element command = packet.addChild("command", Namespace.COMMANDS);
461        command.setAttribute("node", "register-push-fcm");
462        command.setAttribute("action", "execute");
463        final Data data = new Data();
464        data.put("token", token);
465        data.put("android-id", deviceId);
466        if (muc != null) {
467            data.put("muc", muc.toEscapedString());
468        }
469        data.submit();
470        command.addChild(data);
471        return packet;
472    }
473
474    public IqPacket unregisterChannelOnAppServer(Jid appServer, String deviceId, String channel) {
475        final IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
476        packet.setTo(appServer);
477        final Element command = packet.addChild("command", Namespace.COMMANDS);
478        command.setAttribute("node", "unregister-push-fcm");
479        command.setAttribute("action", "execute");
480        final Data data = new Data();
481        data.put("channel", channel);
482        data.put("android-id", deviceId);
483        data.submit();
484        command.addChild(data);
485        return packet;
486    }
487
488    public IqPacket enablePush(final Jid jid, final String node, final String secret) {
489        IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
490        Element enable = packet.addChild("enable", Namespace.PUSH);
491        enable.setAttribute("jid", jid);
492        enable.setAttribute("node", node);
493        if (secret != null) {
494            Data data = new Data();
495            data.setFormType(Namespace.PUBSUB_PUBLISH_OPTIONS);
496            data.put("secret", secret);
497            data.submit();
498            enable.addChild(data);
499        }
500        return packet;
501    }
502
503    public IqPacket disablePush(final Jid jid, final String node) {
504        IqPacket packet = new IqPacket(IqPacket.TYPE.SET);
505        Element disable = packet.addChild("disable", Namespace.PUSH);
506        disable.setAttribute("jid", jid);
507        disable.setAttribute("node", node);
508        return packet;
509    }
510
511    public IqPacket queryAffiliation(Conversation conversation, String affiliation) {
512        IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
513        packet.setTo(conversation.getJid().asBareJid());
514        packet.query("http://jabber.org/protocol/muc#admin").addChild("item").setAttribute("affiliation", affiliation);
515        return packet;
516    }
517
518    public static Bundle defaultGroupChatConfiguration() {
519        Bundle options = new Bundle();
520        options.putString("muc#roomconfig_persistentroom", "1");
521        options.putString("muc#roomconfig_membersonly", "1");
522        options.putString("muc#roomconfig_publicroom", "0");
523        options.putString("muc#roomconfig_whois", "anyone");
524        options.putString("muc#roomconfig_changesubject", "0");
525        options.putString("muc#roomconfig_allowinvites", "0");
526        options.putString("muc#roomconfig_enablearchiving", "1"); //prosody
527        options.putString("mam", "1"); //ejabberd community
528        options.putString("muc#roomconfig_mam", "1"); //ejabberd saas
529        return options;
530    }
531
532    public static Bundle defaultChannelConfiguration() {
533        Bundle options = new Bundle();
534        options.putString("muc#roomconfig_persistentroom", "1");
535        options.putString("muc#roomconfig_membersonly", "0");
536        options.putString("muc#roomconfig_publicroom", "1");
537        options.putString("muc#roomconfig_whois", "moderators");
538        options.putString("muc#roomconfig_changesubject", "0");
539        options.putString("muc#roomconfig_enablearchiving", "1"); //prosody
540        options.putString("mam", "1"); //ejabberd community
541        options.putString("muc#roomconfig_mam", "1"); //ejabberd saas
542        return options;
543    }
544
545    public IqPacket requestPubsubConfiguration(Jid jid, String node) {
546        return pubsubConfiguration(jid, node, null);
547    }
548
549    public IqPacket publishPubsubConfiguration(Jid jid, String node, Data data) {
550        return pubsubConfiguration(jid, node, data);
551    }
552
553    private IqPacket pubsubConfiguration(Jid jid, String node, Data data) {
554        IqPacket packet = new IqPacket(data == null ? IqPacket.TYPE.GET : IqPacket.TYPE.SET);
555        packet.setTo(jid);
556        Element pubsub = packet.addChild("pubsub", "http://jabber.org/protocol/pubsub#owner");
557        Element configure = pubsub.addChild("configure").setAttribute("node", node);
558        if (data != null) {
559            configure.addChild(data);
560        }
561        return packet;
562    }
563
564    public IqPacket queryDiscoItems(Jid jid) {
565        IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
566        packet.setTo(jid);
567        packet.addChild("query",Namespace.DISCO_ITEMS);
568        return packet;
569    }
570
571    public IqPacket queryDiscoInfo(Jid jid) {
572        IqPacket packet = new IqPacket(IqPacket.TYPE.GET);
573        packet.setTo(jid);
574        packet.addChild("query",Namespace.DISCO_INFO);
575        return packet;
576    }
577}