clear_jabber.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #!/usr/bin/env php
  2. <?php
  3. /*
  4. * StatusNet - a distributed open-source microblogging tool
  5. * Copyright (C) 2008, 2009, 2010, 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::n::y';
  22. $longoptions = array('id=', 'nickname=', 'yes', 'all', 'dry-run');
  23. $helptext = <<<END_OF_DELETEUSER_HELP
  24. clear_jabber.php [options]
  25. Deletes a user's confirmed Jabber/XMPP address from the database.
  26. -i --id ID of the user
  27. -n --nickname nickname of the user
  28. --all all users with confirmed Jabber addresses
  29. --dry-run Don't actually delete info.
  30. END_OF_DELETEUSER_HELP;
  31. require_once INSTALLDIR.'/scripts/commandline.inc';
  32. if (have_option('i', 'id')) {
  33. $id = get_option_value('i', 'id');
  34. $user = User::getKV('id', $id);
  35. if (empty($user)) {
  36. print "Can't find user with ID $id\n";
  37. exit(1);
  38. }
  39. } else if (have_option('n', 'nickname')) {
  40. $nickname = get_option_value('n', 'nickname');
  41. $user = User::getKV('nickname', $nickname);
  42. if (empty($user)) {
  43. print "Can't find user with nickname '$nickname'\n";
  44. exit(1);
  45. }
  46. } else if (have_option('all')) {
  47. $user = new User();
  48. $user->whereAdd("jabber != ''");
  49. $user->find(true);
  50. if ($user->N == 0) {
  51. print "No users with registered Jabber addresses in database.\n";
  52. exit(1);
  53. }
  54. } else {
  55. print "You must provide either an ID or a nickname.\n";
  56. print "\n";
  57. print $helptext;
  58. exit(1);
  59. }
  60. function clear_jabber($id)
  61. {
  62. $user = User::getKV('id', $id);
  63. if ($user && $user->jabber) {
  64. echo "clearing user $id's user.jabber, was: $user->jabber";
  65. if (have_option('dry-run')) {
  66. echo " (SKIPPING)";
  67. } else {
  68. $original = clone($user);
  69. $user->jabber = null;
  70. try {
  71. $user->updateWithKeys($original);
  72. } catch (Exception $e) {
  73. echo "WARNING: user update failed (setting jabber to null): ".$e->getMessage()."\n";
  74. }
  75. }
  76. echo "\n";
  77. } else if (!$user) {
  78. echo "Missing user for $id\n";
  79. } else {
  80. echo "Cleared jabber already for $id\n";
  81. }
  82. }
  83. do {
  84. clear_jabber($user->id);
  85. } while ($user->fetch());
  86. print "DONE.\n";