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
12d6785d
Commit
12d6785d
authored
Oct 12, 2015
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #472 Cannot read property 'splitOnce' of undefined
parent
7d1fc391
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
92 additions
and
3 deletions
+92
-3
converse.js
converse.js
+27
-2
docs/CHANGES.rst
docs/CHANGES.rst
+2
-1
spec/chatroom.js
spec/chatroom.js
+63
-0
No files found.
converse.js
View file @
12d6785d
...
...
@@ -2896,6 +2896,21 @@
return
this
.
setAffiliation
(
room
,
jid
,
'
admin
'
,
reason
,
handler_cb
,
error_cb
);
},
validateRoleChangeCommand
:
function
(
command
,
args
)
{
/* Check that a command to change a chat room user's role or
* affiliation has anough arguments.
*/
// TODO check if first argument is valid
if
(
args
.
length
<
1
||
args
.
length
>
2
)
{
this
.
showStatusNotification
(
__
(
"
Error: the
\"
"
+
command
+
"
\"
command takes two arguments, the user's nickname and optionally a reason.
"
),
true
);
return
false
;
}
return
true
;
},
onChatRoomMessageSubmitted
:
function
(
text
)
{
/* Gets called when the user presses enter to send off a
* message in a chat room.
...
...
@@ -2903,15 +2918,17 @@
* Parameters:
* (String) text - The message text.
*/
var
match
=
text
.
replace
(
/^
\s
*/
,
""
).
match
(
/^
\/(
.*
?)(?:
(
.*
))?
$/
)
||
[
false
,
''
,
''
]
;
var
args
=
match
[
2
].
splitOnce
(
'
'
)
;
var
match
=
text
.
replace
(
/^
\s
*/
,
""
).
match
(
/^
\/(
.*
?)(?:
(
.*
))?
$/
)
||
[
false
,
''
,
''
]
,
args
=
match
[
2
]
&&
match
[
2
].
splitOnce
(
'
'
)
||
[]
;
switch
(
match
[
1
])
{
case
'
admin
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
setAffiliation
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
admin
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
break
;
case
'
ban
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
setAffiliation
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
outcast
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
...
...
@@ -2920,6 +2937,7 @@
this
.
clearChatRoomMessages
();
break
;
case
'
deop
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
modifyRole
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
participant
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
...
...
@@ -2944,16 +2962,19 @@
]);
break
;
case
'
kick
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
modifyRole
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
none
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
break
;
case
'
mute
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
modifyRole
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
visitor
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
break
;
case
'
member
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
setAffiliation
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
member
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
...
...
@@ -2966,16 +2987,19 @@
}).
tree
());
break
;
case
'
owner
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
setAffiliation
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
owner
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
break
;
case
'
op
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
modifyRole
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
moderator
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
break
;
case
'
revoke
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
setAffiliation
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
none
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
...
...
@@ -2990,6 +3014,7 @@
);
break
;
case
'
voice
'
:
if
(
!
this
.
validateRoleChangeCommand
(
match
[
1
],
args
))
{
break
;
}
this
.
modifyRole
(
this
.
model
.
get
(
'
jid
'
),
args
[
0
],
'
participant
'
,
args
[
1
],
undefined
,
this
.
onCommandError
.
bind
(
this
));
...
...
docs/CHANGES.rst
View file @
12d6785d
...
...
@@ -4,11 +4,12 @@ Changelog
0.9.6 (Unreleased)
------------------
* Bugfix. Spinner doesn't disappear when scrolling up (when server doesn't support XEP-0313). [jcbrand]
* #462 Fix MUC rooms with names containing special characters not working [1st8]
* #468 Fix [object Object] being sometimes shown as status [1st8]
* #472 Fix "Cannot read property 'splitOnce' of undefined" when typing /clear in a chat room. [jcbrand]
* #493 Roster wasn't being updated after a Roster push update [teseo, jcbrand]
* #496 Bugfix. Pings weren't being sent out. [teseo, jcbrand]
* Bugfix. Spinner doesn't disappear when scrolling up (when server doesn't support XEP-0313). [jcbrand]
0.9.5 (2015-08-24)
------------------
...
...
spec/chatroom.js
View file @
12d6785d
...
...
@@ -14,6 +14,13 @@
var
Strophe
=
converse_api
.
env
.
Strophe
;
return
describe
(
"
ChatRooms
"
,
function
(
mock
,
test_utils
)
{
beforeEach
(
function
()
{
runs
(
function
()
{
test_utils
.
closeAllChatBoxes
();
test_utils
.
clearBrowserStorage
();
});
});
describe
(
"
A Chat Room
"
,
function
()
{
beforeEach
(
function
()
{
runs
(
function
()
{
...
...
@@ -479,6 +486,62 @@
}.
bind
(
converse
));
}.
bind
(
converse
));
describe
(
"
Each chat room can take special commands
"
,
function
()
{
beforeEach
(
function
()
{
runs
(
function
()
{
test_utils
.
closeAllChatBoxes
();
test_utils
.
clearBrowserStorage
();
});
});
it
(
"
to clear messages
"
,
function
()
{
test_utils
.
openChatRoom
(
'
lounge
'
,
'
localhost
'
,
'
dummy
'
);
var
view
=
converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
),
chatroom
=
view
.
model
,
$chat_content
=
view
.
$el
.
find
(
'
.chat-content
'
);
spyOn
(
view
,
'
onChatRoomMessageSubmitted
'
).
andCallThrough
();
spyOn
(
view
,
'
clearChatRoomMessages
'
);
view
.
$el
.
find
(
'
.chat-textarea
'
).
text
(
'
/clear
'
);
view
.
$el
.
find
(
'
textarea.chat-textarea
'
).
trigger
(
$
.
Event
(
'
keypress
'
,
{
keyCode
:
13
}));
expect
(
view
.
onChatRoomMessageSubmitted
).
toHaveBeenCalled
();
expect
(
view
.
clearChatRoomMessages
).
toHaveBeenCalled
();
});
it
(
"
to ban a user
"
,
function
()
{
test_utils
.
openChatRoom
(
'
lounge
'
,
'
localhost
'
,
'
dummy
'
);
var
view
=
converse
.
chatboxviews
.
get
(
'
lounge@localhost
'
),
chatroom
=
view
.
model
,
$chat_content
=
view
.
$el
.
find
(
'
.chat-content
'
);
spyOn
(
view
,
'
onChatRoomMessageSubmitted
'
).
andCallThrough
();
spyOn
(
view
,
'
setAffiliation
'
).
andCallThrough
();
spyOn
(
view
,
'
showStatusNotification
'
).
andCallThrough
();
spyOn
(
view
,
'
validateRoleChangeCommand
'
).
andCallThrough
();
view
.
$el
.
find
(
'
.chat-textarea
'
).
text
(
'
/ban
'
);
view
.
$el
.
find
(
'
textarea.chat-textarea
'
).
trigger
(
$
.
Event
(
'
keypress
'
,
{
keyCode
:
13
}));
expect
(
view
.
onChatRoomMessageSubmitted
).
toHaveBeenCalled
();
expect
(
view
.
validateRoleChangeCommand
).
toHaveBeenCalled
();
expect
(
view
.
showStatusNotification
).
toHaveBeenCalledWith
(
"
Error: the
\"
ban
\"
command takes two arguments, the user's nickname and optionally a reason.
"
,
true
);
expect
(
view
.
setAffiliation
).
not
.
toHaveBeenCalled
();
// Call now with the correct amount of arguments.
// XXX: Calling onChatRoomMessageSubmitted directly, trying
// again via triggering Event doesn't work for some weird
// reason.
view
.
onChatRoomMessageSubmitted
(
'
/ban jid This is the reason
'
);
expect
(
view
.
validateRoleChangeCommand
.
callCount
).
toBe
(
2
);
expect
(
view
.
showStatusNotification
.
callCount
).
toBe
(
1
);
expect
(
view
.
setAffiliation
).
toHaveBeenCalled
();
});
}.
bind
(
converse
));
describe
(
"
When attempting to enter a chatroom
"
,
function
()
{
beforeEach
(
function
()
{
var
roomspanel
=
this
.
chatboxviews
.
get
(
'
controlbox
'
).
roomspanel
;
...
...
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