0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
2.2-08
/
htdocs
/
modules
/
flashvideo
/
[
Home
]
File: module.inc
<?php /* * Gallery - a web based photo album viewer and editor * Copyright (C) 2000-2007 Bharat Mediratta * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 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 * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ /** * The implementation of the FlashVideo module * @package FlashVideo * @author Alan Harder <alan.harder@sun.com> * @author Flash Video player: Wayne Patterson <suprsidr@gmail.com> * @version $Revision: 16029 $ */ class FlashVideoModule extends GalleryModule { function FlashVideoModule() { global $gallery; $this->setId('flashvideo'); $this->setName($gallery->i18n('Flash Video')); $this->setDescription($gallery->i18n('Enable display of Flash video files')); $this->setVersion('1.0.0'); $this->setGroup('display', $gallery->i18n('Display')); $this->setCallbacks(''); $this->setRequiredCoreApi(array(7, 9)); $this->setRequiredModuleApi(array(3, 0)); } /** * @see GalleryModule::performFactoryRegistrations */ function performFactoryRegistrations() { $ret = GalleryCoreApi::registerFactoryImplementation( 'GalleryRenderer', 'FlashVideoRenderer', 'FlashVideoRenderer', 'modules/flashvideo/classes/FlashVideoRenderer.class', 'flashvideo', null); if ($ret) { return $ret; } $ret = GalleryCoreApi::registerFactoryImplementation( 'ItemAddOption', 'FlashVideoOption', 'FlashVideoOption', 'modules/flashvideo/FlashVideoOption.inc', 'flashvideo', null); if ($ret) { return $ret; } return null; } /** * @see GalleryModule::activate */ function activate($postActivationEvent=true) { global $gallery; $storage =& $gallery->getStorage(); /* Add renderer on all GalleryMovieItems with video/x-flv mime type that need it */ $query = ' SELECT [GalleryDataItem::id] FROM [GalleryDataItem] WHERE [GalleryDataItem::mimeType] = \'video/x-flv\' '; list ($ret, $searchResults) = $gallery->search($query); if ($ret) { return array($ret, null); } $ids = array(); while ($result = $searchResults->nextResult()) { $ids[] = (int)$result[0]; } while (!empty($ids)) { $itemIds = array_splice($ids, 0, 100); list ($ret, $items) = GalleryCoreApi::loadEntitiesById($itemIds); if ($ret) { return array($ret, null); } foreach ($items as $item) { if (GalleryUtilities::isA($item, 'GalleryMovieItem') && !$item->getRenderer()) { list ($ret, $lockId) = GalleryCoreApi::acquireWriteLock($item->getId()); if ($ret) { return array($ret, null); } list ($ret, $item) = $item->refresh(); if ($ret) { GalleryCoreApi::releaseLocks($lockId); return array($ret, null); } $item->setRenderer('FlashVideoRenderer'); $ret = $item->save(); if ($ret) { GalleryCoreApi::releaseLocks($lockId); return array($ret, null); } $ret = GalleryCoreApi::releaseLocks($lockId); if ($ret) { return array($ret, null); } } } $ret = $storage->checkPoint(); if ($ret) { return array($ret, null); } } list ($ret, $redirect) = parent::activate($postActivationEvent); if ($ret) { return array($ret, null); } return array(null, $redirect); } /** * @see GalleryPlugin::uninstall */ function uninstall() { $ret = GalleryCoreApi::deleteRenderer('FlashVideoRenderer'); if ($ret) { return $ret; } return parent::uninstall(); } } ?>