testfeed.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #!/usr/bin/env php
  2. <?php
  3. /*
  4. * StatusNet - a distributed open-source microblogging tool
  5. * Copyright (C) 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. $longoptions = array('skip=', 'count=');
  22. $helptext = <<<END_OF_HELP
  23. testfeed.php [options] http://example.com/atom-feed-url
  24. Pull an Atom feed and run items in it as though they were live PuSH updates.
  25. Mainly intended for testing funky feed formats.
  26. --skip=N Ignore the first N items in the feed.
  27. --count=N Only process up to N items from the feed, after skipping.
  28. END_OF_HELP;
  29. require_once INSTALLDIR.'/scripts/commandline.inc';
  30. if (empty($args[0]) || !Validate::uri($args[0])) {
  31. print "$helptext";
  32. exit(1);
  33. }
  34. $feedurl = $args[0];
  35. $skip = have_option('skip') ? intval(get_option_value('skip')) : 0;
  36. $count = have_option('count') ? intval(get_option_value('count')) : 0;
  37. $sub = FeedSub::getKV('uri', $feedurl);
  38. if (!$sub) {
  39. print "Feed $feedurl is not subscribed.\n";
  40. exit(1);
  41. }
  42. // Fetch the URL
  43. try {
  44. $xml = HTTPClient::quickGet($feedurl, 'text/html,application/xhtml+xml');
  45. } catch (Exception $e) {
  46. echo sprintf("Could not fetch feedurl %s (%d).\n", $e->getMessage(), $e->getCode());
  47. exit(1);
  48. }
  49. $feed = new DOMDocument();
  50. if (!$feed->loadXML($xml)) {
  51. print "Bad XML.\n";
  52. exit(1);
  53. }
  54. if ($skip || $count) {
  55. $entries = $feed->getElementsByTagNameNS(ActivityUtils::ATOM, 'entry');
  56. $remove = array();
  57. for ($i = 0; $i < $skip && $i < $entries->length; $i++) {
  58. $item = $entries->item($i);
  59. if ($item) {
  60. $remove[] = $item;
  61. }
  62. }
  63. if ($count) {
  64. for ($i = $skip + $count; $i < $entries->length; $i++) {
  65. $item = $entries->item($i);
  66. if ($item) {
  67. $remove[] = $item;
  68. }
  69. }
  70. }
  71. foreach ($remove as $item) {
  72. $item->parentNode->removeChild($item);
  73. }
  74. }
  75. echo "Calling event StartFeedSubReceive\n";
  76. Event::handle('StartFeedSubReceive', array($sub, $feed));