]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php
Merge branch '1.0.x' of git://gitorious.org/statusnet/mainline
[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             break;
48         case 'PhotouploadAction':
49             include_once $dir . '/lib/photolib.php';
50             include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
51             break;
52         default:
53             break;
54         }
55
56         include_once $dir . '/classes/gnusocialphoto.php';
57         include_once $dir . '/classes/gnusocialphotoalbum.php';
58         return true;
59     }
60
61     function onCheckSchema()
62     {
63         $schema = Schema::get();
64         $schema->ensureTable('GNUsocialPhoto',
65                                 array(new ColumnDef('notice_id', 'int(11)', null, false),
66                                       new ColumnDef('album_id', 'int(11)', null, false),
67                                       new ColumnDef('uri', 'varchar(512)', null, false),
68                                       new ColumnDef('thumb_uri', 'varchar(512)', null, false)));
69         $schema->ensureTable('GNUsocialPhotoAlbum',
70                                 array(new ColumnDef('album_id', 'int(11)', null, false, 'PRI', null, null, true),
71                                       new ColumnDef('profile_id', 'int(11)', null, false),
72                                       new ColumnDef('album_name', 'varchar(256)', null, false)));
73                                           
74     }
75
76     function onRouterInitialized($m)
77     {
78         $m->connect(':nickname/photos', array('action' => 'photos'));
79         $m->connect('main/uploadphoto', array('action' => 'photoupload'));
80         common_log(LOG_INFO, "init'd!");
81         return true;
82     }
83
84     function onStartActivityDefaultObjectType(&$notice, &$xs, &$type)
85     {
86         $photo = GNUsocialPhoto::staticGet('notice_id', $notice->id);
87         if($photo) {
88             $type = ActivityObject::PHOTO;
89         }
90     }
91
92     function onStartActivityObjects(&$notice, &$xs, &$objects)
93     {
94         $photo = GNUsocialPhoto::staticGet('notice_id', $notice->id);
95         if($photo) {
96             $object = new ActivityObject();
97             $object->thumbnail = $photo->thumb_uri;
98             $object->largerImage = $photo->uri;
99             $object->type = ActivityObject::PHOTO;
100             
101             $object->id = $notice->id;
102             $objects[0] = $object;
103         }
104     }
105
106     function onStartHandleFeedEntry($activity)
107     {
108         if ($activity->verb == ActivityVerb::POST) {
109             $oprofile = Ostatus_profile::ensureActorProfile($activity);
110             foreach ($activity->objects as $object) {
111                 if ($object->type == ActivityObject::PHOTO) {
112                     $uri = $object->largerImage;
113                     $thumb_uri = $object->thumbnail;
114                     $profile_id = $oprofile->profile_id;
115                     $source = 'unknown'; // TODO: put something better here.
116
117                     $uri = filter_var($uri, FILTER_SANITIZE_URL);
118                     $thumb_uri = filter_var($thumb_uri, FILTER_SANITIZE_URL);
119                     $uri = filter_var($uri, FILTER_VALIDATE_URL);
120                     $thumb_uri = filter_var($thumb_uri, FILTER_VALIDATE_URL);
121                     if (!empty($uri) && !empty($thumb_uri)) {
122                         GNUsocialPhoto::saveNew($profile_id, $thumb_uri, $uri, $source);
123                     }
124                     return false;
125                 }
126             }
127         }
128         return true;
129     }
130
131
132     function onStartShowNoticeItem($action)
133     {
134         $photo = GNUsocialPhoto::staticGet('notice_id', $action->notice->id);
135         if($photo) { 
136             $action->out->elementStart('div', 'entry-title');
137             $action->showAuthor();
138             $action->out->elementStart('a', array('href' => $photo->uri));
139             $action->out->element('img', array('src' => $photo->thumb_uri));
140             $action->out->elementEnd('a');
141             $action->out->elementEnd('div');
142             $action->showNoticeInfo();
143             $action->showNoticeOptions();
144             return false;
145         }
146         return true;
147     } 
148 }