outbox.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * action handler for message inbox
  6. *
  7. * PHP version 5
  8. *
  9. * LICENCE: This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as published by
  11. * the Free Software Foundation, either version 3 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * @category Message
  23. * @package StatusNet
  24. * @author Evan Prodromou <evan@status.net>
  25. * @copyright 2008 StatusNet, Inc.
  26. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  27. * @link http://status.net/
  28. */
  29. if (!defined('GNUSOCIAL')) { exit(1); }
  30. /**
  31. * action handler for message outbox
  32. *
  33. * @category Message
  34. * @package StatusNet
  35. * @author Evan Prodromou <evan@status.net>
  36. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  37. * @link http://status.net/
  38. * @see MailboxAction
  39. */
  40. class OutboxAction extends MailboxAction
  41. {
  42. /**
  43. * Title of the page
  44. *
  45. * @return string page title
  46. */
  47. function title()
  48. {
  49. if ($this->page > 1) {
  50. // TRANS: Title for outbox for any but the fist page.
  51. // TRANS: %1$s is the user nickname, %2$d is the page number.
  52. return sprintf(_('Outbox for %1$s - page %2$d'),
  53. $this->user->nickname, $page);
  54. } else {
  55. // TRANS: Title for first page of outbox.
  56. return sprintf(_('Outbox for %s'), $this->user->nickname);
  57. }
  58. }
  59. /**
  60. * retrieve the messages for this user and this page
  61. *
  62. * Does a query for the right messages
  63. *
  64. * @return Message data object with stream for messages
  65. *
  66. * @see MailboxAction::getMessages()
  67. */
  68. function getMessages()
  69. {
  70. $message = new Message();
  71. $message->from_profile = $this->user->id;
  72. $message->orderBy('created DESC, id DESC');
  73. $message->limit((($this->page - 1) * MESSAGES_PER_PAGE),
  74. MESSAGES_PER_PAGE + 1);
  75. if ($message->find()) {
  76. return $message;
  77. } else {
  78. return null;
  79. }
  80. }
  81. function getMessageList($message)
  82. {
  83. return new OutboxMessageList($this, $message);
  84. }
  85. /**
  86. * instructions for using this page
  87. *
  88. * @return string localised instructions for using the page
  89. */
  90. function getInstructions()
  91. {
  92. // TRANS: Instructions for outbox.
  93. return _('This is your outbox, which lists private messages you have sent.');
  94. }
  95. }
  96. class OutboxMessageList extends MessageList
  97. {
  98. function newItem($message)
  99. {
  100. return new OutboxMessageListItem($this->out, $message);
  101. }
  102. }
  103. class OutboxMessageListItem extends MessageListItem
  104. {
  105. /**
  106. * Returns the profile we want to show with the message
  107. *
  108. * @return Profile The profile that matches the message
  109. */
  110. function getMessageProfile()
  111. {
  112. return $this->message->getTo();
  113. }
  114. }