tweetinqueuehandler.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. /*
  3. * StatusNet - the distributed open-source microblogging tool
  4. * Copyright (C) 2010, StatusNet, Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
  20. require_once dirname(__DIR__) . '/twitter.php';
  21. /**
  22. * Queue handler to deal with incoming Twitter status updates, as retrieved by
  23. * TwitterDaemon (twitterdaemon.php).
  24. *
  25. * The queue handler passes the status through TwitterImporter for import into the
  26. * local database (if necessary), then adds the imported notice to the local inbox
  27. * of the attached Twitter user.
  28. *
  29. * Warning: the way we do inbox distribution manually means that realtime, XMPP, etc
  30. * don't work on Twitter-borne messages. When TwitterImporter is changed to handle
  31. * that correctly, we'll only need to do this once...?
  32. */
  33. class TweetInQueueHandler extends QueueHandler
  34. {
  35. function transport()
  36. {
  37. return 'tweetin';
  38. }
  39. function handle($data)
  40. {
  41. // JSON object with Twitter data
  42. $status = $data['status'];
  43. // Twitter user ID this incoming data belongs to.
  44. $receiver = $data['for_user'];
  45. $importer = new TwitterImport();
  46. $notice = $importer->importStatus($status);
  47. if ($notice instanceof Notice) {
  48. try {
  49. $flink = Foreign_link::getByForeignID($receiver, TWITTER_SERVICE);
  50. common_log(LOG_DEBUG, "TweetInQueueHandler - Got flink so add notice ".
  51. $notice->id." to attentions for user ".$flink->user_id);
  52. try {
  53. Attention::saveNew($notice, $flink->getProfile());
  54. } catch (Exception $e) {
  55. // Log the exception, but make sure we don't bail out, we
  56. // still have a queue item to remove here-after.
  57. common_log(LOG_ERR, "Failed adding notice {$notice->id} to attentions for user {$flink->user_id}: " .
  58. $e->getMessage());
  59. }
  60. } catch (NoResultException $e) {
  61. common_log(LOG_DEBUG, "TweetInQueueHandler - No flink found for foreign user ".$receiver);
  62. }
  63. }
  64. return true;
  65. }
  66. }