profiletagbyid.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Permalink for a peopletag
  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 Peopletag
  23. * @package StatusNet
  24. * @author Shashi Gowda <connect2shashi@gmail.com>
  25. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  26. * @link http://status.net/
  27. */
  28. if (!defined('STATUSNET') && !defined('LACONICA')) {
  29. exit(1);
  30. }
  31. class ProfiletagbyidAction extends Action
  32. {
  33. /** peopletag we're viewing. */
  34. var $peopletag = null;
  35. /**
  36. * Is this page read-only?
  37. *
  38. * @return boolean true
  39. */
  40. function isReadOnly($args)
  41. {
  42. return true;
  43. }
  44. function prepare(array $args = array())
  45. {
  46. parent::prepare($args);
  47. $id = $this->arg('id');
  48. $tagger_id = $this->arg('tagger_id');
  49. if (!$id) {
  50. // TRANS: Client error displayed trying to perform an action without providing an ID.
  51. $this->clientError(_('No ID.'));
  52. }
  53. common_debug("Peopletag id $id by user id $tagger_id");
  54. $this->peopletag = Profile_list::getKV('id', $id);
  55. if (!$this->peopletag) {
  56. // TRANS: Client error displayed trying to reference a non-existing list.
  57. $this->clientError(_('No such list.'), 404);
  58. }
  59. $user = User::getKV('id', $tagger_id);
  60. if (!$user) {
  61. // remote peopletag, permanently redirect
  62. common_redirect($this->peopletag->permalink(), 301);
  63. }
  64. return true;
  65. }
  66. /**
  67. * Handle the request
  68. *
  69. * Shows a profile for the group, some controls, and a list of
  70. * group notices.
  71. *
  72. * @return void
  73. */
  74. function handle()
  75. {
  76. common_redirect($this->peopletag->homeUrl(), 303);
  77. }
  78. }