testfeed.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 WebSub 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. // XXX: This could maybe be replaced with $sub->importFeed()
  44. // Fetch the URL
  45. try {
  46. $xml = HTTPClient::quickGet($feedurl, 'application/atom+xml');
  47. } catch (Exception $e) {
  48. echo sprintf("Could not fetch feedurl %s (%d).\n", $e->getMessage(), $e->getCode());
  49. exit(1);
  50. }
  51. $feed = new DOMDocument();
  52. if (!$feed->loadXML($xml)) {
  53. print "Bad XML.\n";
  54. exit(1);
  55. }
  56. if ($skip || $count) {
  57. $entries = $feed->getElementsByTagNameNS(ActivityUtils::ATOM, 'entry');
  58. $remove = array();
  59. for ($i = 0; $i < $skip && $i < $entries->length; $i++) {
  60. $item = $entries->item($i);
  61. if ($item) {
  62. $remove[] = $item;
  63. }
  64. }
  65. if ($count) {
  66. for ($i = $skip + $count; $i < $entries->length; $i++) {
  67. $item = $entries->item($i);
  68. if ($item) {
  69. $remove[] = $item;
  70. }
  71. }
  72. }
  73. foreach ($remove as $item) {
  74. $item->parentNode->removeChild($item);
  75. }
  76. }
  77. echo "Calling event StartFeedSubReceive\n";
  78. Event::handle('StartFeedSubReceive', array($sub, $feed));