]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php
Merge branch 'master' of gitorious.org:+socialites/statusnet/gnu-social
[quix0rs-gnu-social.git] / plugins / GNUsocialPhotos / GNUsocialPhotosPlugin.php
1 <?php
2 /**
3  * GNU Social
4  * Copyright (C) 2010, 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 2010 Free Software Foundation, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  */
28
29 /* Photo sharing plugin */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 class GNUsocialPhotosPlugin extends Plugin
36 {
37
38     function onAutoload($cls)
39     {
40         $dir = dirname(__FILE__);
41
42         switch ($cls)
43         {
44         case 'PhotosAction':
45             include_once $dir . '/lib/photolib.php';
46             include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
47             return false;
48         case 'PhotouploadAction':
49             include_once $dir . '/lib/photolib.php';
50             include_once $dir . '/classes/gnusocialphoto.php';
51             include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
52             return false;
53         default:
54             return true;
55         }
56
57         return true;
58     }
59
60     function onCheckSchema()
61     {
62         $schema = Schema::get();
63         $schema->ensureTable('GNUsocialPhoto',
64                                 array(new ColumnDef('object_id', 'integer', null, false, 'PRI', true, null, null, true),
65                                       new ColumnDef('path', 'varchar(150)', null, false),
66                                       new ColumnDef('thumb_path', 'varchar(156)', null, false), // 156 = 150 + strlen('thumb.')
67                                       new ColumnDef('owner_id', 'int(11)', null, false)));
68     }
69
70     function onRouterInitialized($m)
71     {
72         $m->connect(':nickname/photos', array('action' => 'photos'));
73         $m->connect('main/uploadphoto', array('action' => 'photoupload'));
74         common_log(LOG_INFO, "init'd!");
75         return true;
76     }
77 }