Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
0c6ccf67
Commit
0c6ccf67
authored
Jun 23, 2012
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add chat.js and chatui.js (split up from collective.xmpp.chat.js).
parent
f2709915
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
647 additions
and
0 deletions
+647
-0
chat.js
chat.js
+190
-0
chatui.js
chatui.js
+457
-0
No files found.
chat.js
0 → 100644
View file @
0c6ccf67
var
helpers
=
(
function
(
helpers
)
{
helpers
.
oc
=
function
(
a
)
{
// Thanks to Jonathan Snook: http://snook.ca
var
o
=
{};
for
(
var
i
=
0
;
i
<
a
.
length
;
i
++
)
{
o
[
a
[
i
]]
=
''
;
}
return
o
;
};
helpers
.
hash
=
function
(
str
)
{
// FIXME
if
(
str
==
'
online-users-container
'
)
{
return
str
;
}
var
shaobj
=
new
jsSHA
(
str
);
return
shaobj
.
getHash
(
"
HEX
"
);
};
return
helpers
;
})(
helpers
||
{});
var
xmppchat
=
(
function
(
jarnxmpp
,
$
,
console
)
{
var
ob
=
jarnxmpp
;
ob
.
Collections
=
{};
ob
.
Messages
=
jarnxmpp
.
Messages
||
{};
ob
.
Presence
=
jarnxmpp
.
Presence
||
{};
ob
.
ChatPartners
=
(
function
()
{
/* A mapping of bare JIDs to resources, to keep track of
* how many resources we have per chat partner.
*/
var
storage
=
{};
var
methods
=
{};
methods
.
add
=
function
(
bare_jid
,
resource
)
{
if
(
Object
.
prototype
.
hasOwnProperty
.
call
(
storage
,
bare_jid
))
{
if
(
!
(
resource
in
helpers
.
oc
(
storage
[
bare_jid
])))
{
storage
[
bare_jid
].
push
(
resource
);
}
}
else
{
storage
[
bare_jid
]
=
[
resource
];
}
};
methods
.
remove
=
function
(
bare_jid
,
resource
)
{
if
(
Object
.
prototype
.
hasOwnProperty
.
call
(
storage
,
bare_jid
))
{
if
(
!
(
resource
in
helpers
.
oc
(
storage
[
bare_jid
])))
{
var
idx
=
storage
[
bare_jid
].
indexOf
(
resource
);
if
(
idx
!==
undefined
)
{
storage
[
bare_jid
].
splice
(
idx
,
1
);
}
}
}
};
return
methods
;
})();
ob
.
Messages
.
sendMessage
=
function
(
recipient
,
text
,
callback
)
{
// TODO: Look in ChatPartners to see what resources we have for the recipient.
// if we have one resource, we sent to only that resources, if we have multiple
// we send to the bare jid.
var
message
;
$
.
getJSON
(
portal_url
+
'
/content-transform?
'
,
{
text
:
text
},
function
(
data
)
{
message
=
$msg
({
to
:
recipient
,
type
:
'
chat
'
}).
c
(
'
body
'
).
t
(
data
.
text
);
xmppchat
.
connection
.
send
(
message
);
callback
();
});
};
ob
.
Messages
.
messageReceived
=
function
(
message
)
{
var
jid
=
$
(
message
).
attr
(
'
from
'
),
bare_jid
=
Strophe
.
getBareJidFromJid
(
jid
),
resource
=
Strophe
.
getResourceFromJid
(
jid
),
delayed
=
$
(
message
).
find
(
'
delay
'
).
length
>
0
;
ob
.
ChatPartners
.
add
(
bare_jid
,
resource
);
var
body
=
$
(
message
).
children
(
'
body
'
).
text
();
if
(
body
===
""
)
{
// TODO:
return
true
;
// This is a typing notification, we do not handle it here...
}
var
xhtml_body
=
$
(
message
).
find
(
'
html > body
'
).
contents
(),
event
=
jQuery
.
Event
(
'
jarnxmpp.message
'
);
event
.
from
=
jid
;
event
.
delayed
=
delayed
;
if
(
xhtml_body
.
length
>
0
)
{
event
.
mtype
=
'
xhtml
'
;
event
.
body
=
xhtml_body
.
html
();
}
else
{
event
.
body
=
body
;
event
.
mtype
=
'
text
'
;
}
$
(
document
).
trigger
(
event
);
return
true
;
};
ob
.
Collections
.
handleError
=
function
(
response
)
{
console
.
log
(
response
);
};
ob
.
Collections
.
handleCollectionRetrieval
=
function
(
response
)
{
// Get the last collection.
return
false
;
};
ob
.
Collections
.
retrieveCollections
=
function
()
{
/*
* FIXME: XEP-0136 specifies 'urn:xmpp:archive' but the mod_archive_odbc
* add-on for ejabberd wants the URL below. This might break for other
* Jabber servers.
*/
var
uri
=
'
http://www.xmpp.org/extensions/xep-0136.html#ns
'
;
var
iq
=
$iq
({
'
type
'
:
'
get
'
})
.
c
(
'
list
'
,
{
'
start
'
:
'
1469-07-21T02:00:00Z
'
,
'
xmlns
'
:
uri
})
.
c
(
'
set
'
,
{
'
xmlns
'
:
'
http://jabber.org/protocol/rsm
'
})
.
c
(
'
max
'
)
.
t
(
'
30
'
);
xmppchat
.
connection
.
sendIQ
(
iq
,
this
.
handleCollectionRetrieval
,
this
.
handleError
);
};
ob
.
Presence
.
sendPresence
=
function
(
type
)
{
if
(
type
===
undefined
)
{
type
=
xmppchat
.
Storage
.
get
(
xmppchat
.
username
+
'
-xmpp-status
'
)
||
'
online
'
;
}
xmppchat
.
connection
.
send
(
$pres
({
'
type
'
:
type
}));
};
ob
.
Presence
.
presenceReceived
=
function
(
presence
)
{
var
jid
=
$
(
presence
).
attr
(
'
from
'
),
bare_jid
=
Strophe
.
getBareJidFromJid
(
jid
),
resource
=
Strophe
.
getResourceFromJid
(
jid
),
ptype
=
$
(
presence
).
attr
(
'
type
'
),
status
=
''
;
if
(
ptype
===
'
subscribe
'
)
{
// User wants to subscribe to us. Always approve and
// ask to subscribe to him
jarnxmpp
.
connection
.
send
(
$pres
({
to
:
jid
,
type
:
'
subscribed
'
}));
jarnxmpp
.
connection
.
send
(
$pres
({
to
:
jid
,
type
:
'
subscribe
'
}));
}
else
if
(
ptype
!==
'
error
'
)
{
// Presence has changed
if
(
ptype
===
'
unavailable
'
)
{
status
=
'
unavailable
'
;
}
else
if
(
ptype
===
'
offline
'
)
{
status
=
'
offline
'
;
}
else
if
(
ptype
===
'
busy
'
)
{
status
=
'
busy
'
;
}
else
if
(
ptype
===
'
away
'
)
{
status
=
'
away
'
;
}
else
{
status
=
(
$
(
presence
).
find
(
'
show
'
).
text
()
===
''
)
?
'
online
'
:
'
away
'
;
}
if
((
status
!==
'
offline
'
)
&&
(
status
!==
'
unavilable
'
))
{
xmppchat
.
ChatPartners
.
add
(
bare_jid
,
resource
);
}
else
{
xmppchat
.
ChatPartners
.
remove
(
bare_jid
,
resource
);
}
$
(
document
).
trigger
(
'
jarnxmpp.presence
'
,
[
jid
,
status
,
presence
]);
}
return
true
;
};
ob
.
Taskbuffer
=
(
function
(
$
)
{
buffer
=
{};
buffer
.
tasks
=
[];
buffer
.
deferred
=
$
.
when
();
buffer
.
handleTasks
=
function
()
{
var
task
;
// If the current deferred task is resolved and there are more tasks
if
(
buffer
.
deferred
.
isResolved
()
&&
buffer
.
tasks
.
length
>
0
)
{
// Get the next task in the queue and set the new deferred.
task
=
buffer
.
tasks
.
shift
();
buffer
.
deferred
=
$
.
when
(
task
.
method
.
apply
(
task
.
that
,
task
.
parameters
));
if
(
buffer
.
tasks
.
length
>
0
)
{
buffer
.
deferred
.
done
(
buffer
.
handleTasks
);
}
}
};
return
buffer
;
})(
jQuery
);
return
ob
;
})(
jarnxmpp
||
{},
jQuery
,
console
||
{
log
:
function
(){}});
chatui.js
0 → 100644
View file @
0c6ccf67
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment