Added sanity checks in commands

This commit is contained in:
Emmanuel ROHEE 2014-09-05 17:23:41 +02:00
parent 3501478828
commit cf4c17deaf

View file

@ -313,10 +313,17 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
case "/nick": case "/nick":
// Change user display name // Change user display name
if (args) {
promise = matrixService.setDisplayName(args); promise = matrixService.setDisplayName(args);
}
else {
$scope.feedback = "Usage: /nick <display_name>";
}
break; break;
case "/kick": case "/kick":
// Kick a user from the room with an optional reason
if (args) {
var matches = args.match(/^(\S+?)( +(.*))?$/); var matches = args.match(/^(\S+?)( +(.*))?$/);
if (matches.length === 2) { if (matches.length === 2) {
promise = matrixService.setMembership($scope.room_id, matches[1], "leave"); promise = matrixService.setMembership($scope.room_id, matches[1], "leave");
@ -327,18 +334,23 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
reason: matches[3] // TODO: we need to specify resaon in the spec reason: matches[3] // TODO: we need to specify resaon in the spec
}); });
} }
else { }
if (!promise) {
$scope.feedback = "Usage: /kick <userId> [<reason>]"; $scope.feedback = "Usage: /kick <userId> [<reason>]";
} }
break; break;
case "/ban": case "/ban":
// Ban a user from the room with optional reason // Ban a user from the room with an optional reason
if (args) {
var matches = args.match(/^(\S+?)( +(.*))?$/); var matches = args.match(/^(\S+?)( +(.*))?$/);
if (matches) { if (matches) {
promise = matrixService.ban($scope.room_id, matches[1], matches[3]); promise = matrixService.ban($scope.room_id, matches[1], matches[3]);
} }
else { }
if (!promise) {
$scope.feedback = "Usage: /ban <userId> [<reason>]"; $scope.feedback = "Usage: /ban <userId> [<reason>]";
} }
break; break;
@ -348,18 +360,22 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
// FIXME: this feels horribly asymmetrical - why are we banning via RPC // FIXME: this feels horribly asymmetrical - why are we banning via RPC
// and unbanning by editing the membership list? // and unbanning by editing the membership list?
// Why can't we specify a reason? // Why can't we specify a reason?
if (args) {
var matches = args.match(/^(\S+)$/); var matches = args.match(/^(\S+)$/);
if (matches) { if (matches) {
// Reset the user membership to "leave" to unban him // Reset the user membership to "leave" to unban him
promise = matrixService.setMembership($scope.room_id, matches[1], "leave"); promise = matrixService.setMembership($scope.room_id, matches[1], "leave");
} }
else { }
if (!promise) {
$scope.feedback = "Usage: /unban <userId>"; $scope.feedback = "Usage: /unban <userId>";
} }
break; break;
case "/op": case "/op":
// Define the power level of a user // Define the power level of a user
if (args) {
var matches = args.match(/^(\S+?)( +(\d+))?$/); var matches = args.match(/^(\S+?)( +(\d+))?$/);
var powerLevel = 50; // default power level for op var powerLevel = 50; // default power level for op
if (matches) { if (matches) {
@ -371,6 +387,8 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
promise = matrixService.setUserPowerLevel($scope.room_id, user_id, powerLevel); promise = matrixService.setUserPowerLevel($scope.room_id, user_id, powerLevel);
} }
} }
}
if (!promise) { if (!promise) {
$scope.feedback = "Usage: /op <userId> [<power level>]"; $scope.feedback = "Usage: /op <userId> [<power level>]";
} }
@ -378,11 +396,14 @@ angular.module('RoomController', ['ngSanitize', 'matrixFilter', 'mFileInput'])
case "/deop": case "/deop":
// Reset the power level of a user // Reset the power level of a user
if (args) {
var matches = args.match(/^(\S+)$/); var matches = args.match(/^(\S+)$/);
if (matches) { if (matches) {
promise = matrixService.setUserPowerLevel($scope.room_id, args, undefined); promise = matrixService.setUserPowerLevel($scope.room_id, args, undefined);
} }
else { }
if (!promise) {
$scope.feedback = "Usage: /deop <userId>"; $scope.feedback = "Usage: /deop <userId>";
} }
break; break;