cancelgroup.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Leave 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('STATUSNET') && !defined('LACONICA')) {
  30. exit(1);
  31. }
  32. /**
  33. * Leave a group
  34. *
  35. * This is the action for leaving a group. It works more or less like the subscribe action
  36. * for users.
  37. *
  38. * @category Group
  39. * @package StatusNet
  40. * @author Evan Prodromou <evan@status.net>
  41. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  42. * @link http://status.net/
  43. */
  44. class CancelgroupAction extends Action
  45. {
  46. public $profile;
  47. public $request;
  48. var $group = null;
  49. /**
  50. * Prepare to run
  51. */
  52. function prepare(array $args = array())
  53. {
  54. parent::prepare($args);
  55. if (!common_logged_in()) {
  56. // TRANS: Client error displayed when trying to leave a group while not logged in.
  57. $this->clientError(_('You must be logged in to leave a group.'));
  58. }
  59. $nickname_arg = $this->trimmed('nickname');
  60. $id = intval($this->arg('id'));
  61. if ($id) {
  62. $this->group = User_group::getKV('id', $id);
  63. } else if ($nickname_arg) {
  64. $nickname = common_canonical_nickname($nickname_arg);
  65. // Permanent redirect on non-canonical nickname
  66. if ($nickname_arg != $nickname) {
  67. $args = array('nickname' => $nickname);
  68. common_redirect(common_local_url('leavegroup', $args), 301);
  69. }
  70. $local = Local_group::getKV('nickname', $nickname);
  71. if (!$local) {
  72. // TRANS: Client error displayed when trying to leave a non-local group.
  73. $this->clientError(_('No such group.'), 404);
  74. }
  75. $this->group = User_group::getKV('id', $local->group_id);
  76. } else {
  77. // TRANS: Client error displayed when trying to leave a group without providing a group name or group ID.
  78. $this->clientError(_('No nickname or ID.'), 404);
  79. }
  80. if (!$this->group) {
  81. // TRANS: Client error displayed when trying to leave a non-existing group.
  82. $this->clientError(_('No such group.'), 404);
  83. }
  84. $cur = common_current_user();
  85. if (empty($cur)) {
  86. // TRANS: Client error displayed when trying to leave a group while not logged in.
  87. $this->clientError(_('Must be logged in.'), 403);
  88. }
  89. if ($this->arg('profile_id')) {
  90. if ($cur->isAdmin($this->group)) {
  91. $this->profile = Profile::getKV('id', $this->arg('profile_id'));
  92. } else {
  93. // TRANS: Client error displayed when trying to approve or cancel a group join request without
  94. // TRANS: being a group administrator.
  95. $this->clientError(_('Only group admin can approve or cancel join requests.'), 403);
  96. }
  97. } else {
  98. $this->profile = $cur->getProfile();
  99. }
  100. $this->request = Group_join_queue::pkeyGet(array('profile_id' => $this->profile->id,
  101. 'group_id' => $this->group->id));
  102. if (empty($this->request)) {
  103. // TRANS: Client error displayed when trying to approve a non-existing group join request.
  104. // TRANS: %s is a user nickname.
  105. $this->clientError(sprintf(_('%s is not in the moderation queue for this group.'), $this->profile->nickname), 403);
  106. }
  107. return true;
  108. }
  109. /**
  110. * Handle the request
  111. *
  112. * On POST, add the current user to the group
  113. *
  114. * @param array $args unused
  115. *
  116. * @return void
  117. */
  118. function handle()
  119. {
  120. parent::handle();
  121. try {
  122. $this->request->abort();
  123. } catch (Exception $e) {
  124. common_log(LOG_ERR, "Exception canceling group sub: " . $e->getMessage());
  125. // TRANS: Server error displayed when cancelling a queued group join request fails.
  126. // TRANS: %1$s is the leaving user's nickname, $2$s is the group nickname for which the leave failed.
  127. $this->serverError(sprintf(_('Could not cancel request for user %1$s to join group %2$s.'),
  128. $this->profile->nickname, $this->group->nickname));
  129. return;
  130. }
  131. if ($this->boolean('ajax')) {
  132. $this->startHTML('text/xml;charset=utf-8');
  133. $this->elementStart('head');
  134. // TRANS: Title for leave group page after leaving.
  135. // TRANS: %s$s is the leaving user's name, %2$s is the group name.
  136. $this->element('title', null, sprintf(_m('TITLE','%1$s left group %2$s'),
  137. $this->profile->nickname,
  138. $this->group->nickname));
  139. $this->elementEnd('head');
  140. $this->elementStart('body');
  141. $jf = new JoinForm($this, $this->group);
  142. $jf->show();
  143. $this->elementEnd('body');
  144. $this->endHTML();
  145. } else {
  146. common_redirect(common_local_url('groupmembers', array('nickname' => $this->group->nickname)), 303);
  147. }
  148. }
  149. }