testfeed.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. $validate = new Validate();
  31. if (empty($args[0]) || !$validate->uri($args[0])) {
  32. print "$helptext";
  33. exit(1);
  34. }
  35. $feedurl = $args[0];
  36. $skip = have_option('skip') ? intval(get_option_value('skip')) : 0;
  37. $count = have_option('count') ? intval(get_option_value('count')) : 0;
  38. $sub = FeedSub::getKV('uri', $feedurl);
  39. if (!$sub) {
  40. print "Feed $feedurl is not subscribed.\n";
  41. exit(1);
  42. }
  43. // Fetch the URL
  44. try {
  45. $xml = HTTPClient::quickGet($feedurl, 'text/html,application/xhtml+xml');
  46. } catch (Exception $e) {
  47. echo sprintf("Could not fetch feedurl %s (%d).\n", $e->getMessage(), $e->getCode());
  48. exit(1);
  49. }
  50. $feed = new DOMDocument();
  51. if (!$feed->loadXML($xml)) {
  52. print "Bad XML.\n";
  53. exit(1);
  54. }
  55. if ($skip || $count) {
  56. $entries = $feed->getElementsByTagNameNS(ActivityUtils::ATOM, 'entry');
  57. $remove = array();
  58. for ($i = 0; $i < $skip && $i < $entries->length; $i++) {
  59. $item = $entries->item($i);
  60. if ($item) {
  61. $remove[] = $item;
  62. }
  63. }
  64. if ($count) {
  65. for ($i = $skip + $count; $i < $entries->length; $i++) {
  66. $item = $entries->item($i);
  67. if ($item) {
  68. $remove[] = $item;
  69. }
  70. }
  71. }
  72. foreach ($remove as $item) {
  73. $item->parentNode->removeChild($item);
  74. }
  75. }
  76. echo "Calling event StartFeedSubReceive\n";
  77. Event::handle('StartFeedSubReceive', array($sub, $feed));