. * * @package GNU Social * @author Ian Denhardt * @copyright 2011 Free Software Foundation, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 */ if(!defined('STATUSNET')){ exit(1); } class ShowvideoAction extends ShownoticeAction { protected $id = null; protected $vid = null; function prepare($args) { OwnerDesignAction::prepare($args); $this->id = $this->trimmed('id'); $this->vid = Video::getKV('id', $this->id); if (empty($this->vid)) { throw new ClientException(_('No such video.'), 404); } $this->notice = $this->vid->getNotice(); if (empty($this->notice)) { throw new ClientException(_('No such video'), 404); } $this->user = User::getKV('id', $this->vid->profile_id); if (empty($this->user)) { throw new ClientException(_('No such user.'), 404); } $this->profile = $this->user->getProfile(); if (empty($this->profile)) { throw new ServerException(_('User without a profile.')); } return true; } }