12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- define('INSTALLDIR', dirname(__DIR__));
- define('PUBLICDIR', INSTALLDIR . DIRECTORY_SEPARATOR . 'public');
- $shortoptions = 'i::n::y';
- $longoptions = array('id=', 'nickname=', 'yes');
- $helptext = <<<END_OF_DELETEGROUP_HELP
- deletegroup.php [options]
- deletes a group from the database
- -i --id ID of the group
- -n --nickname nickname of the group
- -y --yes do not wait for confirmation
- END_OF_DELETEGROUP_HELP;
- require_once INSTALLDIR.'/scripts/commandline.inc';
- if (have_option('i', 'id')) {
- $id = get_option_value('i', 'id');
- $group = User_group::getKV('id', $id);
- if (empty($group)) {
- print "Can't find group with ID $id\n";
- exit(1);
- }
- } else if (have_option('n', 'nickname')) {
- $nickname = get_option_value('n', 'nickname');
- $local = Local_group::getKV('nickname', $nickname);
- if (empty($local)) {
- print "Can't find group with nickname '$nickname'\n";
- exit(1);
- }
- $group = User_group::getKV('id', $local->group_id);
- } else {
- print "You must provide either an ID or a nickname.\n";
- print "\n";
- print $helptext;
- exit(1);
- }
- if (!have_option('y', 'yes')) {
- print "About to PERMANENTLY delete group '{$group->nickname}' ({$group->id}). Are you sure? [y/N] ";
- $response = fgets(STDIN);
- if (strtolower(trim($response)) != 'y') {
- print "Aborting.\n";
- exit(0);
- }
- }
- print "Deleting...";
- $group->delete();
- print "DONE.\n";
|