. * * @category Widget * @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 PostvideoAction extends Action { var $user = null; var $url = null; function prepare(array $args=array()) { parent::prepare($args); $this->user = common_current_user(); if(empty($this->user)){ throw new ClientException(_('Must be logged in to post a video'), 403); } if($this->isPost()){ $this->checkSessionToken(); } $this->url = filter_var($this->trimmed('url'), FILTER_SANITIZE_URL); $this->url = filter_var($this->url, FILTER_VALIDATE_URL); return true; } function handle(array $args=array()) { parent::handle($args); if ($this->isPost()) { $this->handlePost($args); } else { $this->showPage(); } } function handlePost($args) { if (empty($this->url)) { throw new ClientException(_('Bad URL.')); } $profile = $this->user->getProfile(); $options = array(); ToSelector::fillOptions($this, $options); $vid = Video::saveNew($profile, $this->url, $options); common_redirect($vid->uri, 303); } function showContent() { $form = new VideoForm(); $form->show(); } }