joingroup.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Join a group
  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 Group
  23. * @package StatusNet
  24. * @author Evan Prodromou <evan@status.net>
  25. * @copyright 2008-2009 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. * Join a group
  32. *
  33. * This is the action for joining a group. It works more or less like the subscribe action
  34. * for users.
  35. *
  36. * @category Group
  37. * @package StatusNet
  38. * @author Evan Prodromou <evan@status.net>
  39. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  40. * @link http://status.net/
  41. */
  42. class JoingroupAction extends Action
  43. {
  44. var $group = null;
  45. /**
  46. * Prepare to run
  47. */
  48. protected function prepare(array $args=array())
  49. {
  50. parent::prepare($args);
  51. if (!common_logged_in()) {
  52. // TRANS: Client error displayed when trying to join a group while not logged in.
  53. $this->clientError(_('You must be logged in to join a group.'));
  54. }
  55. $nickname_arg = $this->trimmed('nickname');
  56. $id = intval($this->arg('id'));
  57. if ($id) {
  58. $this->group = User_group::getKV('id', $id);
  59. } else if ($nickname_arg) {
  60. $nickname = common_canonical_nickname($nickname_arg);
  61. // Permanent redirect on non-canonical nickname
  62. if ($nickname_arg != $nickname) {
  63. $args = array('nickname' => $nickname);
  64. common_redirect(common_local_url('leavegroup', $args), 301);
  65. }
  66. $local = Local_group::getKV('nickname', $nickname);
  67. if (!$local) {
  68. // TRANS: Client error displayed when trying to join a non-local group.
  69. $this->clientError(_('No such group.'), 404);
  70. }
  71. $this->group = User_group::getKV('id', $local->group_id);
  72. } else {
  73. // TRANS: Client error displayed when trying to join a group without providing a group name or group ID.
  74. $this->clientError(_('No nickname or ID.'), 404);
  75. }
  76. if (!$this->group) {
  77. // TRANS: Client error displayed when trying to join a non-existing group.
  78. $this->clientError(_('No such group.'), 404);
  79. }
  80. if ($this->scoped->isMember($this->group)) {
  81. // TRANS: Client error displayed when trying to join a group while already a member.
  82. $this->clientError(_('You are already a member of that group.'), 403);
  83. }
  84. if (Group_block::isBlocked($this->group, $this->scoped)) {
  85. // TRANS: Client error displayed when trying to join a group while being blocked form joining it.
  86. $this->clientError(_('You have been blocked from that group by the admin.'), 403);
  87. }
  88. return true;
  89. }
  90. /**
  91. * Handle the request
  92. *
  93. * On POST, add the current user to the group
  94. *
  95. * @return void
  96. */
  97. protected function handle()
  98. {
  99. parent::handle();
  100. try {
  101. $result = $this->scoped->joinGroup($this->group);
  102. } catch (Exception $e) {
  103. common_log(LOG_ERR, sprintf("Couldn't join user %s to group %s: '%s'",
  104. $this->scoped->nickname,
  105. $this->group->nickname,
  106. $e->getMessage()));
  107. // TRANS: Server error displayed when joining a group failed in the database.
  108. // TRANS: %1$s is the joining user's nickname, $2$s is the group nickname for which the join failed.
  109. $this->serverError(sprintf(_('Could not join user %1$s to group %2$s.'),
  110. $this->scoped->nickname, $this->group->nickname));
  111. return;
  112. }
  113. if ($this->boolean('ajax')) {
  114. $this->startHTML('text/xml;charset=utf-8');
  115. $this->elementStart('head');
  116. // TRANS: Title for join group page after joining.
  117. $this->element('title', null, sprintf(_m('TITLE','%1$s joined group %2$s'),
  118. $this->scoped->nickname,
  119. $this->group->nickname));
  120. $this->elementEnd('head');
  121. $this->elementStart('body');
  122. if ($result instanceof Group_member) {
  123. $form = new LeaveForm($this, $this->group);
  124. } else if ($result instanceof Group_join_queue) {
  125. $form = new CancelGroupForm($this, $this->group);
  126. } else {
  127. // wtf?
  128. // TRANS: Exception thrown when there is an unknown error joining a group.
  129. throw new Exception(_("Unknown error joining group."));
  130. }
  131. $form->show();
  132. $this->elementEnd('body');
  133. $this->endHTML();
  134. } else {
  135. common_redirect(common_local_url('groupmembers', array('nickname' => $this->group->nickname)), 303);
  136. }
  137. }
  138. }