123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?php
- /**
- * GNU Social
- * Copyright (C) 2011, 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 2011 Free Software Foundation, Inc.
- * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
- */
- if (!defined('STATUSNET')) {
- exit(1);
- }
- class GNUsocialPhotoPlugin extends MicroAppPlugin
- {
- var $oldSaveNew = true;
- function onCheckSchema()
- {
- $schema = Schema::get();
- $schema->ensureTable('photo', Photo::schemaDef());
- return true;
- }
- function onRouterInitialized($m)
- {
- $m->connect('main/photo/new', array('action' => 'newphoto'));
- $m->connect('main/photo/:id', array('action' => 'showphoto'));
- return true;
- }
- function entryForm($out)
- {
- return new NewPhotoForm($out);
- }
- function appTitle()
- {
- return _('Photo');
- }
- function tag()
- {
- return 'Photo';
- }
- function types()
- {
- return array(Photo::OBJECT_TYPE);
- }
- function saveNoticeFromActivity(Activity $activity, Profile $actor, array $options=array())
- {
- if(count($activity->objects) != 1) {
- throw new Exception('Too many activity objects.');
- }
- $photoObj = $activity->objects[0];
- if ($photoObj->type != Photo::OBJECT_TYPE) {
- throw new Exception('Wrong type for object.');
- }
- $photo_uri = $photoObj->largerImage;
- $thumb_uri = $photo_uri;
- if(!empty($photoObj->thumbnail)){
- $thumb_uri = $photoObj->thumbnail;
- }
- $description = $photoObj->description;
- $title = $photoObj->title;
-
- $options['object_type'] = Photo::OBJECT_TYPE;
- Photo::saveNew($actor, $photo_uri, $thumb_uri, $title, $description, $options);
-
- }
- function activityObjectFromNotice(Notice $notice)
- {
- $photo = Photo::getByNotice($notice);
-
- $object = new ActivityObject();
- $object->id = $notice->uri;
- $object->type = Photo::OBJECT_TYPE;
- $object->title = $photo->title;
- $object->summary = $notice->content;
- $object->link = $notice->getUrl();
- $object->largerImage = $photo->photo_uri;
- $object->thumbnail = $photo->thumb_uri;
- $object->description = $photo->description;
-
- return $object;
-
- }
- function showNoticeContent(Notice $notice, HTMLOutputter $out)
- {
- $photo = Photo::getByNotice($notice);
- if ($photo) {
- if($photo->title){
- // TODO: ugly. feel like we should have a more abstract way
- // of choosing the h-level.
- $out->element('h3', array(), $title);
- }
- $out->element('img', array('src' => $photo->photo_uri,
- 'width' => '100%'));
- // TODO: add description
- }
- }
- function deleteRelated(Notice $notice)
- {
- $photo = Photo::getByNotice($notice);
- if ($photo) {
- $photo->delete();
- }
- }
- }
|