Return all rooms or private chat when caling get without arguments

This commit is contained in:
JC Brand 2016-06-24 10:54:39 +02:00
parent be122af3ed
commit 01f576e505
3 changed files with 22 additions and 8 deletions

View File

@ -572,6 +572,8 @@ You may also provide the fullname. If not present, we use the jid as fullname:
The "chats" grouping
--------------------
Note, for MUC chat rooms, you need to use the "rooms" grouping instead.
get
~~~
@ -653,12 +655,10 @@ get
Returns an object representing a multi user chat box (room).
It takes 3 parameters:
* the room JID
* the room JID (if not specified, all rooms will be returned).
* the user's nickname (if not specified, the node part of the user's JID will be used).
* boolean, indicating whether the room should be created if not found (default: `false`)
The last two parameters are optional.
.. code-block:: javascript
var nick = 'dread-pirate-roberts';

View File

@ -128,8 +128,15 @@
},
'get': function (jids) {
if (typeof jids === "undefined") {
converse.log("chats.get: You need to provide at least one JID", "error");
return null;
var result = [];
converse.chatboxes.each(function (chatbox) {
// FIXME: Leaky abstraction from MUC. We need to add a
// base type for chat boxes, and check for that.
if (chatbox.get('type') !== 'chatroom') {
result.push(converse.wrappedChatBox(chatbox));
}
});
return result;
} else if (typeof jids === "string") {
return converse.wrappedChatBox(converse.chatboxes.getChatBox(jids, true));
}

View File

@ -1432,13 +1432,20 @@
return _.map(jids, _.partial(_transform, _, nick, fetcher));
},
'get': function (jids, nick, create) {
if (typeof jids === "undefined") {
var result = [];
converse.chatboxes.each(function (chatbox) {
if (chatbox.get('type') === 'chatroom') {
result.push(converse.wrappedChatBox(chatbox));
}
});
return result;
}
var fetcher = _.partial(converse.chatboxviews.getChatBox.bind(converse.chatboxviews), _, create);
if (!nick) {
nick = Strophe.getNodeFromJid(converse.bare_jid);
}
if (typeof jids === "undefined") {
throw new TypeError("rooms.get: You need to provide at least one JID");
} else if (typeof jids === "string") {
if (typeof jids === "string") {
return _transform(jids, nick, fetcher);
}
return _.map(jids, _.partial(_transform, _, nick, fetcher));