]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialVideo/actions/showvideo.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / GNUsocialVideo / actions / showvideo.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  * @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
28 if(!defined('STATUSNET')){
29     exit(1);
30 }
31
32 class ShowvideoAction extends ShownoticeAction
33 {
34     protected $id = null;
35     protected $vid = null;
36
37     function prepare(array $args=array())
38     {
39         OwnerDesignAction::prepare($args);
40         $this->id = $this->trimmed('id');
41         $this->vid = Video::getKV('id', $this->id);
42
43         if (empty($this->vid)) {
44             throw new ClientException(_('No such video.'), 404);
45         }
46
47         $this->notice = $this->vid->getNotice();
48
49         if (empty($this->notice)) {
50             throw new ClientException(_('No such video'), 404);
51         }
52
53         $this->user = User::getKV('id', $this->vid->profile_id);
54
55         if (empty($this->user)) {
56             throw new ClientException(_('No such user.'), 404);
57         }
58
59         $this->profile = $this->user->getProfile();
60
61         if (empty($this->profile)) {
62             throw new ServerException(_('User without a profile.'));
63         }
64
65         return true;
66     }
67 }