if (oldtitle == null || oldtitle.length() == 0 || newtitle == null || newtitle.length() == 0) {
throw new IllegalArgumentException("The arguments 'oldtitle' and 'newtitle' must not be null or empty");
}
if (!bot.getUserinfo().getRights().contains("move")) {
throw new ProcessException(
"The given user doesn't have the rights to move. "
+ "Add '$wgGroupPermissions['bot']['move'] = true;' "
+ "to your MediaWiki's LocalSettings.php might solve this problem.");
}
if (withsubpages && !bot.getUserinfo().getRights().contains("move-subpages")) {
throw new ProcessException(
"The given user doesn't have the rights to move subpages. "
+ "Add '$wgGroupPermissions['bot']['move-subpages'] = true;' "
+ "to your MediaWiki's LocalSettings.php might solve this problem.");
}
}