12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- 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()
- {
- parent::handle();
- 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();
- }
- }
|