| // | branch : BSF (Best So Far) | // +-----------------------------------------------------------------------+ // | file : $RCSfile$ // | last update : $Date$ // | last modifier : $Author$ // | revision : $Revision$ // +-----------------------------------------------------------------------+ // | 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 | // | | // | 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | // | USA. | // +-----------------------------------------------------------------------+ // +-----------------------------------------------------------------------+ // | parameters | // +-----------------------------------------------------------------------+ // prefix for thumbnails in "thumbnail" sub directories $conf['prefix_thumbnail'] = 'TN-'; // $conf['file_ext'] lists all extensions (case insensitive) allowed for // your PhpWebGallery installation $conf['file_ext'] = array('jpg','JPG','png','PNG','gif','GIF','mpg','zip', 'avi','mp3','ogg'); // $conf['picture_ext'] must be a subset of $conf['file_ext'] $conf['picture_ext'] = array('jpg','JPG','png','PNG','gif','GIF'); // $conf['version'] is used to verify the compatibility of the generated // listing.xml file and the PhpWebGallery version you're running $conf['version'] = 'BSF'; // $conf['use_exif'] set to true if you want to use Exif Date as "creation // date" for the element, otherwise, set to false $conf['use_exif'] = true; // $conf['use_iptc'] set to true if you want to use IPTC informations of the // element according to get_sync_iptc_data function mapping, otherwise, set // to false $conf['use_iptc'] = false; // +-----------------------------------------------------------------------+ // | functions | // +-----------------------------------------------------------------------+ /** * returns informations from IPTC metadata, mapping is done at the beginning * of the function * * @param string $filename * @return array */ function get_iptc_data($filename, $map) { $result = array(); // Read IPTC data $iptc = array(); $imginfo = array(); getimagesize($filename, $imginfo); if (isset($imginfo['APP13'])) { $iptc = iptcparse($imginfo['APP13']); if (is_array($iptc)) { $rmap = array_flip($map); foreach (array_keys($rmap) as $iptc_key) { if (isset($iptc[$iptc_key][0]) and $value = $iptc[$iptc_key][0]) { // strip leading zeros (weird Kodak Scanner software) while ($value[0] == chr(0)) { $value = substr($value, 1); } // remove binary nulls $value = str_replace(chr(0x00), ' ', $value); foreach (array_keys($map, $iptc_key) as $pwg_key) { $result[$pwg_key] = $value; } } } } } return $result; } function get_sync_iptc_data($file) { $map = array( 'keywords' => '2#025', 'date_creation' => '2#055', 'author' => '2#122', 'name' => '2#085', 'comment' => '2#120' ); $datefields = array('date_creation', 'date_available'); $iptc = get_iptc_data($file, $map); foreach ($iptc as $pwg_key => $value) { if (in_array($pwg_key, $datefields)) { if ( preg_match('/(\d{4})(\d{2})(\d{2})/', $value, $matches)) { $iptc[$pwg_key] = $matches[1].'-'.$matches[2].'-'.$matches[3]; } } } return $iptc; } /** * returns a float value coresponding to the number of seconds since the * unix epoch (1st January 1970) and the microseconds are precised : * e.g. 1052343429.89276600 * * @return float */ function get_moment() { $t1 = explode(' ', microtime()); $t2 = explode('.', $t1[0]); $t2 = $t1[1].'.'.$t2[1]; return $t2; } /** * returns the number of seconds (with 3 decimals precision) between the * start time and the end time given. * * @param float start * @param float end * @return void */ function get_elapsed_time($start, $end) { return number_format($end - $start, 3, '.', ' ').' s'; } /** * returns an array with all picture files according to $conf['file_ext'] * * @param string $dir * @return array */ function get_pwg_files($dir) { global $conf; $pictures = array(); if ($opendir = opendir($dir)) { while ($file = readdir($opendir)) { if (in_array(get_extension($file), $conf['file_ext'])) { array_push($pictures, $file); if (!preg_match('/^[a-zA-Z0-9-_.]+$/', $file)) { echo 'PWG-WARNING-2: "'.$file.'" : '; echo 'The name of the file should be composed of '; echo 'letters, figures, "-", "_" or "." ONLY'; echo "\n"; } } } } return $pictures; } /** * returns an array with all thumbnails according to $conf['picture_ext'] * and $conf['prefix_thumbnail'] * * @param string $dir * @return array */ function get_thumb_files($dir) { global $conf; $prefix_length = strlen($conf['prefix_thumbnail']); $thumbnails = array(); if ($opendir = @opendir($dir.'/thumbnail')) { while ($file = readdir($opendir)) { if (in_array(get_extension($file), $conf['picture_ext']) and substr($file,0,$prefix_length) == $conf['prefix_thumbnail']) { array_push($thumbnails, $file); } } } return $thumbnails; } /** * returns an array with representative picture files of a directory * according to $conf['picture_ext'] * * @param string $dir * @return array */ function get_representative_files($dir) { global $conf; $pictures = array(); if ($opendir = @opendir($dir.'/representative')) { while ($file = readdir($opendir)) { if (in_array(get_extension($file), $conf['picture_ext'])) { array_push($pictures, $file); } } } return $pictures; } /** * search in $basedir the sub-directories and calls get_pictures * * @return void */ function get_dirs($basedir, $indent, $level) { $fs_dirs = array(); $dirs = ""; if ($opendir = opendir($basedir)) { while ($file = readdir($opendir)) { if ($file != '.' and $file != '..' and $file != 'thumbnail' and $file != 'high' and $file != 'representative' and is_dir ($basedir.'/'.$file)) { array_push($fs_dirs, $file); if (!preg_match('/^[a-zA-Z0-9-_.]+$/', $file)) { echo 'PWG-WARNING-1: "'.$file.'" : '; echo 'The name of the directory should be composed of '; echo 'letters, figures, "-", "_" or "." ONLY'; echo "\n"; } } } } // write of the dirs foreach ($fs_dirs as $fs_dir) { $dirs.= "\n".$indent.'
'; switch ($page['action']) { case 'generate' : { $start = get_moment(); $listing = ''; ?>'."\n"; $listing.= get_dirs('.', '', 0); if ($fp = @fopen("./listing.xml","w")) { fwrite($fp, $listing); fclose($fp); echo 'PWG-INFO-1: listing.xml created in '; echo get_elapsed_time($start, get_moment()); echo "\n"; } else { echo "PWG-ERROR-2: I can't write the file listing.xml"."\n"; } break; } case 'test' : { if (isset($_GET['version'])) { if ($_GET['version'] != $conf['version']) { echo 'PWG-ERROR-4: PhpWebGallery versions differs'."\n"; } else { echo 'PWG-INFO-2: test successful'."\n"; } } else { echo 'PWG-INFO-2: test successful'."\n"; } break; } case 'clean' : { if( @unlink('./listing.xml')) { echo 'PWG-INFO-3 : listing.xml file deleted'."\n"; } else { echo 'PWG-ERROR-3 : listing.xml does not exist'."\n"; } break; } } echo '