delete_notice.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #!/usr/bin/env php
  2. <?php
  3. /*
  4. * StatusNet - a distributed open-source microblogging tool
  5. * Copyright (C) 2008, 2009, StatusNet, Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Affero General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Affero General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
  21. $shortoptions = 'i::u::y';
  22. $longoptions = array('id=', 'uri=', 'yes');
  23. $helptext = <<<END_OF_HELP
  24. delete_notice.php [options]
  25. deletes a notice (but not related File objects) from the database
  26. -i --id Local ID of the notice
  27. -u --uri Notice URI
  28. -y --yes do not wait for confirmation
  29. END_OF_HELP;
  30. require_once INSTALLDIR.'/scripts/commandline.inc';
  31. try {
  32. if (have_option('i', 'id')) {
  33. $id = get_option_value('i', 'id');
  34. $notice = Notice::getByID($id);
  35. } else if (have_option('u', 'uri')) {
  36. $uri = get_option_value('u', 'uri');
  37. $notice = Notice::getByUri($uri);
  38. } else {
  39. print $helptext;
  40. throw new ClientException('You must provide either an ID or a URI.');
  41. }
  42. } catch (Exception $e) {
  43. print "ERROR: {$e->getMessage()}\n";
  44. exit(1);
  45. }
  46. if (!have_option('y', 'yes')) {
  47. print "About to PERMANENTLY delete notice ".$notice->getID()." by '".$notice->getProfile()->getNickname()."'. Are you sure? [y/N] ";
  48. $response = fgets(STDIN);
  49. if (strtolower(trim($response)) != 'y') {
  50. print "Aborting.\n";
  51. exit(0);
  52. }
  53. }
  54. print "Deleting...";
  55. $notice->delete();
  56. print "DONE.\n";