showvideo.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. /**
  3. * GNU Social
  4. * Copyright (C) 2011, Free Software Foundation, Inc.
  5. *
  6. * PHP version 5
  7. *
  8. * LICENCE:
  9. * 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. * @package GNU Social
  23. * @author Ian Denhardt <ian@zenhack.net>
  24. * @copyright 2011 Free Software Foundation, Inc.
  25. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  26. */
  27. if(!defined('STATUSNET')){
  28. exit(1);
  29. }
  30. class ShowvideoAction extends ShownoticeAction
  31. {
  32. protected $id = null;
  33. protected $vid = null;
  34. function prepare(array $args = array())
  35. {
  36. OwnerDesignAction::prepare($args);
  37. $this->id = $this->trimmed('id');
  38. $this->vid = Video::getKV('id', $this->id);
  39. if (empty($this->vid)) {
  40. throw new ClientException(_('No such video.'), 404);
  41. }
  42. $this->notice = $this->vid->getNotice();
  43. if (empty($this->notice)) {
  44. throw new ClientException(_('No such video'), 404);
  45. }
  46. $this->user = User::getKV('id', $this->vid->profile_id);
  47. if (empty($this->user)) {
  48. throw new ClientException(_('No such user.'), 404);
  49. }
  50. $this->profile = $this->user->getProfile();
  51. if (empty($this->profile)) {
  52. throw new ServerException(_('User without a profile.'));
  53. }
  54. return true;
  55. }
  56. }