]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialVideo/actions/postvideo.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / GNUsocialVideo / actions / postvideo.php
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  * @category  Widget
23  * @package   GNU Social
24  * @author    Ian Denhardt <ian@zenhack.net>
25  * @copyright 2011 Free Software Foundation, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 class PostvideoAction extends Action {
34     var $user = null;
35     var $url = null;
36
37     function prepare(array $args=array())
38     {
39         parent::prepare($args);
40         $this->user = common_current_user();
41
42         if(empty($this->user)){
43             throw new ClientException(_('Must be logged in to post a video'),
44                 403);
45         }
46
47         if($this->isPost()){
48             $this->checkSessionToken();
49         }
50
51         $this->url = filter_var($this->trimmed('url'), FILTER_SANITIZE_URL);
52         $this->url = filter_var($this->url, FILTER_VALIDATE_URL);
53
54         return true;
55     }
56    
57     function handle(array $args=array())
58     {
59         parent::handle($args);
60
61         if ($this->isPost()) {
62             $this->handlePost($args);
63         } else {
64             $this->showPage();
65         }
66     }
67
68     function handlePost($args)
69     {
70         if (empty($this->url)) {
71             throw new ClientException(_('Bad URL.'));
72         }
73
74         $profile = $this->user->getProfile();
75
76         $options = array();
77         
78         ToSelector::fillOptions($this, $options);
79
80         $vid = Video::saveNew($profile, $this->url, $options);
81
82         common_redirect($vid->uri, 303);
83     }
84  
85     function showContent()
86     {
87         $form  = new VideoForm();
88         $form->show();
89     }
90 }