2010-08-03 00:22:55 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* GNU Social
|
|
|
|
* Copyright (C) 2010, Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE:
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Widget
|
|
|
|
* @package GNU Social
|
|
|
|
* @author Ian Denhardt <ian@zenhack.net>
|
|
|
|
* @copyright 2010 Free Software Foundation, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Photo sharing plugin */
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
class GNUsocialPhotosPlugin extends Plugin
|
|
|
|
{
|
|
|
|
|
|
|
|
function onAutoload($cls)
|
|
|
|
{
|
|
|
|
$dir = dirname(__FILE__);
|
|
|
|
|
|
|
|
switch ($cls)
|
|
|
|
{
|
|
|
|
case 'PhotosAction':
|
2010-08-05 18:11:34 +01:00
|
|
|
include_once $dir . '/lib/photolib.php';
|
2010-08-03 00:22:55 +01:00
|
|
|
include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
|
2010-08-11 15:54:06 +01:00
|
|
|
break;
|
2010-08-04 22:26:55 +01:00
|
|
|
case 'PhotouploadAction':
|
2010-08-05 18:11:34 +01:00
|
|
|
include_once $dir . '/lib/photolib.php';
|
2010-08-04 22:26:55 +01:00
|
|
|
include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
|
2010-08-11 15:54:06 +01:00
|
|
|
break;
|
2010-08-03 00:22:55 +01:00
|
|
|
default:
|
2010-08-11 15:54:06 +01:00
|
|
|
break;
|
2010-08-03 00:22:55 +01:00
|
|
|
}
|
|
|
|
|
2010-08-16 21:21:27 +01:00
|
|
|
include_once $dir . '/classes/gnusocialphoto.php';
|
2010-08-03 00:22:55 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-08-04 22:26:55 +01:00
|
|
|
function onCheckSchema()
|
|
|
|
{
|
|
|
|
$schema = Schema::get();
|
2010-08-05 18:11:34 +01:00
|
|
|
$schema->ensureTable('GNUsocialPhoto',
|
2010-08-16 21:21:27 +01:00
|
|
|
array(new ColumnDef('notice_id', 'int(11)', null, false),
|
2010-09-04 22:17:52 +01:00
|
|
|
new ColumnDef('album_id', 'int(11)', null, false),
|
|
|
|
//new ColumnDef('album_name', 'varchar(30)', null, false),
|
2010-08-16 21:21:27 +01:00
|
|
|
new ColumnDef('uri', 'varchar(512)', null, false),
|
|
|
|
new ColumnDef('thumb_uri', 'varchar(512)', null, false)));
|
2010-08-04 22:26:55 +01:00
|
|
|
}
|
|
|
|
|
2010-08-03 00:22:55 +01:00
|
|
|
function onRouterInitialized($m)
|
|
|
|
{
|
2010-08-03 18:21:11 +01:00
|
|
|
$m->connect(':nickname/photos', array('action' => 'photos'));
|
2010-08-04 22:26:55 +01:00
|
|
|
$m->connect('main/uploadphoto', array('action' => 'photoupload'));
|
2010-08-03 00:22:55 +01:00
|
|
|
common_log(LOG_INFO, "init'd!");
|
|
|
|
return true;
|
|
|
|
}
|
2010-08-11 15:54:06 +01:00
|
|
|
|
2010-08-11 17:39:10 +01:00
|
|
|
function onStartActivityDefaultObjectType(&$notice, &$xs, &$type)
|
2010-08-11 15:54:06 +01:00
|
|
|
{
|
|
|
|
$photo = GNUsocialPhoto::staticGet('notice_id', $notice->id);
|
|
|
|
if($photo) {
|
|
|
|
$type = ActivityObject::PHOTO;
|
|
|
|
}
|
2010-08-16 21:21:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function onStartActivityObjects(&$notice, &$xs, &$objects)
|
|
|
|
{
|
|
|
|
$photo = GNUsocialPhoto::staticGet('notice_id', $notice->id);
|
|
|
|
if($photo) {
|
|
|
|
$object = new ActivityObject();
|
|
|
|
$object->thumbnail = $photo->thumb_uri;
|
|
|
|
$object->largerImage = $photo->uri;
|
|
|
|
$object->type = ActivityObject::PHOTO;
|
|
|
|
|
|
|
|
$object->id = $notice->id;
|
|
|
|
$objects[0] = $object;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onStartHandleFeedEntry($activity)
|
|
|
|
{
|
|
|
|
if ($activity->verb == ActivityVerb::POST) {
|
|
|
|
$oprofile = Ostatus_profile::ensureActorProfile($activity);
|
|
|
|
foreach ($activity->objects as $object) {
|
|
|
|
if ($object->type == ActivityObject::PHOTO) {
|
|
|
|
$uri = $object->largerImage;
|
|
|
|
$thumb_uri = $object->thumbnail;
|
|
|
|
$profile_id = $oprofile->profile_id;
|
|
|
|
$source = 'unknown'; // TODO: put something better here.
|
|
|
|
|
|
|
|
$uri = filter_var($uri, FILTER_SANITIZE_URL);
|
|
|
|
$thumb_uri = filter_var($thumb_uri, FILTER_SANITIZE_URL);
|
|
|
|
$uri = filter_var($uri, FILTER_VALIDATE_URL);
|
|
|
|
$thumb_uri = filter_var($thumb_uri, FILTER_VALIDATE_URL);
|
|
|
|
if (!empty($uri) && !empty($thumb_uri)) {
|
|
|
|
GNUsocialPhoto::saveNew($profile_id, $thumb_uri, $uri, $source);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-09-04 04:00:34 +01:00
|
|
|
|
2010-08-11 15:54:06 +01:00
|
|
|
function onStartShowNoticeItem($action)
|
|
|
|
{
|
|
|
|
$photo = GNUsocialPhoto::staticGet('notice_id', $action->notice->id);
|
|
|
|
if($photo) {
|
2010-08-11 16:08:08 +01:00
|
|
|
$action->out->elementStart('div', 'entry-title');
|
|
|
|
$action->showAuthor();
|
2010-09-04 04:00:34 +01:00
|
|
|
$action->out->elementStart('a', array('href' => $photo->uri));
|
|
|
|
$action->out->element('img', array('src' => $photo->thumb_uri));
|
2010-08-11 15:54:06 +01:00
|
|
|
$action->out->elementEnd('a');
|
2010-08-11 16:08:08 +01:00
|
|
|
$action->out->elementEnd('div');
|
2010-08-11 15:54:06 +01:00
|
|
|
$action->showNoticeInfo();
|
|
|
|
$action->showNoticeOptions();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2010-09-04 04:00:34 +01:00
|
|
|
}
|
2010-08-03 00:22:55 +01:00
|
|
|
}
|