microsummary.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. /**
  3. * Microsummary action, see https://wiki.mozilla.org/Microsummaries
  4. *
  5. * PHP version 5
  6. *
  7. * @category Action
  8. * @package StatusNet
  9. * @author Evan Prodromou <evan@status.net>
  10. * @author Robin Millette <millette@status.net>
  11. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  12. * @link http://status.net/
  13. *
  14. * StatusNet - the distributed open-source microblogging tool
  15. * Copyright (C) 2008, 2009, StatusNet, Inc.
  16. *
  17. * This program is free software: you can redistribute it and/or modify
  18. * it under the terms of the GNU Affero General Public License as published by
  19. * the Free Software Foundation, either version 3 of the License, or
  20. * (at your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU Affero General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU Affero General Public License
  28. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. */
  30. if (!defined('STATUSNET') && !defined('LACONICA')) {
  31. exit(1);
  32. }
  33. /**
  34. * Microsummary action class.
  35. *
  36. * @category Action
  37. * @package StatusNet
  38. * @author Evan Prodromou <evan@status.net>
  39. * @author Robin Millette <millette@status.net>
  40. * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
  41. * @link http://status.net/
  42. */
  43. class MicrosummaryAction extends Action
  44. {
  45. /**
  46. * Class handler.
  47. *
  48. * @param array $args array of arguments
  49. *
  50. * @return nothing
  51. */
  52. function handle($args)
  53. {
  54. parent::handle($args);
  55. $nickname = common_canonical_nickname($this->arg('nickname'));
  56. $user = User::getKV('nickname', $nickname);
  57. if (!$user) {
  58. // TRANS: Client error displayed trying to make a micro summary without providing a valid user.
  59. $this->clientError(_('No such user.'), 404);
  60. }
  61. $notice = $user->getCurrentNotice();
  62. if (!$notice) {
  63. // TRANS: Client error displayed trying to make a micro summary without providing a status.
  64. $this->clientError(_('No current status.'), 404);
  65. }
  66. header('Content-Type: text/plain');
  67. print $user->nickname . ': ' . $notice->content;
  68. }
  69. function isReadOnly($args)
  70. {
  71. return true;
  72. }
  73. }