From 1cee48d57a3e9946fcbf85b207d9fbcf17bdb1bb Mon Sep 17 00:00:00 2001 From: hsur Date: Sun, 6 Jun 2010 11:59:35 +0000 Subject: [PATCH 1/1] NP_Paint v1.18 git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/plugin@1062 1ca29b6e-896d-4ea0-84a5-967f57386b96 --- trunk/NP_Paint/NP_Paint.php | 940 ++++ trunk/NP_Paint/paint/Applet_PaintBBS.php | 83 + trunk/NP_Paint/paint/Applet_Shipainter.php | 88 + trunk/NP_Paint/paint/Applet_Shipainterpro.php | 87 + trunk/NP_Paint/paint/PaintPlugin.php | 100 + trunk/NP_Paint/paint/Palette_None.php | 48 + trunk/NP_Paint/paint/Palette_Selfy.php | 80 + trunk/NP_Paint/paint/Palette_WCS.php | 111 + trunk/NP_Paint/paint/Parser_PaintBBS.php | 145 + trunk/NP_Paint/paint/Viewer_Continue.php | 84 + trunk/NP_Paint/paint/Viewer_Pch.php | 78 + trunk/NP_Paint/paint/Viewer_Spch.php | 78 + trunk/NP_Paint/paint/applet/index.html | 11 + trunk/NP_Paint/paint/applet/readme.txt | 17 + trunk/NP_Paint/paint/help.html | 1 + trunk/NP_Paint/paint/index.php | 240 + trunk/NP_Paint/paint/language/japanese-euc.php | 76 + trunk/NP_Paint/paint/language/japanese-utf8.php | 76 + trunk/NP_Paint/paint/mkeuc.sh | 9 + trunk/NP_Paint/paint/paint.css | 9 + trunk/NP_Paint/paint/paint.js | 70 + trunk/NP_Paint/paint/prototype-1.4.0.js | 1781 ++++++ .../applet_paintbbs/copyrights_japanese-euc.html | 3 + .../applet_paintbbs/copyrights_japanese-utf8.html | 3 + .../applet_paintbbs/pagetemplate_japanese-euc.html | 140 + .../pagetemplate_japanese-utf8.html | 140 + .../applet_shipainter/copyrights_japanese-euc.html | 3 + .../copyrights_japanese-utf8.html | 3 + .../pagetemplate_japanese-euc.html | 137 + .../pagetemplate_japanese-utf8.html | 137 + .../copyrights_japanese-euc.html | 3 + .../copyrights_japanese-utf8.html | 3 + .../pagetemplate_japanese-euc.html | 137 + .../pagetemplate_japanese-utf8.html | 137 + .../paint/template/index/help_japanese-euc.html | 314 ++ .../paint/template/index/help_japanese-utf8.html | 314 ++ .../paint/template/index/menu_japanese-euc.html | 7 + .../paint/template/index/menu_japanese-utf8.html | 7 + .../paint/template/np_paint/form_japanese-euc.html | 40 + .../template/np_paint/form_japanese-utf8.html | 40 + .../paint/template/np_paint/ok_japanese-euc.html | 15 + .../paint/template/np_paint/ok_japanese-utf8.html | 15 + .../palette_wcs/extraoption_japanese-euc.html | 19 + .../palette_wcs/extraoption_japanese-utf8.html | 19 + .../viewer_continue/pagetemplate_japanese-euc.html | 64 + .../pagetemplate_japanese-utf8.html | 64 + .../viewer_pch/pagetemplate_japanese-euc.html | 27 + .../viewer_pch/pagetemplate_japanese-utf8.html | 27 + .../viewer_spch/pagetemplate_japanese-euc.html | 25 + .../viewer_spch/pagetemplate_japanese-utf8.html | 25 + trunk/NP_Paint/sharedlibs/cles/Feedback.php | 178 + trunk/NP_Paint/sharedlibs/cles/Template.php | 87 + trunk/NP_Paint/sharedlibs/pclzip.lib.php | 5748 ++++++++++++++++++++ trunk/NP_Paint/sharedlibs/sharedlibs.php | 51 + 54 files changed, 12144 insertions(+) create mode 100644 trunk/NP_Paint/NP_Paint.php create mode 100644 trunk/NP_Paint/paint/Applet_PaintBBS.php create mode 100644 trunk/NP_Paint/paint/Applet_Shipainter.php create mode 100644 trunk/NP_Paint/paint/Applet_Shipainterpro.php create mode 100644 trunk/NP_Paint/paint/PaintPlugin.php create mode 100644 trunk/NP_Paint/paint/Palette_None.php create mode 100644 trunk/NP_Paint/paint/Palette_Selfy.php create mode 100644 trunk/NP_Paint/paint/Palette_WCS.php create mode 100644 trunk/NP_Paint/paint/Parser_PaintBBS.php create mode 100644 trunk/NP_Paint/paint/Viewer_Continue.php create mode 100644 trunk/NP_Paint/paint/Viewer_Pch.php create mode 100644 trunk/NP_Paint/paint/Viewer_Spch.php create mode 100644 trunk/NP_Paint/paint/applet/index.html create mode 100644 trunk/NP_Paint/paint/applet/readme.txt create mode 100644 trunk/NP_Paint/paint/help.html create mode 100644 trunk/NP_Paint/paint/index.php create mode 100644 trunk/NP_Paint/paint/language/japanese-euc.php create mode 100644 trunk/NP_Paint/paint/language/japanese-utf8.php create mode 100644 trunk/NP_Paint/paint/mkeuc.sh create mode 100644 trunk/NP_Paint/paint/paint.css create mode 100644 trunk/NP_Paint/paint/paint.js create mode 100644 trunk/NP_Paint/paint/prototype-1.4.0.js create mode 100644 trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/index/help_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/index/help_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/index/menu_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/index/menu_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/np_paint/form_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/np_paint/form_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/np_paint/ok_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/np_paint/ok_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-utf8.html create mode 100644 trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-euc.html create mode 100644 trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-utf8.html create mode 100644 trunk/NP_Paint/sharedlibs/cles/Feedback.php create mode 100644 trunk/NP_Paint/sharedlibs/cles/Template.php create mode 100644 trunk/NP_Paint/sharedlibs/pclzip.lib.php create mode 100644 trunk/NP_Paint/sharedlibs/sharedlibs.php diff --git a/trunk/NP_Paint/NP_Paint.php b/trunk/NP_Paint/NP_Paint.php new file mode 100644 index 0000000..7f9ef16 --- /dev/null +++ b/trunk/NP_Paint/NP_Paint.php @@ -0,0 +1,940 @@ +createOption('defaultWidth', _PAINT_defaultWidth, 'text', '300', 'numerical=true'); + $this->createOption('defaultHeight', _PAINT_defaultHeight, 'text', '300', 'numerical=true'); + $this->createOption('defaultAnimation', _PAINT_defaultAnimation, 'yesno', 'yes'); + $this->createOption('defaultApplet', _PAINT_defaultApplet, 'select', '', ''); + $this->createOption('defaultPalette', _PAINT_defaultPalette, 'select', '', ''); + + $this->createOption('defaultImgType', _PAINT_defaultImgType, 'select', 'AUTO', 'AUTO|AUTO|JPG|JPG|PNG|PNG'); + $this->createOption('defaultImgCompress', _PAINT_defaultImgCompress, 'text', '15', 'numerical=true'); + $this->createOption('defaultImgDecrease', _PAINT_defaultImgDecrease, 'text', '60', 'numerical=true'); + $this->createOption('defaultImgQuality', _PAINT_defaultImgQuality, 'text', '75', 'numerical=true'); + + $this->createOption('defaultAppletQuality', _PAINT_defaultAppletQuality, 'select', '1', '1|1|2|2|3|3|4|4|5|5'); + + $this->createOption('bodyTpl', _PAINT_bodyTpl, 'textarea', '<%paint(<%url%>|<%w%>|<%h%>|'.NP_PAINT_IMAGE_NAME.')%>'); + $this->createOption('tagTpl', _PAINT_tagTpl, 'textarea', '<%img%>'._PAINT_STAR.'Anime'); + $this->createOption('imageTpl', _PAINT_imageTpl, 'textarea', '<%image(<%url%>|<%w%>|<%h%>|<%alt%>)%><%continue%>'); + $this->createOption('continueTpl', _PAINT_continueTpl, 'textarea', '
'._PAINT_STAR.'Continue'); + // debug + $this->createOption('debug', _PAINT_debug, 'yesno', 'no'); + + // for authentication + sql_query(" + CREATE TABLE IF NOT EXISTS + ".sql_table(NP_PAINT_TICKET_TABLE).' + ( + `ticket` CHAR(40) NOT NULL, + `member` INT(11) NOT NULL, + `generated` TIMESTAMP, + PRIMARY KEY (`ticket`, `member`), + INDEX genarated_idx (`generated` DESC) + ) + '); + } + + function unInstall() { + sql_query("DROP TABLE ".sql_table(NP_PAINT_TICKET_TABLE)); + } + + function getMinNucleusVersion() { return 330; } + function getMinNucleusPatchLevel() { return 0; } + + // a description to be shown on the installed plugins listing + function getDescription() { + return '[$Revision: 1.273 $]
' . _PAINT_DESCRIPTION; + } + + function supportsFeature($what) { + switch ($what) { + case 'SqlTablePrefix' : +// case 'HelpPage': + return 1; + default : + return 0; + } + } + + function getEventList() { + return array('PrePluginOptionsEdit', 'PreItem'); + } + + function event_PrePluginOptionsEdit(&$data) { + $this->_loadPlugin(); + $trimChar = array( + '=' => '', + '|' => '', + ';' => '', + ); + + switch($data['context']){ + case 'global': + if( $data['plugid'] != $this->getID() ) return ; + + $appletTypeinfo = ''; + foreach($this->applets as $key => $applet){ + if($appletTypeinfo) $appletTypeinfo .= '|'; + $applet->name = strtr($applet->name, $trimChar); + $key = strtr($key, $trimChar); + $appletTypeinfo .= "{$applet->name}|{$key}"; + } + $paletteTypeinfo = ''; + foreach($this->palettes as $key => $palette){ + if($paletteTypeinfo) $paletteTypeinfo .= '|'; + $palette->name = strtr($palette->name, $trimChar); + $key = strtr($key, $trimChar); + $paletteTypeinfo .= "{$palette->name}|{$key}"; + } + foreach($data['options'] as $oid => $option ){ + switch($data['options'][$oid]['name']){ + case 'defaultApplet': + $data['options'][$oid]['typeinfo'] = $appletTypeinfo; + break; + case 'defaultPalette': + $data['options'][$oid]['typeinfo'] = $paletteTypeinfo; + break; + } + } + + break; + default: + // nothing + } + } + +/* + function doItemVar($item, $arg){ + $arr[1] = $arg; + echo $this->_convertPaint($arr); + } +*/ + + function event_PreItem($data) { + $this->_loadPlugin(); + $preg_expr = "#<\%paint\((.*?)\)%\>#i"; + $this->currentItem = &$data["item"]; + + $this->currentItem->body = preg_replace_callback($preg_expr, array(&$this, '_convertPaint'), $this->currentItem->body); + $this->currentItem->more = preg_replace_callback($preg_expr, array(&$this, '_convertPaint'), $this->currentItem->more); + } + + function _convertPaint($matches) { + global $CONF, $DIR_MEDIA, $member; + list($url, $w, $h, $alt) = explode("|", $matches[1], 4); + + if (strstr($url,'/')) + $collection = intval(dirname($url)); + else + $collection = intval($this->currentItem->authorid); + + $vars = array ( + 'w' => intval($w), + 'h' => intval($h), + 'url' => $url, + 'alt' => $alt, + ); + + $basename = basename($url, '.jpg'); + $basename = basename($basename, '.png'); + foreach( $this->viewers as $key => $viewer ){ + foreach( $viewer->animeExt as $ext ){ + $file = $DIR_MEDIA . $collection . '/' . $basename . '.' . $ext; + if( file_exists( $file ) ){ + $vars['viewer'] = htmlspecialchars($CONF['ActionURL'] . "?action=plugin&name=Paint&type=viewer&w=".$vars['w']."&h=".$vars['h']."&file={$collection}/{$basename}.{$ext}&viewer=$key", ENT_QUOTES); + break 2; + } + } + } + + if ( $member->isLoggedIn() && $member->getID() == $collection && $this->viewers['continue'] ){ + $vars['actionurl'] = htmlspecialchars($CONF['ActionURL'] . "?action=plugin&name=Paint&type=viewer&w=".$vars['w']."&h=".$vars['h']."&file=".$url."&viewer=continue", ENT_QUOTES); + $vars['continue'] = TEMPLATE :: fill($this->getOption('continueTpl'), $vars); + } + + $vars['img'] = TEMPLATE :: fill($this->getOption('imageTpl'), $vars); + + if( $vars['viewer'] ) + return TEMPLATE :: fill($this->getOption('tagTpl'), $vars); + return $vars['img']; + } + + function init(){ + $this->template =& new cles_Template(dirname(__FILE__).'/paint/template'); + + $this->parsers = Array(); + $this->applets = Array(); + $this->palettes = Array(); + $this->viewers = Array(); + $this->files = Array(); + $this->disabledPlugin = Array(); + $this->isPluginLoaded = false; + + // include language file for this plugin + $language = ereg_replace( '[\\|/]', '', getLanguageName()); + if (file_exists($this->getDirectory().'language/'.$language.'.php')) + @ include_once($this->getDirectory().'language/'.$language.'.php'); + } + + function doAction($type) { + @ini_set('display_errors', 0); + //@ini_set('error_reporting', 0); + + global $member; + $this->_loadPlugin(); + header('Pragma: no-cache'); + header('Expires: 0'); + + switch ($type) { + case 'postimg': + $err = $this->_postimg(requestVar('parser')); + + if($err){ + $this->_warn('postimg Err: ' . $err); + $file = $line = ''; + if( ! headers_sent($file, $line) ){ + header("HTTP/1.0 500 Internal Server Error"); + header("Status: 500 Internal Server Error"); + echo 'postimg Err: ' . mb_convert_encoding($err, 'UTF-8', _CHARSET); + } else { + $this->_warn(_PAINT_HeadersAlreadySent . "file:$file, line:$line" ); + echo "error\n" . mb_convert_encoding($err, "UTF-8", _CHARSET); + } + } + // always no err + return ''; + break; + + case 'applet': + if ( ! $member->isLoggedIn() ) + return _PAINT_NeedLogin; + return $this->_showApplet(); + break; + + case 'postsuccess': + if ( ! $member->isLoggedIn() ) + return _PAINT_NeedLogin; + + if( intRequestVar('ow') ){ + $this->_showOk(); + return ''; + } + + return $this->_showItemAddForm(); + break; + + case 'viewer': + return $this->_showViewer(); + break; + + case 'plugin': + echo 'NP_Paint: ' . $this->getVersion() . ' ($Id: NP_Paint.php,v 1.273 2010/06/06 11:44:19 hsur Exp $)
'; + foreach( $this->parsers as $key => $name){ + echo 'Parser: ' . $key . ' (' . $name->id . ')
'; + } + foreach( $this->applets as $key => $name){ + echo 'Applet: ' . $key . ' (' . $name->id . ')
'; + } + foreach( $this->palettes as $key => $name){ + echo 'Palette: ' . $key . ' (' . $name->id . ')
'; + } + foreach( $this->viewers as $key => $name){ + echo 'Viewer: ' . $key . ' (' . $name->id . ')
'; + } + return ''; + break; + + case 'getLoginkey': + if ( $member->isLoggedIn() ){ + header('Content-Type: application/xml'); + echo $this->_getLoginkey(); + } else { + header("HTTP/1.0 500 Internal Server Error"); + header("Status: 500 Internal Server Error"); + echo _PAINT_NeedLogin; + } + return ''; + break; + + // other actions result in an error + case '': + default: + return 'Unexisting action: ' . $type; + } + } + + function doSkinVar($skinType, $type = '') { + global $member, $CONF; + + if($mes = $this->_phpVersionWarning() ){ + echo $mes; + $this->_warn($mes); + } + + switch ($type) { + case '' : + case 'form' : + if ( $member->isLoggedIn() ){ + $this->_loadPlugin(); + $vars = array ( + 'ActionURL' => $CONF['ActionURL'], + 'appletSelect' => $this->_getAppletSelect(), + 'paletteSelect' => $this->_getPaletteSelect(), + 'paletteSelectExtra' => $this->_getPaletteSelectExtra(), + 'qualitySelect' => $this->_getQualitySelect(), + 'animation' => ($this->getOption('defaultAnimation') == 'yes') ? 'checked="checked"' : '', + 'defaultWidth' => $this->getOption('defaultWidth'), + 'defaultHeight' => $this->getOption('defaultHeight'), + ); + $tpl = $this->template->fetch('form', strtolower(__CLASS__)); + echo $this->template->fill($tpl, $vars, false); + } else { + echo 'Powered by NP_Paint'; + } + break; + } + } + + function _phpVersionWarning(){ + $required = '4.3.2'; + if( ! version_compare(phpversion() , $required , '>=') ){ + return 'Warning' . _PAINT_phpVersion_before . $required . _PAINT_phpVersion_after ; + } + return ''; + } + + function _showApplet(){ + global $DIR_MEDIA, $CONF, $member; + + $w = intRequestVar('w') ? intRequestVar('w') : $this->getOption('defaultWidth'); + $h = intRequestVar('h') ? intRequestVar('h') : $this->getOption('defaultHeight'); + $animation = intRequestVar('animation') ? true : false; + $ow = intRequestVar('ow'); + $usePch = intRequestVar('usepch') ? true : false; + $file = requestVar('file'); + $quality = intRequestVar('quality') ? intRequestVar('quality') : 1 ; + + if( $file ){ + $collection = intval(dirname($file)); + if( $collection != intval($member->getID()) ){ + $file = null; + $this->_warn( _PAINT_illegalCollection ); + } + } + + $applet =& $this->applets[requestVar('applet')]; + if(! $applet ){ + $this->_warn(_PAINT_canNotFindApplet); + return _PAINT_canNotFindApplet; + } + $palette =& $this->palettes[requestVar('palette')]; + + $header = $beforeapplet = $param = $afterapplet = $copyright = ''; + + if($applet){ + $header .= $applet->getHeaderPart(); + $beforeapplet .= $applet->getBeforeAppletPart(); + $param .= $applet->getParamPart(); + $afterapplet .= $applet->getAfterAppletPart(); + $copyright .= $applet->getCopyrightsPart(); + } + + if($palette){ + $header .= $palette->getHeaderPart(); + $beforeapplet .= $palette->getBeforeAppletPart(); + $param .= $palette->getParamPart(); + $afterapplet .= $palette->getAfterAppletPart(); + $copyright .= $palette->getCopyrightsPart(); + } + + if( $animation ){ + $param .= ''; + } + + $copyright .= 'NP_Paint by cles
'; + + if( $file && file_exists( $DIR_MEDIA . $file ) ){ + $appletName = requestVar('applet'); + list($animePath, $appletName) = $this->findAppletByImg($file); + + if( $animePath && $usePch ){ + $param .= ''; + $param .= ""; + } else { + $param .= ""; + } + + if( $ow ){ + list($prefix, ) = explode('-', basename($file), 2); + } else { + $prefix = $this->_getFilePrefix(); + } + } else { + $prefix = $this->_getFilePrefix(); + $ow = 0; + } + + $vars = array ( + 'w' => $w, + 'h' => $h, + 'user' => $member->getDisplayName(), + 'loginkey' => $this->_generateLoginkey(), + 'prefix' => $prefix, + 'charset' => _CHARSET, + 'header' => $header, + 'beforeapplet' => $beforeapplet, + 'param' => $param, + 'afterapplet' => $afterapplet, + 'copyright' => $copyright, + 'ow' => $ow, + 'file' => $file, + 'imgJpeg' => ( $this->getOption('defaultImgType') == 'AUTO' ) ? 'true' : 'false', + 'imgDecrease' => ( $this->getOption('defaultImgType') == 'AUTO' ) ? $this->getOption('defaultImgDecrease') : '0', + 'imgCompress' => ( $this->getOption('defaultImgType') == 'AUTO' ) ? $this->getOption('defaultImgCompress') : '0', + 'quality' => $quality, + ); + + echo $applet->getPageTemplate($vars); + return ''; + } + + // return list($animeFile, $appletName) + function findAppletByImg($file){ + global $DIR_MEDIA; + $collection = intval(dirname($file)); + $basename = basename($file, '.jpg'); + $basename = basename($basename, '.png'); + + foreach( $this->applets as $key => $applet ){ + foreach( $applet->animeExt as $ext ){ + $anime = $DIR_MEDIA . $collection . '/' . $basename . $ext; + if( file_exists( $anime ) ){ + $appletName = $key; + $animeFile = $collection . '/' . $basename . $ext; + $ret = Array($animeFile, $appletName); + return $ret; + } + } + } + return null; + } + + function getFileInfo($animeFile){ + global $DIR_MEDIA; + + list(,$ext) = explode('.', basename($animeFile), 2); + $animeFile = $DIR_MEDIA . $animeFile; + + $fileInfo = Array(); + if( is_readable($animeFile) && ($ext == 'spch' || $ext == 'rpch') ){ + $fp = fopen($animeFile, 'r'); + while (!feof ($fp)) { + $line = fgets($fp, 100); + if (preg_match('/([a-zA-Z0-9_.-]+)=([a-zA-Z0-9_.-]+)/i', $line, $matches)) { + list(, $key, $value, ) = $matches; + $fileInfo[$key] = $value; + } else { + break; + } + } + fclose($fp); + } + return $fileInfo; + } + + function _showViewer(){ + global $member; + + if( ! $file = requestVar('file') ){ + return _PAINT_fileIsNotSet; + } + if( ! $type = requestVar('viewer') ){ + return _PAINT_viewerIsNotSet; + } + + $w = intRequestVar('w') ? intRequestVar('w') : $this->getOption('defaultWidth'); + $h = intRequestVar('h') ? intRequestVar('h') : $this->getOption('defaultHeight'); + + if( ! $viewer = $this->viewers[$type] ){ + return _PAINT_canNotFindViewer .' viewer:' . $type; + } + if( $type == 'continue' ){ + if ( ! $member->isLoggedIn() ) + return _PAINT_NeedLogin; + $collection = intval(dirname($file)); + if ( $collection != $member->getId() ){ + return _PAINT_illegalCollection; + } + } + + $vars = array ( + 'w' => intval($w), + 'h' => intval($h), + 'file' => $file, + 'charset' => _CHARSET, + ); + + echo $viewer->getPageTemplate($vars); + return ''; + } + + function _loadPlugin( $typelist = false, $reload = false ){ + if( $this->isPluginLoaded && ( ! $reload ) ) + return ; + if( $this->isPluginLoaded ){ + $this->init(); + } + + $this->isPluginLoaded = true; + + if( ! $typelist ){ + $typelist = 'Applet|Palette|Parser|Viewer'; + } + + $pluginDir = $this->getDirectory(); + $dirhandle = opendir( $pluginDir ); + while ($filename = readdir($dirhandle)) { + if (preg_match('/^('.$typelist.')_(.*)\.php$/i',$filename,$matches)) { + list(, $type, $name, ) = $matches; + + $pluginPath = $pluginDir . $filename; + if( ! is_readable( $pluginPath ) ){ + $this->_warn(_PAINT_canNotReadFile . " file:$pluginPath, type:$type, name:$name"); + continue; + } + + require_once($pluginPath); + if( class_exists($type . '_' . $name) ){ + eval('$plugin =& new ' . $type . '_' . $name . '();'); + $plugin->appletBaseUrl = $this->getAdminURL() . 'applet/'; + $plugin->template =& $this->template; + + if( $plugin->enable ){ + //$this->_info('Plugin installed: ' . $name); + switch( strtolower($type) ){ + case 'parser': + $this->parsers[strtolower($name)] =& $plugin; + break; + case 'applet': + $this->applets[strtolower($name)] =& $plugin; + break; + case 'palette': + $this->palettes[strtolower($name)] =& $plugin; + break; + case 'viewer': + $this->viewers[strtolower($name)] =& $plugin; + break; + default: + // nothing + $this->_warn('Unknown plugin: ' . $name); + } + } else { + $this->disabledPlugin[strtolower($type.'_'.$name)] =& $plugin; + } + } else { + $this->_warn(_PAINT_canNotLoadClass . " file:$pluginPath, type:$type, name:$name"); + continue; + } + } + } + closedir($dirhandle); + } + + function _postimg($parser){ + global $member, $DIR_MEDIA; + + $parser =& $this->parsers[$parser]; + if(! $parser ){ + $this->_warn('Parser not found'); + return 'Parser not found'; + } + + $data =& $parser->parse(); + // exist parse error + if( ! is_array($data) ){ + $this->_warn($data); + return $data; + } + + // Login check + $user = ''; + $loginkey = ''; + if( $data['header'] ){ + if (preg_match('/user=([^&=]+)&loginkey=([^&=]+)&prefix=([^&=]+)&ow=([^&=]+)&applet=([^&=]+)/i', urldecode($data['header']), $word)) { + list(, $user, $loginkey, $prefix, $ow, $applet, ) = $word; + } + } + + if( ! MEMBER::exists($user) ){ + $this->_warn("User Not Found ( user:$user, loginkey:$loginkey, prefix:$prefix )"); + return _PAINT_UserNotFound; + } + + $member =& MEMBER::createFromName($user); + if ( ! $this->_checkLoginkey($loginkey, intval($member->getID())) ){ + $this->_warn("Invalid Ticket ( user:$user, loginkey:$loginkey, prefix:$prefix )"); + return _PAINT_InvalidTicket; + } + $member->loggedin = 1; + $this->_info("Login OK ( user:$user, loginkey:$loginkey, prefix:$prefix)"); + $this->_info(count($data['images']) . ' images found.'); + foreach( $data['size'] as $idx => $size ){ + $this->_info('DataSize['.$idx.']: '.$size); + } + + if( $prefix ){ + $this->_getFilePrefix($prefix); + } else { + $this->_warn(_PAINT_canNotFindPrefix); + $this->_getFilePrefix(); + } + + $collection = intval($member->getID()); + // ow delete + if( $ow ){ + foreach( Array('.jpg', '.png', '.pch', '.spch', '.rpch') as $ext ){ + if( file_exists( $file = $DIR_MEDIA . $collection . '/' . $this->_getFilePrefix() . '-' . NP_PAINT_IMAGE_NAME . $ext ) ){ + if( unlink($file) ){ + $this->_info(_PAINT_deleteFile . ' file:'. $file); + } else { + $this->_warn(_PAINT_deleteFile_failure . ' file:'. $file); + } + } + } + } + + foreach( $data['images'] as $idx => $imgdata ){ + $imgDir = $DIR_MEDIA . $collection; + $tmpFileName = $this->_getFilePrefix() . '_'. $idx . '.tmp'; + + $this->_info('tmpfile: '.$tmpFileName); + $err = MEDIA::addMediaObjectRaw($collection, $tmpFileName, $imgdata); + if($err){ + $this->_warn('addMediaObjectRaw Error: '. $err); + return $err; + } + + $imageSize = @GetImageSize($imgDir . '/' . $tmpFileName); + // detect file type + if($imageSize === false){ + switch( $applet ){ + case 'paintbbs': + $suffix = '.pch'; + break; + case 'shipainter': + $suffix = '.spch'; + break; + case 'shipainterpro': + $suffix = '.rpch'; + break; + } + } else { + switch($imageSize[2]){ + case IMAGETYPE_JPEG: + $suffix = '.jpg'; + break; + case IMAGETYPE_PNG: + $suffix = '.png'; + break; + default: + $suffix = '.dat'; + } + } + + $filename = $this->_getFilePrefix() . '-' . NP_PAINT_IMAGE_NAME .$suffix; + if( rename($imgDir . '/' . $tmpFileName, $imgDir . '/' . $filename ) === FALSE ){ + $this->_warn(_PAINT_rename_failure . ": {$tmpFileName} => {$filename}" ); + } else { + $this->_info(_PAINT_rename_ok . ": {$tmpFileName} => {$filename}" ); + } + + + if( !( function_exists('ImageTypes') && defined('IMG_JPG') && defined('IMG_PNG') )){ + $this->_info(_PAINT_GDNotSupported); + continue; + } + + if( $this->getOption('defaultImgType') == 'JPG' && $suffix == '.png' && (@ImageTypes() & IMG_JPG) ){ + $this->_info(_PAINT_convertToJpg); + $imgres = @ImageCreateFromPNG($imgDir . '/' . $filename); + if( $imgres ){ + $suffix = '.jpg'; + $filename = $this->_getFilePrefix() . '-'. NP_PAINT_IMAGE_NAME . $suffix; + $this->_info('convertedFilename: ' . $filename); + if( @ImageJPEG($imgres, $imgDir . '/' . $filename, $this->getOption('defaultImgQuality'))){ + $this->_info(_PAINT_convertToJpg_succeeded); + if( @unlink($imgDir . '/' . $filename) ){ + $this->_info(_PAINT_deleteFile . ':'. $filename); + } else { + $this->_warn(_PAINT_deleteFile_failure .':'. $filename); + } + } else { + $this->_warn(_PAINT_convertToJpg_failure); + } + @ImageDestroy($imgres); + } else { + $this->_warn(_PAINT_pngRead_failure); + } + } + } + return ''; + } + + function _getFilePrefix($prefix = ''){ + if( $prefix ) + $this->filePrefix = $prefix; + if( ! $this->filePrefix ) + $this->filePrefix = date('YmdHis'); +// $this->filePrefix = uniqid(''); + return $this->filePrefix; + } + + function _showItemAddForm() { + global $member, $manager, $CONF; + $manager->loadClass('ADMIN'); + + $query = 'SELECT tblog as blogid from '.sql_table('team').' where tmember=' . intval($member->getID()) . ' limit 1'; + $res = sql_query($query); + if (mysql_num_rows($res) > 0) { + $obj = mysql_fetch_object($res); + $blogid = $obj->blogid; + } else { + return _ERROR_NOTONTEAM; + } + + $body = ''; + if( intRequestVar('w') && intRequestVar('h') && requestVar('prefix') ){ + $prefix = requestVar('prefix'); + + $collection = intval($member->getID()); + $mediaobjects = MEDIA::getMediaListByCollection($collection, $prefix . '-'.NP_PAINT_IMAGE_NAME); + + $this->_info( Count($mediaobjects) . ' mediaobject(s) found.'); + + if( Count($mediaobjects) > 0){ + foreach($mediaobjects as $mo){ + if (preg_match('/\.(jpg|png)$/i', $mo->filename)){ + $filename = $mo->filename; + break; + } + } + + $vars = array ( + 'url' => $collection . '/' . $filename, + 'w' => intRequestVar('w'), + 'h' => intRequestVar('h'), + ); + $body = TEMPLATE :: fill($this->getOption('bodyTpl'), $vars); + } + } + + $item['body'] = $body; + $item['title'] = ''; + //default category + //$item['catid'] = ''; + + ob_start(); + $factory =& new PAGEFACTORY($blogid); + $factory->createAddForm('bookmarklet',$item); + $content = ob_get_contents(); + ob_end_clean(); + + $replace = ' + +'; + $content = preg_replace ("//", $replace, $content); + + $replace = '
'; + $content = preg_replace ("/]*>/", $replace, $content); + + echo $content; + return ''; + } + + function _showOk(){ + $vars = array( + 'charset' => _CHARSET, + ); + $tpl = $this->template->fetch('ok', strtolower(__CLASS__)); + return $this->template->fill($tpl, $vars, false); + } + + function _info($msg) { + if ($this->getOption('debug') == 'yes') { + ACTIONLOG :: add(INFO, 'Paint: '.$msg); + } + } + + function _warn($msg) { + ACTIONLOG :: add(WARNING, 'Paint: '.$msg); + } + + function _getAppletSelect($default = null){ + if( $default ){ + $recomended = _PAINT_STAR; + } else { + $recomended = ''; + $default = $this->getOption('defaultApplet'); + } + + $ret = ''; + return $ret; + } + + function _getPaletteSelect(){ + $ret = ''; + return $ret; + } + function _getPaletteSelectExtra(){ + foreach( $this->palettes as $key => $palette ){ + $ret .= $palette->getExtraOption(); + } + return $ret; + } + + function _getQualitySelect($selected = null){ + if(! $selected ) + $selected = $this->getOption('defaultAppletQuality'); + $qualities = Range(1,5); + + $tpl = ''; + + return $tpl; + } + + function _generateLoginkey(){ + global $member; + $memberid = $member->getID(); + + $done = false; + $ticket = null; + while(!$done){ + $ticket = sha1(uniqid('').mt_rand(1,999999999)); + $query = sprintf('INSERT INTO ' . sql_table(NP_PAINT_TICKET_TABLE) + . "(ticket, member) VALUES('%s', %s)" + , mysql_real_escape_string( $ticket ) + , mysql_real_escape_string( intval($memberid) ) + ); + if( sql_query($query) ) $done = true; + } + return $ticket; + } + + function _checkLoginkey($ticket, $memberid ){ + $query = sprintf('SELECT count(*) as result FROM ' . sql_table(NP_PAINT_TICKET_TABLE) + . " WHERE ticket = '%s' AND member = %s AND generated > DATE_SUB(NOW(),INTERVAL %s SECOND)" + , mysql_real_escape_string( $ticket ) + , mysql_real_escape_string( intval($memberid) ) + , mysql_real_escape_string( NP_PAINT_TICKET_LIFETIME ) + ); + $result = quickQuery($query) ? true : false ; + + $query = sprintf('DELETE FROM ' . sql_table(NP_PAINT_TICKET_TABLE) + . " WHERE ticket = '%s' OR generated < DATE_SUB(NOW(),INTERVAL %s SECOND)" + , mysql_real_escape_string( $ticket ) + , mysql_real_escape_string( NP_PAINT_TICKET_LIFETIME ) + ); + sql_query($query); + + return $result; + } + + function _getLoginkey(){ + $ret = ''."\n"; + $ret .= ''.$this->_generateLoginkey().''."\n"; + return $ret; + } +} diff --git a/trunk/NP_Paint/paint/Applet_PaintBBS.php b/trunk/NP_Paint/paint/Applet_PaintBBS.php new file mode 100644 index 0000000..622c663 --- /dev/null +++ b/trunk/NP_Paint/paint/Applet_PaintBBS.php @@ -0,0 +1,83 @@ +id = '$Id: Applet_PaintBBS.php,v 1.46 2010/06/06 11:44:19 hsur Exp $'; + $this->name = _PAINT_Applet_PaintBBS_name; + $this->parser = 'paintbbs'; + + $this->magic = 'P'; + $this->animeExt = Array( + '.pch', + ); + + $requiredFiles = Array( + 'PaintBBS.jar' + ); + $this->enable = $this->isFileInstalled($requiredFiles); + + $this->templatevars['id'] = $this->id; + $this->templatevars['name'] = $this->name; + $this->templatevars['parser'] = $this->parser; + $this->templatevars['magic'] = $this->magic; + } + + function getCopyrightsPart(){ + $tpl = $this->template->fetch('copyrights', strtolower(__CLASS__)); + return $this->template->fill($tpl, $this->templatevars, false); + } + + function getPageTemplate($vars = null){ + $tpl = $this->template->fetch('pagetemplate', strtolower(__CLASS__)); + + global $CONF; + $this->templatevars['ActionURL'] = $CONF['ActionURL']; + $this->templatevars['PluginURL'] = $CONF['PluginURL']; + $this->templatevars['appletBaseUrl'] = $this->appletBaseUrl; + + $vars = array_merge((array)$vars, $this->templatevars); + return $this->template->fill($tpl, $vars, false); + } +} diff --git a/trunk/NP_Paint/paint/Applet_Shipainter.php b/trunk/NP_Paint/paint/Applet_Shipainter.php new file mode 100644 index 0000000..9b6640c --- /dev/null +++ b/trunk/NP_Paint/paint/Applet_Shipainter.php @@ -0,0 +1,88 @@ +id = '$Id: Applet_Shipainter.php,v 1.43 2010/06/06 11:44:19 hsur Exp $'; + $this->name = _PAINT_Applet_Shipainter_name; + $this->parser = 'paintbbs'; + + $this->magic = 'S'; + $this->animeExt = Array( + '.spch', + ); + + $requiredFiles = Array( + 'spainter.jar', + 'sp.js', + 'res/normal.zip', + 'res/tt.zip', + 'res/res_normal.zip', + ); + $this->enable = $this->isFileInstalled($requiredFiles); + + $this->templatevars['id'] = $this->id; + $this->templatevars['name'] = $this->name; + $this->templatevars['parser'] = $this->parser; + $this->templatevars['magic'] = $this->magic; + } + + function getCopyrightsPart(){ + $tpl = $this->template->fetch('copyrights', strtolower(__CLASS__)); + return $this->template->fill($tpl, $this->templatevars, false); + } + + function getPageTemplate($vars = null){ + $tpl = $this->template->fetch('pagetemplate', strtolower(__CLASS__)); + + global $CONF; + $this->templatevars['ActionURL'] = $CONF['ActionURL']; + $this->templatevars['PluginURL'] = $CONF['PluginURL']; + $this->templatevars['appletBaseUrl'] = $this->appletBaseUrl; + + $vars = array_merge((array)$vars, $this->templatevars); + return $this->template->fill($tpl, $vars, false); + } +} diff --git a/trunk/NP_Paint/paint/Applet_Shipainterpro.php b/trunk/NP_Paint/paint/Applet_Shipainterpro.php new file mode 100644 index 0000000..7a4b4c7 --- /dev/null +++ b/trunk/NP_Paint/paint/Applet_Shipainterpro.php @@ -0,0 +1,87 @@ +id = '$Id: Applet_Shipainterpro.php,v 1.43 2010/06/06 11:44:19 hsur Exp $'; + $this->name = _PAINT_Applet_Shipainterpro_name; + $this->parser = 'paintbbs'; + + $this->magic = 'R'; + $this->animeExt = Array( + '.rpch', + ); + + $requiredFiles = Array( + 'spainter.jar', + 'sp.js', + 'res/pro.zip', + 'res/tt.zip', + 'res/res_pro.zip', + ); + $this->enable = $this->isFileInstalled($requiredFiles); + + $this->templatevars['id'] = $this->id; + $this->templatevars['name'] = $this->name; + $this->templatevars['parser'] = $this->parser; + $this->templatevars['magic'] = $this->magic; + } + + function getCopyrightsPart(){ + $tpl = $this->template->fetch('copyrights', strtolower(__CLASS__)); + return $this->template->fill($tpl, $this->templatevars, false); + } + + function getPageTemplate($vars = null){ + $tpl = $this->template->fetch('pagetemplate', strtolower(__CLASS__)); + + global $CONF; + $this->templatevars['ActionURL'] = $CONF['ActionURL']; + $this->templatevars['PluginURL'] = $CONF['PluginURL']; + $this->templatevars['appletBaseUrl'] = $this->appletBaseUrl; + + $vars = array_merge((array)$vars, $this->templatevars); + return $this->template->fill($tpl, $vars, false); + } +} diff --git a/trunk/NP_Paint/paint/PaintPlugin.php b/trunk/NP_Paint/paint/PaintPlugin.php new file mode 100644 index 0000000..97234f2 --- /dev/null +++ b/trunk/NP_Paint/paint/PaintPlugin.php @@ -0,0 +1,100 @@ +getPlugin('NP_Paint'); + if( $plugin ) + $plugin->_info($msg); + } + + function isFileInstalled($files){ + global $DIR_PLUGINS; + + // if $files is array + if( is_array($files) ){ + foreach( $files as $file ){ + $filePath = $DIR_PLUGINS . 'paint/applet/' . $file; + if( ! file_exists($filePath) ){ + $this->_info($filePath . " is required. [{$this->name}]"); + return false; + } + } + return true; + } + + // if $files is string + return file_exists($DIR_PLUGINS . 'paint/applet' . $files); + } + + function getPageTemplate($vars = null){ + return ''; + } + + function getHeaderPart(){ + return ''; + } + + function getParamPart(){ + return ''; + } + + function getCopyrightsPart(){ + return ''; + } + + function getBeforeAppletPart(){ + return ''; + } + + function getAfterAppletPart(){ + return ''; + } + + function getExtraOption(){ + return ''; + } +} diff --git a/trunk/NP_Paint/paint/Palette_None.php b/trunk/NP_Paint/paint/Palette_None.php new file mode 100644 index 0000000..119e919 --- /dev/null +++ b/trunk/NP_Paint/paint/Palette_None.php @@ -0,0 +1,48 @@ +id = '$Id: Palette_None.php,v 1.9 2010/06/06 11:44:19 hsur Exp $'; + $this->name = 'Palette-None'; + + $this->enable = true; + } +} diff --git a/trunk/NP_Paint/paint/Palette_Selfy.php b/trunk/NP_Paint/paint/Palette_Selfy.php new file mode 100644 index 0000000..3d9bedd --- /dev/null +++ b/trunk/NP_Paint/paint/Palette_Selfy.php @@ -0,0 +1,80 @@ +id = '$Id: Palette_Selfy.php,v 1.17 2010/06/06 11:44:19 hsur Exp $'; + $this->name = 'Palette-Selfy'; + + $requiredFiles = Array('palette_selfy.js'); + $this->enable = $this->isFileInstalled($requiredFiles); + } + + function getCopyrightsPart(){ + return <<Palette-Selfy by Snow Materia +( /w Palette_Selfy Plugin by cles ) +
+END; + } + + function getHeaderPart(){ + return << +END; + } + + function getAfterAppletPart(){ + return << + + +END; + } +} diff --git a/trunk/NP_Paint/paint/Palette_WCS.php b/trunk/NP_Paint/paint/Palette_WCS.php new file mode 100644 index 0000000..4db0603 --- /dev/null +++ b/trunk/NP_Paint/paint/Palette_WCS.php @@ -0,0 +1,111 @@ +id = '$Id: Palette_WCS.php,v 1.39 2010/06/06 11:44:19 hsur Exp $'; + $this->name = 'WCS DynPalette'; + + $requiredFiles = Array('palette.js'); + $this->enable = $this->isFileInstalled($requiredFiles); + } + + function getCopyrightsPart(){ + return <<WCS DynPalette by WonderCatStudio +( /w Palette_WCS Plugin by cles ) +
+END; + } + + function getBeforeAppletPart(){ + if (strstr($_SERVER['HTTP_USER_AGENT'], "Macintosh")) { + return '

'; + } + return ''; + } + + function getHeaderPart(){ + return << +END; + } + + function getAfterAppletPart(){ + if( $pidx = requestVar('pidx') ){ + return << + +END; + } + return << + + +END; + } + + function getExtraOption(){ + return $this->template->fetch('extraoption', strtolower(__CLASS__)); + } +} diff --git a/trunk/NP_Paint/paint/Parser_PaintBBS.php b/trunk/NP_Paint/paint/Parser_PaintBBS.php new file mode 100644 index 0000000..3a94922 --- /dev/null +++ b/trunk/NP_Paint/paint/Parser_PaintBBS.php @@ -0,0 +1,145 @@ +id = '$Id: Parser_PaintBBS.php,v 1.33 2010/06/06 11:44:19 hsur Exp $'; + $this->name = 'PaintBBS Parser'; + $this->enable = true; + $this->offset = 0; + $this->postdata = null; + } + + function _read($length, &$err){ + $data = substr( $this->postdata, $this->offset, $length ); + $this->offset += strlen($data); + $err = false; + if( strlen($data) != $length ) $err = true; + return $data; + } + + function parse(){ + global $manager; + $plugin = $manager->getPlugin('NP_Paint'); + + ini_set("always_populate_raw_post_data", "1"); + global $HTTP_RAW_POST_DATA; + $this->postdata = $HTTP_RAW_POST_DATA;; + + if(! $this->postdata ){ + $plugin->_info(_PAINT_Parser_useinput); + if( $_SERVER['CONTENT_LENGTH'] ) $length = $_SERVER['CONTENT_LENGTH']; + if( $_ENV['CONTENT_LENGTH'] ) $length = $_ENV['CONTENT_LENGTH']; + $input = fopen("php://input", "rb"); + if( $length ){ + $this->postdata = fread($input, $length); + } else { + $plugin->_warn(_PAINT_Parser_contentLengthNotFound); + while (!feof($input)) { + $this->postdata .= fread($input, 8192); + } + } + fclose($input); + } + + //TODO: debug +/* + $test = fopen("/tmp/postdata.dat","wb"); + fwrite($test, $this->postdata); + fclose($test); + $plugin->_info('post length: ' . strlen($this->postdata) ); +*/ + + $data = Array( + 'magic' => null, + 'header' => null, + 'images' => Array(), + 'size' => Array(), + ); + $err = false; + + // magic char + $data['magic'] = $this->_read(1, $err); + if($err) return 'Cannot read magic char'; + if( $data['magic'] == chr(0x00) ) return 'magic char is INVALID. (maybe poo=true?) ->' . $data['magic']; + $plugin->_info('post magic: ' . $data['magic'] ); + + // header + $headerSize = $this->_read(8, $err); + if($err) return 'Cannot read header size'; + if( ! is_numeric($headerSize) ) return 'Header size is INVALID'; + + $data['header'] = $this->_read(intval($headerSize), $err); + if($err) return 'Cannot read header'; + + // image + $imageSize = $this->_read(8, $err); + if($err) return 'Cannot read image size'; + if( ! is_numeric($imageSize) ) return 'Image size is INVALID'; + + $pad = $this->_read(2, $err);// '\r\n' + if($err) return 'Cannot read padding'; + if(! $pad === "\r\n" ) return 'Cannot find padding'; + + $imageData = $this->_read(intval($imageSize), $err); + if($err) return 'Cannot read image ' . "(expected: $imageSize, actual:" . strlen($imageData) . ")"; + $plugin->_info("ImageSize (expected: $imageSize, actual:" . strlen($imageData) . ")"); + + $data['images'][] = $imageData; + $data['size'][] = strlen($imageData); + + // thumb + while(true){ + $thumbSize = $this->_read(8, $err); + if($err) break; + if( ! is_numeric($thumbSize) ) break; + + if( $thumbSize != 0 ){ + $imageData = $this->_read($thumbSize, $err); + if($err) break; + $data['images'][] = $imageData; + $data['size'][] = strlen($imageData); + $plugin->_info("AnimeSize (expected: $thumbSize, actual:" . strlen($imageData) . ")"); + } + } + + return $data; + } +} diff --git a/trunk/NP_Paint/paint/Viewer_Continue.php b/trunk/NP_Paint/paint/Viewer_Continue.php new file mode 100644 index 0000000..f3af351 --- /dev/null +++ b/trunk/NP_Paint/paint/Viewer_Continue.php @@ -0,0 +1,84 @@ +id = '$Id: Viewer_Continue.php,v 1.32 2010/06/06 11:44:19 hsur Exp $'; + $this->name = 'paint continue'; + $this->animeExt = Array(); + $this->enable = true; + + $this->templatevars['id'] = $this->id; + $this->templatevars['name'] = $this->name; + } + + function getPageTemplate($vars = null){ + global $CONF, $manager; + $plugin = $manager->getPlugin('NP_Paint'); + + list($animeFile, $appletName) = $plugin->findAppletByImg($vars['file']); + $fileInfo = $plugin->getFileInfo($animeFile); + + $vars['charset'] = _CHARSET; + $vars['mediaurl'] = $CONF['MediaURL']; + $vars['actionurl'] = $CONF['ActionURL']; + $vars['quality'] = $fileInfo['quality']; + + $vars['appletTag'] = $plugin->_getAppletSelect($appletName); + $vars['paletteTag'] = $plugin->_getPaletteSelect(); + $vars['paletteExtraTag'] = $plugin->_getPaletteSelectExtra(); + $vars['animation'] = ($plugin->getOption('defaultAnimation') == 'yes') ? 'checked' : ''; + + if( $fileInfo ){ + foreach ($fileInfo as $key => $value){ + $animeInfo .= "  * $key: $value
"; + } + } else { + $animeInfo = ''. _PAINT_Viewer_infoNotFond .''; + } + $vars['animeInfo'] = $animeInfo; + + $tpl = $this->template->fetch('pagetemplate', strtolower(__CLASS__)); + $vars = array_merge((array)$vars, $this->templatevars); + + return $this->template->fill($tpl, $vars, false); + } +} diff --git a/trunk/NP_Paint/paint/Viewer_Pch.php b/trunk/NP_Paint/paint/Viewer_Pch.php new file mode 100644 index 0000000..4849a2f --- /dev/null +++ b/trunk/NP_Paint/paint/Viewer_Pch.php @@ -0,0 +1,78 @@ +id = '$Id: Viewer_Pch.php,v 1.17 2010/06/06 11:44:19 hsur Exp $'; + $this->name = 'pch viewer'; + + $this->animeExt = Array( + 'pch', + ); + + $requiredFiles = Array( + 'PCHViewer.jar', + 'res/res.zip', + 'res/tt.zip', + ); + $this->enable = $this->isFileInstalled($requiredFiles); + + $this->templatevars['id'] = $this->id; + $this->templatevars['name'] = $this->name; + } + + function getPageTemplate($vars = null){ + $tpl = $this->template->fetch('pagetemplate', strtolower(__CLASS__)); + + global $CONF; + $this->templatevars['MediaURL'] = $CONF['MediaURL']; + $this->templatevars['ActionURL'] = $CONF['ActionURL']; + $this->templatevars['PluginURL'] = $CONF['PluginURL']; + $this->templatevars['appletBaseUrl'] = $this->appletBaseUrl; + + $vars = array_merge((array)$vars, $this->templatevars); + return $this->template->fill($tpl, $vars, false); + } +} diff --git a/trunk/NP_Paint/paint/Viewer_Spch.php b/trunk/NP_Paint/paint/Viewer_Spch.php new file mode 100644 index 0000000..55eab38 --- /dev/null +++ b/trunk/NP_Paint/paint/Viewer_Spch.php @@ -0,0 +1,78 @@ +id = '$Id: Viewer_Spch.php,v 1.14 2010/06/06 11:44:19 hsur Exp $'; + $this->name = 'spch viewer'; + + $this->animeExt = Array( + 'spch', + 'rpch', + ); + + $requiredFiles = Array( + 'PCHViewer.jar', + 'res/res.zip', + 'res/tt.zip', + ); + $this->enable = $this->isFileInstalled($requiredFiles); + + $this->templatevars['id'] = $this->id; + $this->templatevars['name'] = $this->name; + } + + function getPageTemplate($vars = null){ + $tpl = $this->template->fetch('pagetemplate', strtolower(__CLASS__)); + + global $CONF; + $this->templatevars['MediaURL'] = $CONF['MediaURL']; + $this->templatevars['ActionURL'] = $CONF['ActionURL']; + $this->templatevars['PluginURL'] = $CONF['PluginURL']; + $this->templatevars['appletBaseUrl'] = $this->appletBaseUrl; + + $vars = array_merge((array)$vars, $this->templatevars); + return $this->template->fill($tpl, $vars, false); + } +} diff --git a/trunk/NP_Paint/paint/applet/index.html b/trunk/NP_Paint/paint/applet/index.html new file mode 100644 index 0000000..b361191 --- /dev/null +++ b/trunk/NP_Paint/paint/applet/index.html @@ -0,0 +1,11 @@ + + + + NP_Paint - Nothing Here + + + +

NP_Paint - Nothing to see here

+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/applet/readme.txt b/trunk/NP_Paint/paint/applet/readme.txt new file mode 100644 index 0000000..0547359 --- /dev/null +++ b/trunk/NP_Paint/paint/applet/readme.txt @@ -0,0 +1,17 @@ +Applet ディレクトリ +----------------------- + +このディレクトリに、外部ファイルを展開してアップロードします。 + +1.お絵かきアプレット(※必須) + +◆PaintBBS、しぃペインター複数ファイル版 + http://shichan.jp/ + +2.動的パレット用JavaScript + +◆WCS 動的パレットコントロールセット(DynPalette) + http://wondercatstudio.com/archive/ + +◆palette_selfy + http://useyan.x0.com/s/cgi/relm/palette_selfy.html \ No newline at end of file diff --git a/trunk/NP_Paint/paint/help.html b/trunk/NP_Paint/paint/help.html new file mode 100644 index 0000000..336d4c9 --- /dev/null +++ b/trunk/NP_Paint/paint/help.html @@ -0,0 +1 @@ +help -> paint/template/index/help_japanese-utf8.html \ No newline at end of file diff --git a/trunk/NP_Paint/paint/index.php b/trunk/NP_Paint/paint/index.php new file mode 100644 index 0000000..e9b0abe --- /dev/null +++ b/trunk/NP_Paint/paint/index.php @@ -0,0 +1,240 @@ +isBlogAdmin($blogid); +} else + $isblogadmin = 0; + +if (!$member->isLoggedIn()) { + $oPluginAdmin = new PluginAdmin('Paint'); + $oPluginAdmin->start(); + echo '

' . _PAINT_NeedLogin . '

'; + $oPluginAdmin->end(); + exit; +} + +if (!($member->isAdmin() || $isblogadmin)) { + $oPluginAdmin = new PluginAdmin('Paint'); + $oPluginAdmin->start(); + echo "

"._ERROR_DISALLOWED."

"; + $oPluginAdmin->end(); + exit; +} + +$action = requestVar('action'); +$aActionsNotToCheck = array( + '', + 'report', +); +if (!in_array($action, $aActionsNotToCheck)) { + if (!$manager->checkTicket()) doError(_ERROR_BADTICKET); +} + +// create the admin area page +$oPluginAdmin = new PluginAdmin('Paint'); +$oPluginAdmin->start(); +$fb =& new cles_Feedback($oPluginAdmin); + +$templateEngine =& new cles_Template(dirname(__FILE__).'/template'); +define('NP_PAINT_TEMPLATEDIR_INDEX', 'index'); +$tplVars = array( + 'indexurl' => serverVar('PHP_SELF'), + 'optionurl' => $CONF['AdminURL'] . 'index.php?action=pluginoptions&plugid=' . $oPluginAdmin->plugin->getid(), + 'paintiniurl' => PAINT_INI_URL, + 'paintplugindir' => PAINT_PLUGIN_DIR, + 'ticket' => $manager->_generateTicket(), +); + +// get the plugin options; stored in the DB +//$pbl_config['enabled'] = $oPluginAdmin->plugin->getOption('enabled'); + +// menu +$menu = $templateEngine->fetch('menu', NP_PAINT_TEMPLATEDIR_INDEX); +echo $templateEngine->fill($menu, $tplVars, false); + +//action +switch ($action) { + case 'help' : + echo $templateEngine->fetch('help', NP_PAINT_TEMPLATEDIR_INDEX); + break; + + case 'install' : + if( requestVar('func') == 'ini' ){ + $err = paint_plugin_download( PAINT_INI_URL, PAINT_PLUGIN_DIR); + if($err){ + echo '

Error: ' . _PAINT_canNotReadFile . ':' .PAINT_INI_URL . '

'; + echo '

Reason: '.$err.'

'; + break; + } + } + + echo "

"._PAINT_iniDownload."

"; + echo "\n"; + + if( ! is_readable(PAINT_PLUGIN_DIR . '/paint.ini') ) + break; + + $settings = parse_ini_file(PAINT_PLUGIN_DIR . '/paint.ini', true); + if( ! $settings ){ + echo '

Error: ' . _PAINT_canNotReadFile . ': ' .PAINT_INI_URL . '

'; + break; + } + + echo '

' . _PAINT_appletinstall. "( {$settings['paint']['version']}[{$settings['paint']['updated']}] )

"; + + if ($pluginName = getVar('plugin')) { + $oPluginAdmin->plugin->_loadPlugin(); + $plugin = $oPluginAdmin->plugin->disabledPlugin[$pluginName]; + + if ($plugin) { + $zipurl = $settings[$pluginName]['zip']; + if($zipurl) + echo paint_plugin_install($zipurl); + else + echo '

Error:' ._PAINT_canNotAutoInstall . '

'; + + } else { + echo '

Error:'. _PAINT_noSuchPlugin . '

'; + } + } + + $oPluginAdmin->plugin->_loadPlugin(false, true); + ksort($oPluginAdmin->plugin->disabledPlugin); + + echo '

'._PAINT_autoInstall.'

'; + echo "\n"; + + break; + + case 'report' : + $oPluginAdmin->plugin->_loadPlugin(); + $extra = ''; + foreach ($oPluginAdmin->plugin->parsers as $key => $name) { + $extra .= 'parser_'.$key.', '; + } + foreach ($oPluginAdmin->plugin->applets as $key => $name) { + $extra .= 'applet_'.$key.', '; + } + foreach ($oPluginAdmin->plugin->palettes as $key => $name) { + $extra .= 'palette_'.$key.', '; + } + foreach ($oPluginAdmin->plugin->viewers as $key => $name) { + $extra .= 'viewer_'.$key.', '; + } + $fb->printForm($extra); + + break; + + default : + break; +} + +echo "
"; + +$oPluginAdmin->end(); + +function paint_plugin_install($url) { + $err = paint_plugin_download($url, PAINT_PLUGIN_DIR); + if ($err) + return $err; + + $file = PAINT_PLUGIN_DIR . '/' . basename($url); + $err = paint_plugin_extract($file, PAINT_PLUGIN_DIR); + + return $err; +} + +function paint_plugin_extract($file, $dir) { + $archive = new PclZip($file); + if ($archive->extract(PCLZIP_OPT_PATH, $dir, PCLZIP_OPT_SET_CHMOD, 0777) == 0) { + return $archive->errorInfo(true); + } + return ''; +} + +function paint_plugin_download($url, $dir) { + if (!@ is_writable($dir) || !@ is_dir($dir)) { + return _Paint_directoryNotWriteable . $dir; + } + + $remote = fopen($url, "rb"); + socket_set_timeout($remote, 10); + if (!$remote) + return _PAINT_fileOpen_failure . ': '.$url; + + $file = $dir.'/'.basename($url); + $local = fopen($file, "wb"); + socket_set_timeout($local, 5); + if (!$local) + return _PAINT_fileOpen_failure . ': '.$file; + + while (!feof($remote)) { + $buffer = fgets($remote, 4096); + fputs($local, $buffer); + } + + fclose($remote); + fclose($local); + + return ''; +} diff --git a/trunk/NP_Paint/paint/language/japanese-euc.php b/trunk/NP_Paint/paint/language/japanese-euc.php new file mode 100644 index 0000000..11d00ae --- /dev/null +++ b/trunk/NP_Paint/paint/language/japanese-euc.php @@ -0,0 +1,76 @@ + $eucfile +done diff --git a/trunk/NP_Paint/paint/paint.css b/trunk/NP_Paint/paint/paint.css new file mode 100644 index 0000000..d40b311 --- /dev/null +++ b/trunk/NP_Paint/paint/paint.css @@ -0,0 +1,9 @@ +input { + color:#222222; + line-height:133%; + font-size:100%; + min-height:1.33em; + background-color:#ffffff; + border:1px solid #222222; + vertical-align:text-bottom; +} \ No newline at end of file diff --git a/trunk/NP_Paint/paint/paint.js b/trunk/NP_Paint/paint/paint.js new file mode 100644 index 0000000..2a7b2ba --- /dev/null +++ b/trunk/NP_Paint/paint/paint.js @@ -0,0 +1,70 @@ +// vim: tabstop=2:shiftwidth=2 + +/** + * paint.js ($Revision: 1.15 $) + * by hsur ( http://blog.cles.jp/np_cles ) + * + * $Id: paint.js,v 1.15 2010/06/06 11:44:19 hsur Exp $ +*/ + +/* + * Copyright (C) 2005-2010 CLES. All rights reserved. + * + * 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 St, Fifth Floor, Boston, MA 02110-1301 USA + * + * In addition, as a special exception, cles( http://blog.cles.jp/np_cles ) gives + * permission to link the code of this program with those files in the PEAR + * library that are licensed under the PHP License (or with modified versions + * of those files that use the same license as those files), and distribute + * linked combinations including the two. You must obey the GNU General Public + * License in all respects for all of the code used other than those files in + * the PEAR library that are licensed under the PHP License. If you modify + * this file, you may extend this exception to your version of the file, + * but you are not obligated to do so. If you do not wish to do so, delete + * this exception statement from your version. +*/ + +function getLoginkey() +{ + var url = 'http://'+location.host+location.pathname; + var pars = 'action=plugin&name=Paint&type=getLoginkey'; + + //var d = $('message'); + //d.innerHTML = url + '?' + pars; + + var myAjax = new Ajax.Request( + url, + { method: 'get', parameters: pars, onSuccess: setLoginkey, onFailure: getLoginkeyFailed } + ); +} + +function setLoginkey(originalRequest) +{ + var xmldoc = originalRequest.responseXML; + var loginkey = xmldoc.getElementsByTagName('loginkey')[0].firstChild.nodeValue; + + var pat = new RegExp('loginkey=[^&=]+', 'i'); + header = header.replace(pat, 'loginkey=' + loginkey); + + var d = $('message'); + d.innerHTML = 'Ticket update OK -> ' + header; + document.paintbbs.str_header = header; +} + +function getLoginkeyFailed(originalRequest) +{ + var d = $('message'); + d.innerHTML = 'Ticket update NG'; +} \ No newline at end of file diff --git a/trunk/NP_Paint/paint/prototype-1.4.0.js b/trunk/NP_Paint/paint/prototype-1.4.0.js new file mode 100644 index 0000000..265b408 --- /dev/null +++ b/trunk/NP_Paint/paint/prototype-1.4.0.js @@ -0,0 +1,1781 @@ +/* Prototype JavaScript framework, version 1.4.0 + * (c) 2005 Sam Stephenson + * + * Prototype is freely distributable under the terms of an MIT-style license. + * For details, see the Prototype web site: http://prototype.conio.net/ + * +/*--------------------------------------------------------------------------*/ + +var Prototype = { + Version: '1.4.0', + ScriptFragment: '(?:)((\n|\r|.)*?)(?:<\/script>)', + + emptyFunction: function() {}, + K: function(x) {return x} +} + +var Class = { + create: function() { + return function() { + this.initialize.apply(this, arguments); + } + } +} + +var Abstract = new Object(); + +Object.extend = function(destination, source) { + for (property in source) { + destination[property] = source[property]; + } + return destination; +} + +Object.inspect = function(object) { + try { + if (object == undefined) return 'undefined'; + if (object == null) return 'null'; + return object.inspect ? object.inspect() : object.toString(); + } catch (e) { + if (e instanceof RangeError) return '...'; + throw e; + } +} + +Function.prototype.bind = function() { + var __method = this, args = $A(arguments), object = args.shift(); + return function() { + return __method.apply(object, args.concat($A(arguments))); + } +} + +Function.prototype.bindAsEventListener = function(object) { + var __method = this; + return function(event) { + return __method.call(object, event || window.event); + } +} + +Object.extend(Number.prototype, { + toColorPart: function() { + var digits = this.toString(16); + if (this < 16) return '0' + digits; + return digits; + }, + + succ: function() { + return this + 1; + }, + + times: function(iterator) { + $R(0, this, true).each(iterator); + return this; + } +}); + +var Try = { + these: function() { + var returnValue; + + for (var i = 0; i < arguments.length; i++) { + var lambda = arguments[i]; + try { + returnValue = lambda(); + break; + } catch (e) {} + } + + return returnValue; + } +} + +/*--------------------------------------------------------------------------*/ + +var PeriodicalExecuter = Class.create(); +PeriodicalExecuter.prototype = { + initialize: function(callback, frequency) { + this.callback = callback; + this.frequency = frequency; + this.currentlyExecuting = false; + + this.registerCallback(); + }, + + registerCallback: function() { + setInterval(this.onTimerEvent.bind(this), this.frequency * 1000); + }, + + onTimerEvent: function() { + if (!this.currentlyExecuting) { + try { + this.currentlyExecuting = true; + this.callback(); + } finally { + this.currentlyExecuting = false; + } + } + } +} + +/*--------------------------------------------------------------------------*/ + +function $() { + var elements = new Array(); + + for (var i = 0; i < arguments.length; i++) { + var element = arguments[i]; + if (typeof element == 'string') + element = document.getElementById(element); + + if (arguments.length == 1) + return element; + + elements.push(element); + } + + return elements; +} +Object.extend(String.prototype, { + stripTags: function() { + return this.replace(/<\/?[^>]+>/gi, ''); + }, + + stripScripts: function() { + return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), ''); + }, + + extractScripts: function() { + var matchAll = new RegExp(Prototype.ScriptFragment, 'img'); + var matchOne = new RegExp(Prototype.ScriptFragment, 'im'); + return (this.match(matchAll) || []).map(function(scriptTag) { + return (scriptTag.match(matchOne) || ['', ''])[1]; + }); + }, + + evalScripts: function() { + return this.extractScripts().map(eval); + }, + + escapeHTML: function() { + var div = document.createElement('div'); + var text = document.createTextNode(this); + div.appendChild(text); + return div.innerHTML; + }, + + unescapeHTML: function() { + var div = document.createElement('div'); + div.innerHTML = this.stripTags(); + return div.childNodes[0] ? div.childNodes[0].nodeValue : ''; + }, + + toQueryParams: function() { + var pairs = this.match(/^\??(.*)$/)[1].split('&'); + return pairs.inject({}, function(params, pairString) { + var pair = pairString.split('='); + params[pair[0]] = pair[1]; + return params; + }); + }, + + toArray: function() { + return this.split(''); + }, + + camelize: function() { + var oStringList = this.split('-'); + if (oStringList.length == 1) return oStringList[0]; + + var camelizedString = this.indexOf('-') == 0 + ? oStringList[0].charAt(0).toUpperCase() + oStringList[0].substring(1) + : oStringList[0]; + + for (var i = 1, len = oStringList.length; i < len; i++) { + var s = oStringList[i]; + camelizedString += s.charAt(0).toUpperCase() + s.substring(1); + } + + return camelizedString; + }, + + inspect: function() { + return "'" + this.replace('\\', '\\\\').replace("'", '\\\'') + "'"; + } +}); + +String.prototype.parseQuery = String.prototype.toQueryParams; + +var $break = new Object(); +var $continue = new Object(); + +var Enumerable = { + each: function(iterator) { + var index = 0; + try { + this._each(function(value) { + try { + iterator(value, index++); + } catch (e) { + if (e != $continue) throw e; + } + }); + } catch (e) { + if (e != $break) throw e; + } + }, + + all: function(iterator) { + var result = true; + this.each(function(value, index) { + result = result && !!(iterator || Prototype.K)(value, index); + if (!result) throw $break; + }); + return result; + }, + + any: function(iterator) { + var result = true; + this.each(function(value, index) { + if (result = !!(iterator || Prototype.K)(value, index)) + throw $break; + }); + return result; + }, + + collect: function(iterator) { + var results = []; + this.each(function(value, index) { + results.push(iterator(value, index)); + }); + return results; + }, + + detect: function (iterator) { + var result; + this.each(function(value, index) { + if (iterator(value, index)) { + result = value; + throw $break; + } + }); + return result; + }, + + findAll: function(iterator) { + var results = []; + this.each(function(value, index) { + if (iterator(value, index)) + results.push(value); + }); + return results; + }, + + grep: function(pattern, iterator) { + var results = []; + this.each(function(value, index) { + var stringValue = value.toString(); + if (stringValue.match(pattern)) + results.push((iterator || Prototype.K)(value, index)); + }) + return results; + }, + + include: function(object) { + var found = false; + this.each(function(value) { + if (value == object) { + found = true; + throw $break; + } + }); + return found; + }, + + inject: function(memo, iterator) { + this.each(function(value, index) { + memo = iterator(memo, value, index); + }); + return memo; + }, + + invoke: function(method) { + var args = $A(arguments).slice(1); + return this.collect(function(value) { + return value[method].apply(value, args); + }); + }, + + max: function(iterator) { + var result; + this.each(function(value, index) { + value = (iterator || Prototype.K)(value, index); + if (value >= (result || value)) + result = value; + }); + return result; + }, + + min: function(iterator) { + var result; + this.each(function(value, index) { + value = (iterator || Prototype.K)(value, index); + if (value <= (result || value)) + result = value; + }); + return result; + }, + + partition: function(iterator) { + var trues = [], falses = []; + this.each(function(value, index) { + ((iterator || Prototype.K)(value, index) ? + trues : falses).push(value); + }); + return [trues, falses]; + }, + + pluck: function(property) { + var results = []; + this.each(function(value, index) { + results.push(value[property]); + }); + return results; + }, + + reject: function(iterator) { + var results = []; + this.each(function(value, index) { + if (!iterator(value, index)) + results.push(value); + }); + return results; + }, + + sortBy: function(iterator) { + return this.collect(function(value, index) { + return {value: value, criteria: iterator(value, index)}; + }).sort(function(left, right) { + var a = left.criteria, b = right.criteria; + return a < b ? -1 : a > b ? 1 : 0; + }).pluck('value'); + }, + + toArray: function() { + return this.collect(Prototype.K); + }, + + zip: function() { + var iterator = Prototype.K, args = $A(arguments); + if (typeof args.last() == 'function') + iterator = args.pop(); + + var collections = [this].concat(args).map($A); + return this.map(function(value, index) { + iterator(value = collections.pluck(index)); + return value; + }); + }, + + inspect: function() { + return '#'; + } +} + +Object.extend(Enumerable, { + map: Enumerable.collect, + find: Enumerable.detect, + select: Enumerable.findAll, + member: Enumerable.include, + entries: Enumerable.toArray +}); +var $A = Array.from = function(iterable) { + if (!iterable) return []; + if (iterable.toArray) { + return iterable.toArray(); + } else { + var results = []; + for (var i = 0; i < iterable.length; i++) + results.push(iterable[i]); + return results; + } +} + +Object.extend(Array.prototype, Enumerable); + +Array.prototype._reverse = Array.prototype.reverse; + +Object.extend(Array.prototype, { + _each: function(iterator) { + for (var i = 0; i < this.length; i++) + iterator(this[i]); + }, + + clear: function() { + this.length = 0; + return this; + }, + + first: function() { + return this[0]; + }, + + last: function() { + return this[this.length - 1]; + }, + + compact: function() { + return this.select(function(value) { + return value != undefined || value != null; + }); + }, + + flatten: function() { + return this.inject([], function(array, value) { + return array.concat(value.constructor == Array ? + value.flatten() : [value]); + }); + }, + + without: function() { + var values = $A(arguments); + return this.select(function(value) { + return !values.include(value); + }); + }, + + indexOf: function(object) { + for (var i = 0; i < this.length; i++) + if (this[i] == object) return i; + return -1; + }, + + reverse: function(inline) { + return (inline !== false ? this : this.toArray())._reverse(); + }, + + shift: function() { + var result = this[0]; + for (var i = 0; i < this.length - 1; i++) + this[i] = this[i + 1]; + this.length--; + return result; + }, + + inspect: function() { + return '[' + this.map(Object.inspect).join(', ') + ']'; + } +}); +var Hash = { + _each: function(iterator) { + for (key in this) { + var value = this[key]; + if (typeof value == 'function') continue; + + var pair = [key, value]; + pair.key = key; + pair.value = value; + iterator(pair); + } + }, + + keys: function() { + return this.pluck('key'); + }, + + values: function() { + return this.pluck('value'); + }, + + merge: function(hash) { + return $H(hash).inject($H(this), function(mergedHash, pair) { + mergedHash[pair.key] = pair.value; + return mergedHash; + }); + }, + + toQueryString: function() { + return this.map(function(pair) { + return pair.map(encodeURIComponent).join('='); + }).join('&'); + }, + + inspect: function() { + return '#'; + } +} + +function $H(object) { + var hash = Object.extend({}, object || {}); + Object.extend(hash, Enumerable); + Object.extend(hash, Hash); + return hash; +} +ObjectRange = Class.create(); +Object.extend(ObjectRange.prototype, Enumerable); +Object.extend(ObjectRange.prototype, { + initialize: function(start, end, exclusive) { + this.start = start; + this.end = end; + this.exclusive = exclusive; + }, + + _each: function(iterator) { + var value = this.start; + do { + iterator(value); + value = value.succ(); + } while (this.include(value)); + }, + + include: function(value) { + if (value < this.start) + return false; + if (this.exclusive) + return value < this.end; + return value <= this.end; + } +}); + +var $R = function(start, end, exclusive) { + return new ObjectRange(start, end, exclusive); +} + +var Ajax = { + getTransport: function() { + return Try.these( + function() {return new ActiveXObject('Msxml2.XMLHTTP')}, + function() {return new ActiveXObject('Microsoft.XMLHTTP')}, + function() {return new XMLHttpRequest()} + ) || false; + }, + + activeRequestCount: 0 +} + +Ajax.Responders = { + responders: [], + + _each: function(iterator) { + this.responders._each(iterator); + }, + + register: function(responderToAdd) { + if (!this.include(responderToAdd)) + this.responders.push(responderToAdd); + }, + + unregister: function(responderToRemove) { + this.responders = this.responders.without(responderToRemove); + }, + + dispatch: function(callback, request, transport, json) { + this.each(function(responder) { + if (responder[callback] && typeof responder[callback] == 'function') { + try { + responder[callback].apply(responder, [request, transport, json]); + } catch (e) {} + } + }); + } +}; + +Object.extend(Ajax.Responders, Enumerable); + +Ajax.Responders.register({ + onCreate: function() { + Ajax.activeRequestCount++; + }, + + onComplete: function() { + Ajax.activeRequestCount--; + } +}); + +Ajax.Base = function() {}; +Ajax.Base.prototype = { + setOptions: function(options) { + this.options = { + method: 'post', + asynchronous: true, + parameters: '' + } + Object.extend(this.options, options || {}); + }, + + responseIsSuccess: function() { + return this.transport.status == undefined + || this.transport.status == 0 + || (this.transport.status >= 200 && this.transport.status < 300); + }, + + responseIsFailure: function() { + return !this.responseIsSuccess(); + } +} + +Ajax.Request = Class.create(); +Ajax.Request.Events = + ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete']; + +Ajax.Request.prototype = Object.extend(new Ajax.Base(), { + initialize: function(url, options) { + this.transport = Ajax.getTransport(); + this.setOptions(options); + this.request(url); + }, + + request: function(url) { + var parameters = this.options.parameters || ''; + if (parameters.length > 0) parameters += '&_='; + + try { + this.url = url; + if (this.options.method == 'get' && parameters.length > 0) + this.url += (this.url.match(/\?/) ? '&' : '?') + parameters; + + Ajax.Responders.dispatch('onCreate', this, this.transport); + + this.transport.open(this.options.method, this.url, + this.options.asynchronous); + + if (this.options.asynchronous) { + this.transport.onreadystatechange = this.onStateChange.bind(this); + setTimeout((function() {this.respondToReadyState(1)}).bind(this), 10); + } + + this.setRequestHeaders(); + + var body = this.options.postBody ? this.options.postBody : parameters; + this.transport.send(this.options.method == 'post' ? body : null); + + } catch (e) { + this.dispatchException(e); + } + }, + + setRequestHeaders: function() { + var requestHeaders = + ['X-Requested-With', 'XMLHttpRequest', + 'X-Prototype-Version', Prototype.Version]; + + if (this.options.method == 'post') { + requestHeaders.push('Content-type', + 'application/x-www-form-urlencoded'); + + /* Force "Connection: close" for Mozilla browsers to work around + * a bug where XMLHttpReqeuest sends an incorrect Content-length + * header. See Mozilla Bugzilla #246651. + */ + if (this.transport.overrideMimeType) + requestHeaders.push('Connection', 'close'); + } + + if (this.options.requestHeaders) + requestHeaders.push.apply(requestHeaders, this.options.requestHeaders); + + for (var i = 0; i < requestHeaders.length; i += 2) + this.transport.setRequestHeader(requestHeaders[i], requestHeaders[i+1]); + }, + + onStateChange: function() { + var readyState = this.transport.readyState; + if (readyState != 1) + this.respondToReadyState(this.transport.readyState); + }, + + header: function(name) { + try { + return this.transport.getResponseHeader(name); + } catch (e) {} + }, + + evalJSON: function() { + try { + return eval(this.header('X-JSON')); + } catch (e) {} + }, + + evalResponse: function() { + try { + return eval(this.transport.responseText); + } catch (e) { + this.dispatchException(e); + } + }, + + respondToReadyState: function(readyState) { + var event = Ajax.Request.Events[readyState]; + var transport = this.transport, json = this.evalJSON(); + + if (event == 'Complete') { + try { + (this.options['on' + this.transport.status] + || this.options['on' + (this.responseIsSuccess() ? 'Success' : 'Failure')] + || Prototype.emptyFunction)(transport, json); + } catch (e) { + this.dispatchException(e); + } + + if ((this.header('Content-type') || '').match(/^text\/javascript/i)) + this.evalResponse(); + } + + try { + (this.options['on' + event] || Prototype.emptyFunction)(transport, json); + Ajax.Responders.dispatch('on' + event, this, transport, json); + } catch (e) { + this.dispatchException(e); + } + + /* Avoid memory leak in MSIE: clean up the oncomplete event handler */ + if (event == 'Complete') + this.transport.onreadystatechange = Prototype.emptyFunction; + }, + + dispatchException: function(exception) { + (this.options.onException || Prototype.emptyFunction)(this, exception); + Ajax.Responders.dispatch('onException', this, exception); + } +}); + +Ajax.Updater = Class.create(); + +Object.extend(Object.extend(Ajax.Updater.prototype, Ajax.Request.prototype), { + initialize: function(container, url, options) { + this.containers = { + success: container.success ? $(container.success) : $(container), + failure: container.failure ? $(container.failure) : + (container.success ? null : $(container)) + } + + this.transport = Ajax.getTransport(); + this.setOptions(options); + + var onComplete = this.options.onComplete || Prototype.emptyFunction; + this.options.onComplete = (function(transport, object) { + this.updateContent(); + onComplete(transport, object); + }).bind(this); + + this.request(url); + }, + + updateContent: function() { + var receiver = this.responseIsSuccess() ? + this.containers.success : this.containers.failure; + var response = this.transport.responseText; + + if (!this.options.evalScripts) + response = response.stripScripts(); + + if (receiver) { + if (this.options.insertion) { + new this.options.insertion(receiver, response); + } else { + Element.update(receiver, response); + } + } + + if (this.responseIsSuccess()) { + if (this.onComplete) + setTimeout(this.onComplete.bind(this), 10); + } + } +}); + +Ajax.PeriodicalUpdater = Class.create(); +Ajax.PeriodicalUpdater.prototype = Object.extend(new Ajax.Base(), { + initialize: function(container, url, options) { + this.setOptions(options); + this.onComplete = this.options.onComplete; + + this.frequency = (this.options.frequency || 2); + this.decay = (this.options.decay || 1); + + this.updater = {}; + this.container = container; + this.url = url; + + this.start(); + }, + + start: function() { + this.options.onComplete = this.updateComplete.bind(this); + this.onTimerEvent(); + }, + + stop: function() { + this.updater.onComplete = undefined; + clearTimeout(this.timer); + (this.onComplete || Prototype.emptyFunction).apply(this, arguments); + }, + + updateComplete: function(request) { + if (this.options.decay) { + this.decay = (request.responseText == this.lastText ? + this.decay * this.options.decay : 1); + + this.lastText = request.responseText; + } + this.timer = setTimeout(this.onTimerEvent.bind(this), + this.decay * this.frequency * 1000); + }, + + onTimerEvent: function() { + this.updater = new Ajax.Updater(this.container, this.url, this.options); + } +}); +document.getElementsByClassName = function(className, parentElement) { + var children = ($(parentElement) || document.body).getElementsByTagName('*'); + return $A(children).inject([], function(elements, child) { + if (child.className.match(new RegExp("(^|\\s)" + className + "(\\s|$)"))) + elements.push(child); + return elements; + }); +} + +/*--------------------------------------------------------------------------*/ + +if (!window.Element) { + var Element = new Object(); +} + +Object.extend(Element, { + visible: function(element) { + return $(element).style.display != 'none'; + }, + + toggle: function() { + for (var i = 0; i < arguments.length; i++) { + var element = $(arguments[i]); + Element[Element.visible(element) ? 'hide' : 'show'](element); + } + }, + + hide: function() { + for (var i = 0; i < arguments.length; i++) { + var element = $(arguments[i]); + element.style.display = 'none'; + } + }, + + show: function() { + for (var i = 0; i < arguments.length; i++) { + var element = $(arguments[i]); + element.style.display = ''; + } + }, + + remove: function(element) { + element = $(element); + element.parentNode.removeChild(element); + }, + + update: function(element, html) { + $(element).innerHTML = html.stripScripts(); + setTimeout(function() {html.evalScripts()}, 10); + }, + + getHeight: function(element) { + element = $(element); + return element.offsetHeight; + }, + + classNames: function(element) { + return new Element.ClassNames(element); + }, + + hasClassName: function(element, className) { + if (!(element = $(element))) return; + return Element.classNames(element).include(className); + }, + + addClassName: function(element, className) { + if (!(element = $(element))) return; + return Element.classNames(element).add(className); + }, + + removeClassName: function(element, className) { + if (!(element = $(element))) return; + return Element.classNames(element).remove(className); + }, + + // removes whitespace-only text node children + cleanWhitespace: function(element) { + element = $(element); + for (var i = 0; i < element.childNodes.length; i++) { + var node = element.childNodes[i]; + if (node.nodeType == 3 && !/\S/.test(node.nodeValue)) + Element.remove(node); + } + }, + + empty: function(element) { + return $(element).innerHTML.match(/^\s*$/); + }, + + scrollTo: function(element) { + element = $(element); + var x = element.x ? element.x : element.offsetLeft, + y = element.y ? element.y : element.offsetTop; + window.scrollTo(x, y); + }, + + getStyle: function(element, style) { + element = $(element); + var value = element.style[style.camelize()]; + if (!value) { + if (document.defaultView && document.defaultView.getComputedStyle) { + var css = document.defaultView.getComputedStyle(element, null); + value = css ? css.getPropertyValue(style) : null; + } else if (element.currentStyle) { + value = element.currentStyle[style.camelize()]; + } + } + + if (window.opera && ['left', 'top', 'right', 'bottom'].include(style)) + if (Element.getStyle(element, 'position') == 'static') value = 'auto'; + + return value == 'auto' ? null : value; + }, + + setStyle: function(element, style) { + element = $(element); + for (name in style) + element.style[name.camelize()] = style[name]; + }, + + getDimensions: function(element) { + element = $(element); + if (Element.getStyle(element, 'display') != 'none') + return {width: element.offsetWidth, height: element.offsetHeight}; + + // All *Width and *Height properties give 0 on elements with display none, + // so enable the element temporarily + var els = element.style; + var originalVisibility = els.visibility; + var originalPosition = els.position; + els.visibility = 'hidden'; + els.position = 'absolute'; + els.display = ''; + var originalWidth = element.clientWidth; + var originalHeight = element.clientHeight; + els.display = 'none'; + els.position = originalPosition; + els.visibility = originalVisibility; + return {width: originalWidth, height: originalHeight}; + }, + + makePositioned: function(element) { + element = $(element); + var pos = Element.getStyle(element, 'position'); + if (pos == 'static' || !pos) { + element._madePositioned = true; + element.style.position = 'relative'; + // Opera returns the offset relative to the positioning context, when an + // element is position relative but top and left have not been defined + if (window.opera) { + element.style.top = 0; + element.style.left = 0; + } + } + }, + + undoPositioned: function(element) { + element = $(element); + if (element._madePositioned) { + element._madePositioned = undefined; + element.style.position = + element.style.top = + element.style.left = + element.style.bottom = + element.style.right = ''; + } + }, + + makeClipping: function(element) { + element = $(element); + if (element._overflow) return; + element._overflow = element.style.overflow; + if ((Element.getStyle(element, 'overflow') || 'visible') != 'hidden') + element.style.overflow = 'hidden'; + }, + + undoClipping: function(element) { + element = $(element); + if (element._overflow) return; + element.style.overflow = element._overflow; + element._overflow = undefined; + } +}); + +var Toggle = new Object(); +Toggle.display = Element.toggle; + +/*--------------------------------------------------------------------------*/ + +Abstract.Insertion = function(adjacency) { + this.adjacency = adjacency; +} + +Abstract.Insertion.prototype = { + initialize: function(element, content) { + this.element = $(element); + this.content = content.stripScripts(); + + if (this.adjacency && this.element.insertAdjacentHTML) { + try { + this.element.insertAdjacentHTML(this.adjacency, this.content); + } catch (e) { + if (this.element.tagName.toLowerCase() == 'tbody') { + this.insertContent(this.contentFromAnonymousTable()); + } else { + throw e; + } + } + } else { + this.range = this.element.ownerDocument.createRange(); + if (this.initializeRange) this.initializeRange(); + this.insertContent([this.range.createContextualFragment(this.content)]); + } + + setTimeout(function() {content.evalScripts()}, 10); + }, + + contentFromAnonymousTable: function() { + var div = document.createElement('div'); + div.innerHTML = '' + this.content + '
'; + return $A(div.childNodes[0].childNodes[0].childNodes); + } +} + +var Insertion = new Object(); + +Insertion.Before = Class.create(); +Insertion.Before.prototype = Object.extend(new Abstract.Insertion('beforeBegin'), { + initializeRange: function() { + this.range.setStartBefore(this.element); + }, + + insertContent: function(fragments) { + fragments.each((function(fragment) { + this.element.parentNode.insertBefore(fragment, this.element); + }).bind(this)); + } +}); + +Insertion.Top = Class.create(); +Insertion.Top.prototype = Object.extend(new Abstract.Insertion('afterBegin'), { + initializeRange: function() { + this.range.selectNodeContents(this.element); + this.range.collapse(true); + }, + + insertContent: function(fragments) { + fragments.reverse(false).each((function(fragment) { + this.element.insertBefore(fragment, this.element.firstChild); + }).bind(this)); + } +}); + +Insertion.Bottom = Class.create(); +Insertion.Bottom.prototype = Object.extend(new Abstract.Insertion('beforeEnd'), { + initializeRange: function() { + this.range.selectNodeContents(this.element); + this.range.collapse(this.element); + }, + + insertContent: function(fragments) { + fragments.each((function(fragment) { + this.element.appendChild(fragment); + }).bind(this)); + } +}); + +Insertion.After = Class.create(); +Insertion.After.prototype = Object.extend(new Abstract.Insertion('afterEnd'), { + initializeRange: function() { + this.range.setStartAfter(this.element); + }, + + insertContent: function(fragments) { + fragments.each((function(fragment) { + this.element.parentNode.insertBefore(fragment, + this.element.nextSibling); + }).bind(this)); + } +}); + +/*--------------------------------------------------------------------------*/ + +Element.ClassNames = Class.create(); +Element.ClassNames.prototype = { + initialize: function(element) { + this.element = $(element); + }, + + _each: function(iterator) { + this.element.className.split(/\s+/).select(function(name) { + return name.length > 0; + })._each(iterator); + }, + + set: function(className) { + this.element.className = className; + }, + + add: function(classNameToAdd) { + if (this.include(classNameToAdd)) return; + this.set(this.toArray().concat(classNameToAdd).join(' ')); + }, + + remove: function(classNameToRemove) { + if (!this.include(classNameToRemove)) return; + this.set(this.select(function(className) { + return className != classNameToRemove; + }).join(' ')); + }, + + toString: function() { + return this.toArray().join(' '); + } +} + +Object.extend(Element.ClassNames.prototype, Enumerable); +var Field = { + clear: function() { + for (var i = 0; i < arguments.length; i++) + $(arguments[i]).value = ''; + }, + + focus: function(element) { + $(element).focus(); + }, + + present: function() { + for (var i = 0; i < arguments.length; i++) + if ($(arguments[i]).value == '') return false; + return true; + }, + + select: function(element) { + $(element).select(); + }, + + activate: function(element) { + element = $(element); + element.focus(); + if (element.select) + element.select(); + } +} + +/*--------------------------------------------------------------------------*/ + +var Form = { + serialize: function(form) { + var elements = Form.getElements($(form)); + var queryComponents = new Array(); + + for (var i = 0; i < elements.length; i++) { + var queryComponent = Form.Element.serialize(elements[i]); + if (queryComponent) + queryComponents.push(queryComponent); + } + + return queryComponents.join('&'); + }, + + getElements: function(form) { + form = $(form); + var elements = new Array(); + + for (tagName in Form.Element.Serializers) { + var tagElements = form.getElementsByTagName(tagName); + for (var j = 0; j < tagElements.length; j++) + elements.push(tagElements[j]); + } + return elements; + }, + + getInputs: function(form, typeName, name) { + form = $(form); + var inputs = form.getElementsByTagName('input'); + + if (!typeName && !name) + return inputs; + + var matchingInputs = new Array(); + for (var i = 0; i < inputs.length; i++) { + var input = inputs[i]; + if ((typeName && input.type != typeName) || + (name && input.name != name)) + continue; + matchingInputs.push(input); + } + + return matchingInputs; + }, + + disable: function(form) { + var elements = Form.getElements(form); + for (var i = 0; i < elements.length; i++) { + var element = elements[i]; + element.blur(); + element.disabled = 'true'; + } + }, + + enable: function(form) { + var elements = Form.getElements(form); + for (var i = 0; i < elements.length; i++) { + var element = elements[i]; + element.disabled = ''; + } + }, + + findFirstElement: function(form) { + return Form.getElements(form).find(function(element) { + return element.type != 'hidden' && !element.disabled && + ['input', 'select', 'textarea'].include(element.tagName.toLowerCase()); + }); + }, + + focusFirstElement: function(form) { + Field.activate(Form.findFirstElement(form)); + }, + + reset: function(form) { + $(form).reset(); + } +} + +Form.Element = { + serialize: function(element) { + element = $(element); + var method = element.tagName.toLowerCase(); + var parameter = Form.Element.Serializers[method](element); + + if (parameter) { + var key = encodeURIComponent(parameter[0]); + if (key.length == 0) return; + + if (parameter[1].constructor != Array) + parameter[1] = [parameter[1]]; + + return parameter[1].map(function(value) { + return key + '=' + encodeURIComponent(value); + }).join('&'); + } + }, + + getValue: function(element) { + element = $(element); + var method = element.tagName.toLowerCase(); + var parameter = Form.Element.Serializers[method](element); + + if (parameter) + return parameter[1]; + } +} + +Form.Element.Serializers = { + input: function(element) { + switch (element.type.toLowerCase()) { + case 'submit': + case 'hidden': + case 'password': + case 'text': + return Form.Element.Serializers.textarea(element); + case 'checkbox': + case 'radio': + return Form.Element.Serializers.inputSelector(element); + } + return false; + }, + + inputSelector: function(element) { + if (element.checked) + return [element.name, element.value]; + }, + + textarea: function(element) { + return [element.name, element.value]; + }, + + select: function(element) { + return Form.Element.Serializers[element.type == 'select-one' ? + 'selectOne' : 'selectMany'](element); + }, + + selectOne: function(element) { + var value = '', opt, index = element.selectedIndex; + if (index >= 0) { + opt = element.options[index]; + value = opt.value; + if (!value && !('value' in opt)) + value = opt.text; + } + return [element.name, value]; + }, + + selectMany: function(element) { + var value = new Array(); + for (var i = 0; i < element.length; i++) { + var opt = element.options[i]; + if (opt.selected) { + var optValue = opt.value; + if (!optValue && !('value' in opt)) + optValue = opt.text; + value.push(optValue); + } + } + return [element.name, value]; + } +} + +/*--------------------------------------------------------------------------*/ + +var $F = Form.Element.getValue; + +/*--------------------------------------------------------------------------*/ + +Abstract.TimedObserver = function() {} +Abstract.TimedObserver.prototype = { + initialize: function(element, frequency, callback) { + this.frequency = frequency; + this.element = $(element); + this.callback = callback; + + this.lastValue = this.getValue(); + this.registerCallback(); + }, + + registerCallback: function() { + setInterval(this.onTimerEvent.bind(this), this.frequency * 1000); + }, + + onTimerEvent: function() { + var value = this.getValue(); + if (this.lastValue != value) { + this.callback(this.element, value); + this.lastValue = value; + } + } +} + +Form.Element.Observer = Class.create(); +Form.Element.Observer.prototype = Object.extend(new Abstract.TimedObserver(), { + getValue: function() { + return Form.Element.getValue(this.element); + } +}); + +Form.Observer = Class.create(); +Form.Observer.prototype = Object.extend(new Abstract.TimedObserver(), { + getValue: function() { + return Form.serialize(this.element); + } +}); + +/*--------------------------------------------------------------------------*/ + +Abstract.EventObserver = function() {} +Abstract.EventObserver.prototype = { + initialize: function(element, callback) { + this.element = $(element); + this.callback = callback; + + this.lastValue = this.getValue(); + if (this.element.tagName.toLowerCase() == 'form') + this.registerFormCallbacks(); + else + this.registerCallback(this.element); + }, + + onElementEvent: function() { + var value = this.getValue(); + if (this.lastValue != value) { + this.callback(this.element, value); + this.lastValue = value; + } + }, + + registerFormCallbacks: function() { + var elements = Form.getElements(this.element); + for (var i = 0; i < elements.length; i++) + this.registerCallback(elements[i]); + }, + + registerCallback: function(element) { + if (element.type) { + switch (element.type.toLowerCase()) { + case 'checkbox': + case 'radio': + Event.observe(element, 'click', this.onElementEvent.bind(this)); + break; + case 'password': + case 'text': + case 'textarea': + case 'select-one': + case 'select-multiple': + Event.observe(element, 'change', this.onElementEvent.bind(this)); + break; + } + } + } +} + +Form.Element.EventObserver = Class.create(); +Form.Element.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), { + getValue: function() { + return Form.Element.getValue(this.element); + } +}); + +Form.EventObserver = Class.create(); +Form.EventObserver.prototype = Object.extend(new Abstract.EventObserver(), { + getValue: function() { + return Form.serialize(this.element); + } +}); +if (!window.Event) { + var Event = new Object(); +} + +Object.extend(Event, { + KEY_BACKSPACE: 8, + KEY_TAB: 9, + KEY_RETURN: 13, + KEY_ESC: 27, + KEY_LEFT: 37, + KEY_UP: 38, + KEY_RIGHT: 39, + KEY_DOWN: 40, + KEY_DELETE: 46, + + element: function(event) { + return event.target || event.srcElement; + }, + + isLeftClick: function(event) { + return (((event.which) && (event.which == 1)) || + ((event.button) && (event.button == 1))); + }, + + pointerX: function(event) { + return event.pageX || (event.clientX + + (document.documentElement.scrollLeft || document.body.scrollLeft)); + }, + + pointerY: function(event) { + return event.pageY || (event.clientY + + (document.documentElement.scrollTop || document.body.scrollTop)); + }, + + stop: function(event) { + if (event.preventDefault) { + event.preventDefault(); + event.stopPropagation(); + } else { + event.returnValue = false; + event.cancelBubble = true; + } + }, + + // find the first node with the given tagName, starting from the + // node the event was triggered on; traverses the DOM upwards + findElement: function(event, tagName) { + var element = Event.element(event); + while (element.parentNode && (!element.tagName || + (element.tagName.toUpperCase() != tagName.toUpperCase()))) + element = element.parentNode; + return element; + }, + + observers: false, + + _observeAndCache: function(element, name, observer, useCapture) { + if (!this.observers) this.observers = []; + if (element.addEventListener) { + this.observers.push([element, name, observer, useCapture]); + element.addEventListener(name, observer, useCapture); + } else if (element.attachEvent) { + this.observers.push([element, name, observer, useCapture]); + element.attachEvent('on' + name, observer); + } + }, + + unloadCache: function() { + if (!Event.observers) return; + for (var i = 0; i < Event.observers.length; i++) { + Event.stopObserving.apply(this, Event.observers[i]); + Event.observers[i][0] = null; + } + Event.observers = false; + }, + + observe: function(element, name, observer, useCapture) { + var element = $(element); + useCapture = useCapture || false; + + if (name == 'keypress' && + (navigator.appVersion.match(/Konqueror|Safari|KHTML/) + || element.attachEvent)) + name = 'keydown'; + + this._observeAndCache(element, name, observer, useCapture); + }, + + stopObserving: function(element, name, observer, useCapture) { + var element = $(element); + useCapture = useCapture || false; + + if (name == 'keypress' && + (navigator.appVersion.match(/Konqueror|Safari|KHTML/) + || element.detachEvent)) + name = 'keydown'; + + if (element.removeEventListener) { + element.removeEventListener(name, observer, useCapture); + } else if (element.detachEvent) { + element.detachEvent('on' + name, observer); + } + } +}); + +/* prevent memory leaks in IE */ +Event.observe(window, 'unload', Event.unloadCache, false); +var Position = { + // set to true if needed, warning: firefox performance problems + // NOT neeeded for page scrolling, only if draggable contained in + // scrollable elements + includeScrollOffsets: false, + + // must be called before calling withinIncludingScrolloffset, every time the + // page is scrolled + prepare: function() { + this.deltaX = window.pageXOffset + || document.documentElement.scrollLeft + || document.body.scrollLeft + || 0; + this.deltaY = window.pageYOffset + || document.documentElement.scrollTop + || document.body.scrollTop + || 0; + }, + + realOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.scrollTop || 0; + valueL += element.scrollLeft || 0; + element = element.parentNode; + } while (element); + return [valueL, valueT]; + }, + + cumulativeOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + element = element.offsetParent; + } while (element); + return [valueL, valueT]; + }, + + positionedOffset: function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + element = element.offsetParent; + if (element) { + p = Element.getStyle(element, 'position'); + if (p == 'relative' || p == 'absolute') break; + } + } while (element); + return [valueL, valueT]; + }, + + offsetParent: function(element) { + if (element.offsetParent) return element.offsetParent; + if (element == document.body) return element; + + while ((element = element.parentNode) && element != document.body) + if (Element.getStyle(element, 'position') != 'static') + return element; + + return document.body; + }, + + // caches x/y coordinate pair to use with overlap + within: function(element, x, y) { + if (this.includeScrollOffsets) + return this.withinIncludingScrolloffsets(element, x, y); + this.xcomp = x; + this.ycomp = y; + this.offset = this.cumulativeOffset(element); + + return (y >= this.offset[1] && + y < this.offset[1] + element.offsetHeight && + x >= this.offset[0] && + x < this.offset[0] + element.offsetWidth); + }, + + withinIncludingScrolloffsets: function(element, x, y) { + var offsetcache = this.realOffset(element); + + this.xcomp = x + offsetcache[0] - this.deltaX; + this.ycomp = y + offsetcache[1] - this.deltaY; + this.offset = this.cumulativeOffset(element); + + return (this.ycomp >= this.offset[1] && + this.ycomp < this.offset[1] + element.offsetHeight && + this.xcomp >= this.offset[0] && + this.xcomp < this.offset[0] + element.offsetWidth); + }, + + // within must be called directly before + overlap: function(mode, element) { + if (!mode) return 0; + if (mode == 'vertical') + return ((this.offset[1] + element.offsetHeight) - this.ycomp) / + element.offsetHeight; + if (mode == 'horizontal') + return ((this.offset[0] + element.offsetWidth) - this.xcomp) / + element.offsetWidth; + }, + + clone: function(source, target) { + source = $(source); + target = $(target); + target.style.position = 'absolute'; + var offsets = this.cumulativeOffset(source); + target.style.top = offsets[1] + 'px'; + target.style.left = offsets[0] + 'px'; + target.style.width = source.offsetWidth + 'px'; + target.style.height = source.offsetHeight + 'px'; + }, + + page: function(forElement) { + var valueT = 0, valueL = 0; + + var element = forElement; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + + // Safari fix + if (element.offsetParent==document.body) + if (Element.getStyle(element,'position')=='absolute') break; + + } while (element = element.offsetParent); + + element = forElement; + do { + valueT -= element.scrollTop || 0; + valueL -= element.scrollLeft || 0; + } while (element = element.parentNode); + + return [valueL, valueT]; + }, + + clone: function(source, target) { + var options = Object.extend({ + setLeft: true, + setTop: true, + setWidth: true, + setHeight: true, + offsetTop: 0, + offsetLeft: 0 + }, arguments[2] || {}) + + // find page position of source + source = $(source); + var p = Position.page(source); + + // find coordinate system to use + target = $(target); + var delta = [0, 0]; + var parent = null; + // delta [0,0] will do fine with position: fixed elements, + // position:absolute needs offsetParent deltas + if (Element.getStyle(target,'position') == 'absolute') { + parent = Position.offsetParent(target); + delta = Position.page(parent); + } + + // correct by body offsets (fixes Safari) + if (parent == document.body) { + delta[0] -= document.body.offsetLeft; + delta[1] -= document.body.offsetTop; + } + + // set position + if(options.setLeft) target.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px'; + if(options.setTop) target.style.top = (p[1] - delta[1] + options.offsetTop) + 'px'; + if(options.setWidth) target.style.width = source.offsetWidth + 'px'; + if(options.setHeight) target.style.height = source.offsetHeight + 'px'; + }, + + absolutize: function(element) { + element = $(element); + if (element.style.position == 'absolute') return; + Position.prepare(); + + var offsets = Position.positionedOffset(element); + var top = offsets[1]; + var left = offsets[0]; + var width = element.clientWidth; + var height = element.clientHeight; + + element._originalLeft = left - parseFloat(element.style.left || 0); + element._originalTop = top - parseFloat(element.style.top || 0); + element._originalWidth = element.style.width; + element._originalHeight = element.style.height; + + element.style.position = 'absolute'; + element.style.top = top + 'px';; + element.style.left = left + 'px';; + element.style.width = width + 'px';; + element.style.height = height + 'px';; + }, + + relativize: function(element) { + element = $(element); + if (element.style.position == 'relative') return; + Position.prepare(); + + element.style.position = 'relative'; + var top = parseFloat(element.style.top || 0) - (element._originalTop || 0); + var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0); + + element.style.top = top + 'px'; + element.style.left = left + 'px'; + element.style.height = element._originalHeight; + element.style.width = element._originalWidth; + } +} + +// Safari returns margins on body which is incorrect if the child is absolutely +// positioned. For performance reasons, redefine Position.cumulativeOffset for +// KHTML/WebKit only. +if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) { + Position.cumulativeOffset = function(element) { + var valueT = 0, valueL = 0; + do { + valueT += element.offsetTop || 0; + valueL += element.offsetLeft || 0; + if (element.offsetParent == document.body) + if (Element.getStyle(element, 'position') == 'absolute') break; + + element = element.offsetParent; + } while (element); + + return [valueL, valueT]; + } +} \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-euc.html b/trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-euc.html new file mode 100644 index 0000000..d828842 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-euc.html @@ -0,0 +1,3 @@ +{{name}} by Shi-chan +( /w Applet_PaintBBS Plugin by cles ) +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-utf8.html b/trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-utf8.html new file mode 100644 index 0000000..d828842 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_paintbbs/copyrights_japanese-utf8.html @@ -0,0 +1,3 @@ +{{name}} by Shi-chan +( /w Applet_PaintBBS Plugin by cles ) +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-euc.html b/trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-euc.html new file mode 100644 index 0000000..6188ed0 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-euc.html @@ -0,0 +1,140 @@ + + + +NP_Paint - {{name}} + + + + + + + + + +{{header}} + + + + + +{{beforeapplet}} + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{param}} + +
+ +{{afterapplet}} + +
+ +
+message: +
+ +
+{{copyright}} +
+ + + + + diff --git a/trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-utf8.html b/trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-utf8.html new file mode 100644 index 0000000..935a1be --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_paintbbs/pagetemplate_japanese-utf8.html @@ -0,0 +1,140 @@ + + + +NP_Paint - {{name}} + + + + + + + + + +{{header}} + + + + + +{{beforeapplet}} + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{param}} + +
+ +{{afterapplet}} + +
+ +
+message: +
+ +
+{{copyright}} +
+ + + + + diff --git a/trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-euc.html b/trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-euc.html new file mode 100644 index 0000000..3873a16 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-euc.html @@ -0,0 +1,3 @@ +{{name}} by Shi-chan +( /w Applet_Shipainter Plugin by cles ) +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-utf8.html b/trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-utf8.html new file mode 100644 index 0000000..3873a16 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainter/copyrights_japanese-utf8.html @@ -0,0 +1,3 @@ +{{name}} by Shi-chan +( /w Applet_Shipainter Plugin by cles ) +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-euc.html b/trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-euc.html new file mode 100644 index 0000000..ce3fd14 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-euc.html @@ -0,0 +1,137 @@ + + + +NP_Paint - {{name}} + + + + + + + + + + + +{{header}} + + + + + +{{beforeapplet}} + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{param}} + +
+ +{{afterapplet}} + +
+ +
+message: +
+ +
+{{copyright}} +
+ + + + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-utf8.html b/trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-utf8.html new file mode 100644 index 0000000..bb805a5 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainter/pagetemplate_japanese-utf8.html @@ -0,0 +1,137 @@ + + + +NP_Paint - {{name}} + + + + + + + + + + + +{{header}} + + + + + +{{beforeapplet}} + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{param}} + +
+ +{{afterapplet}} + +
+ +
+message: +
+ +
+{{copyright}} +
+ + + + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-euc.html b/trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-euc.html new file mode 100644 index 0000000..3873a16 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-euc.html @@ -0,0 +1,3 @@ +{{name}} by Shi-chan +( /w Applet_Shipainter Plugin by cles ) +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-utf8.html b/trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-utf8.html new file mode 100644 index 0000000..3873a16 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainterpro/copyrights_japanese-utf8.html @@ -0,0 +1,3 @@ +{{name}} by Shi-chan +( /w Applet_Shipainter Plugin by cles ) +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-euc.html b/trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-euc.html new file mode 100644 index 0000000..d5d7050 --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-euc.html @@ -0,0 +1,137 @@ + + + +NP_Paint - {{name}} + + + + + + + + + + + +{{header}} + + + + + +{{beforeapplet}} + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{param}} + +
+ +{{afterapplet}} + +
+ +
+message: +
+ +
+{{copyright}} +
+ + + + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-utf8.html b/trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-utf8.html new file mode 100644 index 0000000..f5b1dce --- /dev/null +++ b/trunk/NP_Paint/paint/template/applet_shipainterpro/pagetemplate_japanese-utf8.html @@ -0,0 +1,137 @@ + + + +NP_Paint - {{name}} + + + + + + + + + + + +{{header}} + + + + + +{{beforeapplet}} + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{param}} + +
+ +{{afterapplet}} + +
+ +
+message: +
+ +
+{{copyright}} +
+ + + + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/index/help_japanese-euc.html b/trunk/NP_Paint/paint/template/index/help_japanese-euc.html new file mode 100644 index 0000000..79c056c --- /dev/null +++ b/trunk/NP_Paint/paint/template/index/help_japanese-euc.html @@ -0,0 +1,314 @@ +

NP_Paint ¥Ø¥ë¥×

+ +

Plugin³µÍ×Powered by CLES

+ +

¤ª³¨¤«¤­¥¢¥×¥ì¥Ã¥È¤È¤ÎÏ¢·È¤ò²Äǽ¤Ë¤¹¤ë¥×¥é¥°¥¤¥ó¤Ç¤¹

+

¢¨¤³¤Î¥×¥é¥°¥¤¥ó¤ÏñÂΤǤÏÆ°¤­¤Þ¤»¤ó¡£²¼µ­¤Î¡ÖºÇÄã¸Â¤ä¤é¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¤³¤È¡×¤ò¤´Í÷¤Î¾å¥»¥Ã¥È¥¢¥Ã¥×¤ò¹Ô¤Ã¤Æ¤¯¤À¤µ¤¤¡£

+ +

ɬÍ״Ķ­

+

Nucleus: 3.2°Ê¹ß

+

PHP: 4.3.2°Ê¹ß¡¢¥µ¡¼¥Ð¦¤ÇJPEGÊÑ´¹¤ò»È¤¦¾ì¹ç¤Ë¤ÏGD¥µ¥Ý¡¼¥È¤¬É¬ÍפǤ¹¡£

+

Æ°ºî³Îǧ¤Ï¥µ¡¼¥Ð¦PHP 5.2.5¤ª¤è¤Ó¡¢Nucleus 3.31SP1(UTF-8/EUC-JP)¤Ç¹Ô¤Ã¤Æ¤¤¤Þ¤¹

+ +

Æ°ºî³ÎǧºÑ¤ß¥¯¥é¥¤¥¢¥ó¥È(¤³¤ì°Ê³°¤Î´Ä¶­¤ÇÆ°ºî³Îǧ¤¬¤Ç¤­¤¿¾ì¹ç¤Ë¤Ï¤´Ï¢Íí¤¯¤À¤µ¤¤)

+

¡¦Firefox(win)

+

¡¦IE6(win)

+

¡¦Firefox(MacOSX)

+

¡¦Safari(MacOSX)

+

¡¦IE5.1(MacOS9)[¤¿¤À¤·¡¢Æ°Åª¥Ñ¥ì¥Ã¥ÈÆ°ºîÉÔ²Ä]

+

¡¦Netscape7(MacOS9)Æ°ºîÉÔ°ÂÄê¤Î¤¿¤á

+ +

¥Õ¥¡¥¤¥ë¹½À®

+ +

°µ½Ì¥Õ¥¡¥¤¥ë¤òŸ³«¤¹¤ë¤È°Ê²¼¤ÎÄ̤ê¤Ë¤Ê¤ê¤Þ¤¹¡£

+ +

+

(Nucleus¤Îplugin¥Õ¥©¥ë¥À)
+¨§NP_Paint.php
+¨§paint/
+¨¢¨§applet/¡¡¢«¡¡¤ª³¨¤«¤­¥¢¥×¥ì¥Ã¥ÈÇÛÃ֥ǥ£¥ì¥¯¥È¥ê
+¨¢¨¢¨§index.html
+¨¢¨¢¨¦readme.txt
+¨¢¨§Applet_PaintBBS.php (PaintBBS)
+¨¢¨§Applet_Shipainter.php (¤·¤£¥Ú¥¤¥ó¥¿¡¼)
+¨¢¨§Applet_Shipainterpro.php (¤·¤£¥Ú¥¤¥ó¥¿¡¼Pro)
+¨¢¨§index.php
+¨¢¨§paint.css
+¨¢¨§paint.js
+¨¢¨§PaintPlugin.php
+¨¢¨§Palette_None.php (¥Ñ¥ì¥Ã¥È¤Ê¤·)
+¨¢¨§Palette_Selfy.php (Selfy¥Ñ¥ì¥Ã¥È)
+¨¢¨§Palette_WCS.php (WCS¥Ñ¥ì¥Ã¥È)
+¨¢¨§Parser_PaintBBS.php
+¨¢¨§Viewer_Continue.php (Continueµ¡Ç½)
+¨¢¨§Viewer_Pch.php (pch¥Ó¥å¥¢¡¼)
+¨¢¨¦Viewer_Spch.php (spch¥Ó¥å¥¢¡¼)
+¨¦sharedlibs/
+¡¡¨¦PEAR/¶¦Ḁ̈饤¥Ö¥é¥ê·²
+
+

+ + +

ºÇÄã¸Â¤ä¤é¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤¤³¤È

+ +

¤³¤Î¥×¥é¥°¥¤¥ó¤Ë¤Ï¥é¥¤¥»¥ó¥¹¤Î´Ø·¸¾å¡¢¤ª³¨¤«¤­¤ËɬÍפʥ¢¥×¥ì¥Ã¥ÈÎà¤òƱº­¤·¤Æ¤¤¤Þ¤»¤ó¡£

+

¡Ê¢¨¥¢¥×¥ì¥Ã¥È¤äưŪ¥Ñ¥ì¥Ã¥È¤ÏNucleus¤È°ã¤¤¡¢GPL¥é¥¤¥»¥ó¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£¥À¥¦¥ó¥í¡¼¥É¤ÎºÝ¤Ë¤Ï¥é¥¤¥»¥ó¥¹¤ò¤è¤¯Æɤó¤Ç¤¯¤À¤µ¤¤¡£¡Ë

+ + +

¤³¤Î¤¿¤á¡¢²¼µ­¤Î¼ê½ç¤Ë¤Æ¥»¥Ã¥È¥¢¥Ã¥×¤ò¹Ô¤¦É¬Íפ¬¤¢¤ê¤Þ¤¹¡£

+ +
    +
  1. NP_Paint¤Î°µ½Ì¥Õ¥¡¥¤¥ë¤òŸ³«¤·¤ÆNucleus¤Î¥×¥é¥°¥¤¥ó¥Ç¥£¥ì¥¯¥È¥ê¤ËÇÛÃÖ¤·¤Þ¤¹¡£(¾åµ­»²¾È)
  2. +
  3. ²¼µ­¤Î¥ê¥ó¥¯¤è¤ê¥¢¥×¥ì¥Ã¥È,PCH¥Ó¥å¥¢¡¼(¥¢¥Ë¥á¡¼¥·¥ç¥ó¤òºÆÀ¸¤¹¤ë¤È¤­¤Î¤ß)¤ò¥À¥¦¥ó¥í¡¼¥É¤·¤Þ¤¹
    + ¡¡¡¦PaintBBS
    + ¡¡¡¦¤·¤£¥Ú¥¤¥ó¥¿¡¼(Ê£¿ô¥Õ¥¡¥¤¥ë¥Ð¡¼¥¸¥ç¥ó) +
  4. +
  5. ²¼µ­¤Î¥ê¥ó¥¯¤è¤êưŪ¥Ñ¥ì¥Ã¥È¤ò¥À¥¦¥ó¥í¡¼¥É¤·¤Þ¤¹(ɬÍפʾì¹ç¤Î¤ß¡£¤Ê¤¯¤Æ¤âÆ°¤­¤Þ¤¹¡£)
    + ¡¡¡¦WCS ưŪ¥Ñ¥ì¥Ã¥È¥³¥ó¥È¥í¡¼¥ë¥»¥Ã¥È(DynPalette)
    + ¡¡¡¦Palette-Selfy +
  6. +
  7. 2¡¢3¤Ç¥À¥¦¥ó¥í¡¼¥É¤·¤¿¥Õ¥¡¥¤¥ë¤òŸ³«¤·¡¢Ãæ¿È¤òÁ´¤Æ¡Ö¤ª³¨¤«¤­¥¢¥×¥ì¥Ã¥ÈÇÛÃ֥ǥ£¥ì¥¯¥È¥ê¡×(¾åµ­»²¾È)¤ËÇÛÃÖ¤·¤Þ¤¹
  8. +
  9. Nucleus´ÉÍý²èÌ̤«¤é¡¢NP_Paint¤Î¥¤¥ó¥¹¥È¡¼¥ë¤ò¼Â¹Ô¤·¤Þ¤¹
  10. +
  11. ¥×¥é¥°¥¤¥ó¥ª¥×¥·¥ç¥ó¤Î¡Ö¥Ç¥Õ¥©¥ë¥ÈApplet¡×¡Ö¥Ç¥Õ¥©¥ë¥ÈPalette¡×¤Î¥×¥ë¥À¥¦¥ó¤Ë¹àÌܤ¬É½¼¨¤µ¤ì¤Æ¤¤¤ì¤Ð¥¤¥ó¥¹¥È¡¼¥ë¤ÏÀ®¸ù¤Ç¤¹¡£
    + ¥ê¥¹¥È¤¬É½¼¨¤¬½Ð¤Ê¤¤¾ì¹ç¤Ë¤ÏÀµ¾ï¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¥×¥é¥°¥¤¥ó¥ª¥×¥·¥ç¥ó¤Î ¡Ö¥í¥°¤ò½ÐÎϤò¹Ô¤¦¤«¡©¡×¤ò¤Ï¤¤¤Ë¤·¤Æ¡¢´ÉÍý¼ÔÁàºîÍúÎò¤ò»²¾È¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤¡£ + ­¤ê¤Ê¤¤¥Õ¥¡¥¤¥ë¤¬¥í¥°¤Ë½ÐÎϤµ¤ì¤Æ¤¤¤ë¤Ï¤º¤Ç¤¹¡£ +
  12. +
  13. ¥¹¥­¥ó¤Î¤É¤³¤«¤Ë<%Paint%>¤òµ­½Ò¤·¤Þ¤¹
  14. +
  15. ¥í¥°¥¤¥ó¤·¤¿¾õÂ֤ǡ¢¾åµ­¤Î¥¹¥­¥ó¤òɽ¼¨¤¹¤ë¤È¤ª³¨¤«¤­²èÌ̤ËÆþ¤ë¤¿¤á¤Î¥Õ¥©¡¼¥à¤¬½Ð¸½¤·¤Þ¤¹
  16. +
  17. ¡ÖPaint¡×¥Ü¥¿¥ó¤ò²¡¤¹¤ÈApplet²èÌ̤¬³«¤­¤Þ¤¹¡£
    + Applet¤¬É½¼¨¤µ¤ì¤Ê¤¤¾ì¹ç¤Ë¤Ï¡¢¤ª³¨¤«¤­¥¢¥×¥ì¥Ã¥ÈÇÛÃ֥ǥ£¥ì¥¯¥È¥ê¤ª¤è¤Ó¾å°Ì¥Ç¥£¥ì¥¯¥È¥ê¡¢2¡¢3¤ÇÇÛÃÖ¤·¤¿¥Õ¥¡¥¤¥ë¤Î¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤ò³Îǧ¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤¡£
  18. +
  19. ¤¢¤È¤Ï³¨¤òÉÁ¤¯¤À¤±¡£ÀßÄê¤Ë¤è¤Ã¤Æ¤Ï¥Õ¥¡¥¤¥ë¤¬¥»¡¼¥Ö¤µ¤ì¤Ê¤¤²ÄǽÀ­¤â¤¢¤ë¤Î¤Ç¡¢°ìÅ٤ϻî½ñ¤­¤ò¤¹¤ë¤³¤È¤ò¥ª¥¹¥¹¥á¤·¤Þ¤¹¡£
  20. +
+ +

¥ª¥×¥·¥ç¥ó

+ +

¥×¥é¥°¥¤¥ó¥ª¥×¥·¥ç¥ó¡Ê¥µ¥¤¥ÈÁ´ÂΤÎÀßÄê¡Ë

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
¥ª¥×¥·¥ç¥ó²òÀâ
¥Ç¥Õ¥©¥ë¥È¤Î¥­¥ã¥ó¥Ð¥¹¥µ¥¤¥º(Éý) + ¥Ç¥Õ¥©¥ë¥È¤Î¥­¥ã¥ó¥Ð¥¹¥µ¥¤¥º(Éý)¤ò»ØÄꤷ¤Þ¤¹¡£
+ ¥Ç¥Õ¥©¥ë¥È: 300 +
¥Ç¥Õ¥©¥ë¥È¤Î¥­¥ã¥ó¥Ð¥¹¥µ¥¤¥º(¹â¤µ) + ¥Ç¥Õ¥©¥ë¥È¤Î¥­¥ã¥ó¥Ð¥¹¥µ¥¤¥º(¹â¤µ)¤ò»ØÄꤷ¤Þ¤¹¡£
+ ¥Ç¥Õ¥©¥ë¥È: 300 +
Æ°²è¥Õ¥¡¥¤¥ë¤òÊݸ¤¹¤ë¤«¡© + ¥Ç¥Õ¥©¥ë¥È¤ÇÆ°²è¥Õ¥¡¥¤¥ë(pch/spch)¤òÊݸ¤¹¤ë¤«»ØÄꤷ¤Þ¤¹¡£
+ ¥Ç¥Õ¥©¥ë¥È: ¤Ï¤¤ +
¥Ç¥Õ¥©¥ë¥ÈApplet + ¥Ç¥Õ¥©¥ë¥È¤Ç»ÈÍѤ¹¤ëApplet¤ò»ØÄꤷ¤Þ¤¹¡£ +
¥Ç¥Õ¥©¥ë¥È¤Î²èÁü·Á¼° + ¥Ç¥Õ¥©¥ë¥È¤Ç»ÈÍѤ¹¤ë²èÁü·Á¼°¤ò»ØÄꤷ¤Þ¤¹¡£Ä̾AUTO¤Î¾ì¹ç¤Ë¥Ç¡¼¥¿¤Ï°ìÈÖ¾®¤µ¤¯¤Ê¤ê¤Þ¤¹¡£
+ ¥Ç¥Õ¥©¥ë¥È: AUTO +
²èÁü·Á¼°¤¬AUTO¤Î¾ì¹ç¤Î¸º¿§¡¦°µ½ÌΨ[0-100] + PNG¤Î¸º¿§Î¨¡¢JPEG¤Î°µ½ÌΨ¤òÀßÄꤷ¤Þ¤¹¡£²¼µ­¤ÎïçÃͤò±Û¤¨¤¿¾ì¹ç¤Ë»È¤ï¤ì¤Þ¤¹¡£
+ ¥Ç¥Õ¥©¥ë¥È: 15 (¿ä¾©ÃÍ) +
²èÁü·Á¼°¤¬AUTO¤Î¾ì¹ç¤Ë¸º¿§¤¬Í­¸ú¤Ë¤Ê¤ëïçÃÍ[KB](ÍøÍѤ·¤Ê¤¤¾ì¹ç¤Ï0) + ¥Õ¥¡¥¤¥ë¤¬¤³¤ÎÍÆÎ̤òĶ¤¨¤ë¾ì¹ç¤Ë¸º¿§¤ò¹Ô¤¤¤Þ¤¹¡£¤³¤Îµ¡Ç½¤òÍøÍѤ·¤Ê¤¤¾ì¹ç¤Ë¤Ï0¡¢É¬¤º¸º¿§¤·¤¿¤¤¾ì¹ç¤Ë¤Ï1¤òÀßÄꤷ¤Þ¤¹¡£
+ ¥Ç¥Õ¥©¥ë¥È: 60 (¿ä¾©ÃÍ) +
²èÁü·Á¼°¤¬JPG¤Î¾ì¹ç¤Î²èÁüÉʼÁ[0-100] + ²èÁü·Á¼°¤ÇJPG¤òÁªÂò¤·¤¿¾ì¹ç¤Î²èÁüÉʼÁ
+ ¥Ç¥Õ¥©¥ë¥È: 75 +
ËÜʸ¥Æ¥ó¥×¥ì¡¼¥È + ¤ª³¨¤«¤­¸å¤ËÄɲ乤륨¥ó¥È¥ê¤ÎËÜʸ¤ò»ØÄꤷ¤Þ¤¹¡£ + ¥Æ¥ó¥×¥ì¡¼¥ÈÆâ¤Ç»È¤¨¤ë¥¿¥°¤Ë¤Ä¤¤¤Æ¤ÏÊÌÅÓ²òÀ⤷¤Æ¤¢¤ê¤Þ¤¹
+ ¥Ç¥Õ¥©¥ë¥È: <%paint(<%url%>|<%w%>|<%h%>|pbbsimage)%> +
Paint¥¿¥°¥Æ¥ó¥×¥ì¡¼¥È + ËÜʸÃæ¤Ëµ­½Ò¤·¤¿<%paint()%>¤ò¤É¤Î¤è¤¦¤ËŸ³«¤¹¤ë¤«»ØÄꤷ¤Þ¤¹¡£ + ¥¢¥Ë¥á¡¼¥·¥ç¥ó¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤Ë¤Ï¤³¤Î¥Æ¥ó¥×¥ì¡¼¥È¤Ï»ÈÍѤµ¤ì¤º¡¢²¼µ­¤Î²èÁüÉô¥Æ¥ó¥×¥ì¡¼¥È¤Î¤ß¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£ + ¥Æ¥ó¥×¥ì¡¼¥ÈÆâ¤Ç»È¤¨¤ë¥¿¥°¤Ë¤Ä¤¤¤Æ¤ÏÊÌÅÓ²òÀ⤷¤Æ¤¢¤ê¤Þ¤¹
+
²èÁüÉô¥Æ¥ó¥×¥ì¡¼¥È + Paint¥¿¥°¥Æ¥ó¥×¥ì¡¼¥ÈÆâ¤Î<%img%>¤ò¤É¤Î¤è¤¦¤ËÃÖ´¹¤¹¤ë¤«»ØÄꤷ¤Þ¤¹¡£ + ¥Æ¥ó¥×¥ì¡¼¥ÈÆâ¤Ç»È¤¨¤ë¥¿¥°¤Ë¤Ä¤¤¤Æ¤ÏÊÌÅÓ²òÀ⤷¤Æ¤¢¤ê¤Þ¤¹
+
¥í¥°¤ò½ÐÎϤò¹Ô¤¦¤«¡© + ¤Ï¤¤¤Ë¤¹¤ë¤³¤È¤Ë¤è¤ê¡Ö´ÉÍý¼ÔÁàºîÍúÎò¡×¥í¥°¤òµ­Ï¿¤¹¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£ + ËÄÂç¤Ê¥í¥°¤¬½ÐÎϤµ¤ì¤ë¤Î¤ÇÆ°ºî³Îǧ»þ°Ê³°¤Ï¤¤¤¤¤¨¤Ë¤·¤Æ¤ª¤¯¤³¤È¤ò¿ä¾©¤·¤Þ¤¹¡£ + ¤¤¤¤¤¨¤Î¾ì¹ç¤Ç¤¢¤Ã¤Æ¤â½ÅÂç¤Ê¥¨¥é¡¼¤Ë¤Ä¤¤¤Æ¤Ïµ­Ï¿¤µ¤ì¤Þ¤¹¡£
+ ¥Ç¥Õ¥©¥ë¥È: ¤¤¤¤¤¨ +
+ +

¥Æ¥ó¥×¥ì¡¼¥ÈÆâ¤ÇÍøÍѲÄǽ¤Ê¥¿¥°

+ +

¥Æ¥ó¥×¥ì¡¼¥ÈÃæ¤Ë¤Ï°Ê²¼¤Î¥¿¥°¤¬ÍøÍѤǤ­¤Þ¤¹¡£

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
¥¿¥°²òÀâ
<%url%>Êݸ¤µ¤ì¤¿²èÁü¤Îmedia¥Õ¥©¥ë¥À°Ê²¼¤Îurl
<%w%>Êݸ¤µ¤ì¤¿²èÁü¤Î²£Éý
<%h%>Êݸ¤µ¤ì¤¿²èÁü¤Î½ÄÉý
<%alt%>alt¥Æ¥­¥¹¥È
<%img%> + ¢¨Paint¥¿¥°¥Æ¥ó¥×¥ì¡¼¥È¤Î¤ß
+ ²èÁüÉô¥Æ¥ó¥×¥ì¡¼¥È¤ÎŸ³«°ÌÃÖ¤ò»ØÄꤷ¤Þ¤¹¡£ +
<%viewer%> + ¥¢¥Ë¥á¡¼¥·¥ç¥ó¥Õ¥¡¥¤¥ë¤òɽ¼¨¤¹¤ë¤¿¤á¤ÎURL +
<%continue%> + Continueµ¡Ç½¤Ø¤Î¥ê¥ó¥¯
+ ¢¨¥í¥°¥¤¥ó»þ¤«¤Ä¡¢¼«Ê¬¤Î¥³¥ì¥¯¥·¥ç¥óÆâ¤Î¤ª³¨¤«¤­¤Î¤ßɽ¼¨¤µ¤ì¤Þ¤¹ +
+ +

¥µ¥Ý¡¼¥È¤È¥Ð¥°¥ì¥Ý¡¼¥È

+ +

ÌäÂ꤬²ò·è¤Ç¤­¤Ê¤¤¾ì¹ç¤Ë¤ÏNucleus(JP)¥Õ¥©¡¼¥é¥à¤ò³èÍѤ·¤Þ¤·¤ç¤¦¡£

+

¥Ð¥°¥ì¥Ý¡¼¥È¤Ë¤Ä¤¤¤Æ¤ÏÇÛÉÛ¸µ¤ÎNP_cles()¤Ë¤Æ¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤¹¤Î¤Ç¡¢³ºÅö¤Î¥Ð¡¼¥¸¥ç¥ó¤Î¥¨¥ó¥È¥ê¤Ë¥³¥á¥ó¥ÈËô¤Ï¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¤Ç¤É¤¦¤¾¡£

+

¡ÖÆ°ºî³Îǧ¤·¤Þ¤·¤¿¡×¤È¤¤¤¦¤À¤±¤Ç¤â³«È¯¼Ô¤Ë¤Ï½ÅÍפʾðÊó¤Ë¤Ê¤ê¤Þ¤¹¡£

+ +

¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë

+ +

NP_Paint¤ò´°Á´¤Ë¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤¿¤á¤Î¼ê½ç¤Ï°Ê²¼¤ÎÄ̤ê¤Ç¤¹

+ +
    +
  1. ¡Ö¥×¥é¥°¥¤¥ó´ÉÍý¡×¤«¤éNP_Paint¤ò¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë
  2. +
  3. Nucleus¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤ë¥µ¡¼¥Ð¤Înucleus/plugin/¥Ç¥£¥ì¥¯¥È¥ê¤«¤éNP_Paint.php¤Èpaint¥Ç¥£¥ì¥¯¥È¥ê¤òºï½ü¤¹¤ë
  4. +
+ +

¥Ð¡¼¥¸¥ç¥óÍúÎò

+ +

¿·¥Ð¡¼¥¸¥ç¥ó¤ÏNP_cles()¤Ç³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£

+ +
    +
  • Version 1.18: (2010/06/06)
  • +
  • ¡¡[Fixed] ɽ¼¨¤µ¤ì¤ëHTML¤ÎºÙÉô¤ò²þÎÉ
  • +
  • ¡¡[Fixed] register_globals,allow_url_fopen,allow_url_include¤¬on¤Î¾ì¹ç¤Ë¥ê¥â¡¼¥È¥³¡¼¥É¥¤¥ó¥¸¥§¥¯¥·¥ç¥ó¤¬È¯À¸¤¹¤ëÌäÂê¤ËÂбþ¤·¤Þ¤·¤¿(Thanks Katsumi¤µ¤ó)
  • +
  • Version 1.17: (2008/03/03)
  • +
  • ¡¡[Changed] ´ØÏ¢¥Õ¥¡¥¤¥ë¤Î¥í¡¼¥É»þ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤¿¾ì¹ç¤Î½èÍý¤ò¸·³Ê¤Ë¤·¤¿
  • +
  • ¡¡[Changed] ¥í¥°¤¬¾ÜºÙ¤Ë½ÐÎϤµ¤ì¤ë¤è¤¦¤Ë¤·¤¿
  • +
  • ¡¡[Fixed] GD¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤ÎÉÔ¶ñ¹ç¤ò½¤Àµ
  • +
  • Version 1.16: (2007/06/17)
  • +
  • ¡¡[Fixed] mysql_query()¤òsql_query()¤ËÊѹ¹
  • +
  • ¡¡[Fixed] ¥Ç¥Ð¥Ã¥°ÍѤε­½Ò¤¬¤½¤Î¤Þ¤Þ¤Ë¤Ê¤Ã¤Æ¤¤¤¿Éôʬ¤ò¥³¥á¥ó¥È²½
  • +
  • ¡¡[Changed] ¥Æ¥ó¥×¥ì¡¼¥È¤Ç»È¤¦¤³¤È¤¬¤Ç¤­¤ëÊÑ¿ô¤Î¸«Ä¾¤·
  • +
  • ¡¡[Fixed] ¥Ó¥å¥¢¡¼Éôʬ¤Îtypo¤òÄûÀµ
  • +
  • Version 1.15: (2006/11/26)
  • +
  • ¡¡[Added] Ticket½èÍý¤òÄɲÃ(CSRFÂкö)
  • +
  • Version 1.14: (2006/10/09)
  • +
  • ¡¡[Changed] ²èÁüÅê¹Æ»þ¤Îǧ¾ÚÊýË¡¤òÊѹ¹
  • +
  • ¡¡[Added] Åê¹Æ¥¨¥é¡¼¤ò²óÈò¤¹¤ë¤¿¤á¤Îµ¡Ç½¤òÄɲÃ
  • +
  • ¡¡[Changed] Åê¹Æ²èÁü¤ËÉÕ¤¯¥×¥ì¥Õ¥£¥Ã¥¯¥¹¤òÆüÉդˤ·¤¿
  • +
  • Version 1.13: (2006/09/30)
  • +
  • ¡¡[Changed] ¥»¥­¥å¥ê¥Æ¥£¤Î¸þ¾å
  • +
  • Version 1.12: (2006/05/13)
  • +
  • ¡¡[Fixed] blog¤Î´ÉÍý¸¢¸Â¤ò»ý¤¿¤Ê¤¤¥æ¡¼¥¶¡¼¤ÎÅê¹Æ¤¬¥¨¥é¡¼¤È¤Ê¤ëÉÔ¶ñ¹ç¤ò½¤Àµ
  • +
  • ¡¡[Fixed] ¥¨¥ó¥È¥êÅê¹Æ»þ¤Ë¥³¥ì¥¯¥·¥ç¥ó¤ò¾Êά¤·¤¿¾ì¹ç¤ÎÉÔ¶ñ¹ç¤ò½¤Àµ¤·¤¿
  • +
  • ¡¡[Fixed] Safari¤Ç¤ÎÉÔ¶ñ¹ç¤ò½¤Àµ
  • +
  • ¡¡[Added] UTF-8,EUC-JPÈǤòÅý°ì¤·¤¿
  • +
  • Version 1.11: (2006/03/19)
  • +
  • ¡¡[Fixed] <%Paint%>¤Çɽ¼¨¤µ¤ì¤ëºÝ¤Î¥Õ¥©¡¼¥à¤òÊѹ¹¤·¤¿
  • +
  • ¡¡[Fixed] ¥é¥¤¥»¥ó¥¹¤òÊѹ¹¤·¤¿
  • +
  • Version 1.10: (2005/10/30)
  • +
  • ¡¡[Added] QualityÃͤÎÀßÄê¤ËÂбþ
  • +
  • ¡¡[Fixed] Continue»þ¤Ë¤·¤£¥Ú¥¤¥ó¥¿¡¼¤È¤·¤£¥Ú¥¤¥ó¥¿¡¼Pro¤Î¼«Æ°ÁªÂò¤ÎÌäÂê¤ò²ò·è
  • +
  • Version 1.9: (2005/10/05)
  • +
  • ¡¡[Fixed] ¥Õ¥¡¥¤¥ë¤ÎÊݸÊýË¡¤ÎÊѹ¹¤òº¬ËÜŪ¤ËÊѹ¹
  • +
  • ¡¡[Info ] PHP5´Ä¶­¤Ç¤ÎÆ°ºî¤ò³Îǧ
  • +
  • ¡¡[Added] Continue»þ¤ÎÆɤ߹þ¤ß¸µ¤ò¥¢¥Ë¥á¥Õ¥¡¥¤¥ë¤È²èÁü¤«¤éÁª¤Ù¤ë¤è¤¦¤Ë¤·¤¿
  • +
  • Version 1.8: (2005/10/04)
  • +
  • ¡¡[Fixed] ¥Õ¥¡¥¤¥ë¤ÎÊݸÊýË¡¤ÎÊѹ¹¤È¥¢¥×¥ì¥Ã¥È¤Î¥Ñ¥é¥á¡¼¥¿Ä´À°¡Ê¥Õ¥¡¥¤¥ë¤¬²õ¤ì¤ë¸½¾Ý¤ËÂбþ¡Ë
  • +
  • ¡¡[Added] ´ÉÍý²èÌ̤«¤éApplet/Palette¤¬¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤ëµ¡Ç½¤òÄɲÃ
  • +
  • ¡¡[Added] ´ÉÍý²èÌ̤«¤éÆ°ºî³Îǧ¤¬¤Ç¤­¤ëµ¡Ç½¤òÄɲÃ
  • +
  • Version 1.7: (2005/09/01)
  • +
  • ¡¡[Added] ²èÁü¤ÎÊݸ·Á¼°¡¢´ØÏ¢¥Ñ¥é¥á¡¼¥¿¤¬ÀßÄê¤Ç¤­¤ë¤è¤¦¤Ë½¤Àµ
  • +
  • Version 1.6: (2005/08/20)
  • +
  • ¡¡[Added] Continueµ¡Ç½¤ò¼ÂÁõ
  • +
  • ¡¡[Info ] MacOS9¤Ç¤ÎÆ°ºî³Îǧ
  • +
  • Version 1.5: (2005/08/04)
  • +
  • ¡¡[Fixed] Firefox(MacOSX)¤ÇÆ°ºî¤·¤Ê¤¤¥Ð¥°¤ò½¤Àµ
  • +
  • Version 1.4(beta): (2005/07/31)
  • +
  • ¡¡[Added] <%paint()%>¤òÄɲÃ(image,popup¤È°ú¿ô¸ß´¹)
  • +
  • ¡¡[Added] pch/spch¤ÎºÆÀ¸¤ËÂбþ¤·¤¿(¥Ó¥å¥¢¡¼¤Î¥¤¥ó¥¹¥È¡¼¥ë¤¬É¬Í×)
  • +
  • ¡¡[Added] WCSDynPalette¤ò»ÈÍѤ¹¤ëºÝ¡¢ºÇ½é¤ËÆɤ߹þ¤à¥Ñ¥ì¥Ã¥È¤òÁªÂò¤Ç¤­¤ë¤è¤¦¤Ë¤·¤¿
  • +
  • Version 1.3(beta): (2005/07/28)
  • +
  • ¡¡[Fixed] Åê¹Æ¥¨¥é¡¼»þ¤Ë500 Internal Server Error¤òÊÖ¤¹¤è¤¦¤Ë¤·¤¿
  • +
  • ¡¡[Fixed] ¥¨¥é¡¼¥Á¥§¥Ã¥¯¤ò¸·Ì©¤Ë¤·¤¿
  • +
  • Version 1.2(beta): (2005/07/26)
  • +
  • ¡¡[Fixed] ¤ª³¨¤«¤­¸å¤Ë<%image%>¤òÀ¸À®¤¹¤ëÉôʬÊѹ¹
  • +
  • Version 1.1(beta): (2005/07/24)
  • +
  • ¡¡[Fixed] IE¤ÇÅê¹Æ¤Ç¤­¤Ê¤¤¥Ð¥°¤ËÂбþ¤·¤¿
  • +
  • Version 1.0(beta): (2005/07/23)
  • +
  • ¡¡[New!] ¥Ù¡¼¥¿ÈǤȤ·¤Æ¿·µ¬¸ø³«
  • +
+ +

³«È¯¼Ô¤Ë¤Ä¤¤¤Æ

+ + diff --git a/trunk/NP_Paint/paint/template/index/help_japanese-utf8.html b/trunk/NP_Paint/paint/template/index/help_japanese-utf8.html new file mode 100644 index 0000000..f0e0373 --- /dev/null +++ b/trunk/NP_Paint/paint/template/index/help_japanese-utf8.html @@ -0,0 +1,314 @@ +

NP_Paint ヘルプ

+ +

Plugin概要Powered by CLES

+ +

お絵かきアプレットとの連携を可能にするプラグインです

+

※このプラグインは単体では動きません。下記の「最低限やらなければならないこと」をご覧の上セットアップを行ってください。

+ +

必要環境

+

Nucleus: 3.2以降

+

PHP: 4.3.2以降、サーバ側でJPEG変換を使う場合にはGDサポートが必要です。

+

動作確認はサーバ側PHP 5.2.5および、Nucleus 3.31SP1(UTF-8/EUC-JP)で行っています

+ +

動作確認済みクライアント(これ以外の環境で動作確認ができた場合にはご連絡ください)

+

・Firefox(win)

+

・IE6(win)

+

・Firefox(MacOSX)

+

・Safari(MacOSX)

+

・IE5.1(MacOS9)[ただし、動的パレット動作不可]

+

・Netscape7(MacOS9)動作不安定のため

+ +

ファイル構成

+ +

圧縮ファイルを展開すると以下の通りになります。

+ +

+

(Nucleusのpluginフォルダ)
+├NP_Paint.php
+├paint/
+│├applet/ ← お絵かきアプレット配置ディレクトリ
+││├index.html
+││└readme.txt
+│├Applet_PaintBBS.php (PaintBBS)
+│├Applet_Shipainter.php (しぃペインター)
+│├Applet_Shipainterpro.php (しぃペインターPro)
+│├index.php
+│├paint.css
+│├paint.js
+│├PaintPlugin.php
+│├Palette_None.php (パレットなし)
+│├Palette_Selfy.php (Selfyパレット)
+│├Palette_WCS.php (WCSパレット)
+│├Parser_PaintBBS.php
+│├Viewer_Continue.php (Continue機能)
+│├Viewer_Pch.php (pchビュアー)
+│└Viewer_Spch.php (spchビュアー)
+└sharedlibs/
+ └PEAR/共通ライブラリ群
+
+

+ + +

最低限やらなければならないこと

+ +

このプラグインにはライセンスの関係上、お絵かきに必要なアプレット類を同梱していません。

+

(※アプレットや動的パレットはNucleusと違い、GPLライセンスではありません。ダウンロードの際にはライセンスをよく読んでください。)

+ + +

このため、下記の手順にてセットアップを行う必要があります。

+ +
    +
  1. NP_Paintの圧縮ファイルを展開してNucleusのプラグインディレクトリに配置します。(上記参照)
  2. +
  3. 下記のリンクよりアプレット,PCHビュアー(アニメーションを再生するときのみ)をダウンロードします
    +  ・PaintBBS
    +  ・しぃペインター(複数ファイルバージョン) +
  4. +
  5. 下記のリンクより動的パレットをダウンロードします(必要な場合のみ。なくても動きます。)
    +  ・WCS 動的パレットコントロールセット(DynPalette)
    +  ・Palette-Selfy +
  6. +
  7. 2、3でダウンロードしたファイルを展開し、中身を全て「お絵かきアプレット配置ディレクトリ」(上記参照)に配置します
  8. +
  9. Nucleus管理画面から、NP_Paintのインストールを実行します
  10. +
  11. プラグインオプションの「デフォルトApplet」「デフォルトPalette」のプルダウンに項目が表示されていればインストールは成功です。
    + リストが表示が出ない場合には正常にインストールされていません。プラグインオプションの 「ログを出力を行うか?」をはいにして、管理者操作履歴を参照してみてください。 + 足りないファイルがログに出力されているはずです。 +
  12. +
  13. スキンのどこかに<%Paint%>を記述します
  14. +
  15. ログインした状態で、上記のスキンを表示するとお絵かき画面に入るためのフォームが出現します
  16. +
  17. 「Paint」ボタンを押すとApplet画面が開きます。
    + Appletが表示されない場合には、お絵かきアプレット配置ディレクトリおよび上位ディレクトリ、2、3で配置したファイルのパーミッションを確認してみてください。
  18. +
  19. あとは絵を描くだけ。設定によってはファイルがセーブされない可能性もあるので、一度は試書きをすることをオススメします。
  20. +
+ +

オプション

+ +

プラグインオプション(サイト全体の設定)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
オプション解説
デフォルトのキャンバスサイズ(幅) + デフォルトのキャンバスサイズ(幅)を指定します。
+ デフォルト: 300 +
デフォルトのキャンバスサイズ(高さ) + デフォルトのキャンバスサイズ(高さ)を指定します。
+ デフォルト: 300 +
動画ファイルを保存するか? + デフォルトで動画ファイル(pch/spch)を保存するか指定します。
+ デフォルト: はい +
デフォルトApplet + デフォルトで使用するAppletを指定します。 +
デフォルトの画像形式 + デフォルトで使用する画像形式を指定します。通常、AUTOの場合にデータは一番小さくなります。
+ デフォルト: AUTO +
画像形式がAUTOの場合の減色・圧縮率[0-100] + PNGの減色率、JPEGの圧縮率を設定します。下記の閾値を越えた場合に使われます。
+ デフォルト: 15 (推奨値) +
画像形式がAUTOの場合に減色が有効になる閾値[KB](利用しない場合は0) + ファイルがこの容量を超える場合に減色を行います。この機能を利用しない場合には0、必ず減色したい場合には1を設定します。
+ デフォルト: 60 (推奨値) +
画像形式がJPGの場合の画像品質[0-100] + 画像形式でJPGを選択した場合の画像品質
+ デフォルト: 75 +
本文テンプレート + お絵かき後に追加するエントリの本文を指定します。 + テンプレート内で使えるタグについては別途解説してあります
+ デフォルト: <%paint(<%url%>|<%w%>|<%h%>|pbbsimage)%> +
Paintタグテンプレート + 本文中に記述した<%paint()%>をどのように展開するか指定します。 + アニメーションファイルが見つからない場合にはこのテンプレートは使用されず、下記の画像部テンプレートのみが出力されます。 + テンプレート内で使えるタグについては別途解説してあります
+
画像部テンプレート + Paintタグテンプレート内の<%img%>をどのように置換するか指定します。 + テンプレート内で使えるタグについては別途解説してあります
+
ログを出力を行うか? + はいにすることにより「管理者操作履歴」ログを記録するようになります。 + 膨大なログが出力されるので動作確認時以外はいいえにしておくことを推奨します。 + いいえの場合であっても重大なエラーについては記録されます。
+ デフォルト: いいえ +
+ +

テンプレート内で利用可能なタグ

+ +

テンプレート中には以下のタグが利用できます。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
タグ解説
<%url%>保存された画像のmediaフォルダ以下のurl
<%w%>保存された画像の横幅
<%h%>保存された画像の縦幅
<%alt%>altテキスト
<%img%> + ※Paintタグテンプレートのみ
+ 画像部テンプレートの展開位置を指定します。 +
<%viewer%> + アニメーションファイルを表示するためのURL +
<%continue%> + Continue機能へのリンク
+ ※ログイン時かつ、自分のコレクション内のお絵かきのみ表示されます +
+ +

サポートとバグレポート

+ +

問題が解決できない場合にはNucleus(JP)フォーラムを活用しましょう。

+

バグレポートについては配布元のNP_cles()にて受け付けていますので、該当のバージョンのエントリにコメント又はトラックバックでどうぞ。

+

「動作確認しました」というだけでも開発者には重要な情報になります。

+ +

アンインストール

+ +

NP_Paintを完全にアンインストールするための手順は以下の通りです

+ +
    +
  1. 「プラグイン管理」からNP_Paintをアンインストールする
  2. +
  3. Nucleusをインストールしているサーバのnucleus/plugin/ディレクトリからNP_Paint.phpとpaintディレクトリを削除する
  4. +
+ +

バージョン履歴

+ +

新バージョンはNP_cles()で確認してください。

+ +
    +
  • Version 1.18: (2010/06/06)
  • +
  •  [Fixed] 表示されるHTMLの細部を改良
  • +
  •  [Fixed] register_globals,allow_url_fopen,allow_url_includeがonの場合にリモートコードインジェクションが発生する問題に対応しました(Thanks Katsumiさん)
  • +
  • Version 1.17: (2008/03/03)
  • +
  •  [Changed] 関連ファイルのロード時にエラーが発生した場合の処理を厳格にした
  • +
  •  [Changed] ログが詳細に出力されるようにした
  • +
  •  [Fixed] GDがインストールされていない場合の不具合を修正
  • +
  • Version 1.16: (2007/06/17)
  • +
  •  [Fixed] mysql_query()をsql_query()に変更
  • +
  •  [Fixed] デバッグ用の記述がそのままになっていた部分をコメント化
  • +
  •  [Changed] テンプレートで使うことができる変数の見直し
  • +
  •  [Fixed] ビュアー部分のtypoを訂正
  • +
  • Version 1.15: (2006/11/26)
  • +
  •  [Added] Ticket処理を追加(CSRF対策)
  • +
  • Version 1.14: (2006/10/09)
  • +
  •  [Changed] 画像投稿時の認証方法を変更
  • +
  •  [Added] 投稿エラーを回避するための機能を追加
  • +
  •  [Changed] 投稿画像に付くプレフィックスを日付にした
  • +
  • Version 1.13: (2006/09/30)
  • +
  •  [Changed] セキュリティの向上
  • +
  • Version 1.12: (2006/05/13)
  • +
  •  [Fixed] blogの管理権限を持たないユーザーの投稿がエラーとなる不具合を修正
  • +
  •  [Fixed] エントリ投稿時にコレクションを省略した場合の不具合を修正した
  • +
  •  [Fixed] Safariでの不具合を修正
  • +
  •  [Added] UTF-8,EUC-JP版を統一した
  • +
  • Version 1.11: (2006/03/19)
  • +
  •  [Fixed] <%Paint%>で表示される際のフォームを変更した
  • +
  •  [Fixed] ライセンスを変更した
  • +
  • Version 1.10: (2005/10/30)
  • +
  •  [Added] Quality値の設定に対応
  • +
  •  [Fixed] Continue時にしぃペインターとしぃペインターProの自動選択の問題を解決
  • +
  • Version 1.9: (2005/10/05)
  • +
  •  [Fixed] ファイルの保存方法の変更を根本的に変更
  • +
  •  [Info ] PHP5環境での動作を確認
  • +
  •  [Added] Continue時の読み込み元をアニメファイルと画像から選べるようにした
  • +
  • Version 1.8: (2005/10/04)
  • +
  •  [Fixed] ファイルの保存方法の変更とアプレットのパラメータ調整(ファイルが壊れる現象に対応)
  • +
  •  [Added] 管理画面からApplet/Paletteがインストールできる機能を追加
  • +
  •  [Added] 管理画面から動作確認ができる機能を追加
  • +
  • Version 1.7: (2005/09/01)
  • +
  •  [Added] 画像の保存形式、関連パラメータが設定できるように修正
  • +
  • Version 1.6: (2005/08/20)
  • +
  •  [Added] Continue機能を実装
  • +
  •  [Info ] MacOS9での動作確認
  • +
  • Version 1.5: (2005/08/04)
  • +
  •  [Fixed] Firefox(MacOSX)で動作しないバグを修正
  • +
  • Version 1.4(beta): (2005/07/31)
  • +
  •  [Added] <%paint()%>を追加(image,popupと引数互換)
  • +
  •  [Added] pch/spchの再生に対応した(ビュアーのインストールが必要)
  • +
  •  [Added] WCSDynPaletteを使用する際、最初に読み込むパレットを選択できるようにした
  • +
  • Version 1.3(beta): (2005/07/28)
  • +
  •  [Fixed] 投稿エラー時に500 Internal Server Errorを返すようにした
  • +
  •  [Fixed] エラーチェックを厳密にした
  • +
  • Version 1.2(beta): (2005/07/26)
  • +
  •  [Fixed] お絵かき後に<%image%>を生成する部分変更
  • +
  • Version 1.1(beta): (2005/07/24)
  • +
  •  [Fixed] IEで投稿できないバグに対応した
  • +
  • Version 1.0(beta): (2005/07/23)
  • +
  •  [New!] ベータ版として新規公開
  • +
+ +

開発者について

+ +
    +
  • hsur (cles::blog)
  • +
  • 配布元: NP_cles() - NP_Paint
  • +
  • ドネーションや仕事のご依頼も歓迎します。
  • +
diff --git a/trunk/NP_Paint/paint/template/index/menu_japanese-euc.html b/trunk/NP_Paint/paint/template/index/menu_japanese-euc.html new file mode 100644 index 0000000..4128b03 --- /dev/null +++ b/trunk/NP_Paint/paint/template/index/menu_japanese-euc.html @@ -0,0 +1,7 @@ +

Paint menu

+ diff --git a/trunk/NP_Paint/paint/template/index/menu_japanese-utf8.html b/trunk/NP_Paint/paint/template/index/menu_japanese-utf8.html new file mode 100644 index 0000000..1d5b65e --- /dev/null +++ b/trunk/NP_Paint/paint/template/index/menu_japanese-utf8.html @@ -0,0 +1,7 @@ +

Paint menu

+ diff --git a/trunk/NP_Paint/paint/template/np_paint/form_japanese-euc.html b/trunk/NP_Paint/paint/template/np_paint/form_japanese-euc.html new file mode 100644 index 0000000..559d8e7 --- /dev/null +++ b/trunk/NP_Paint/paint/template/np_paint/form_japanese-euc.html @@ -0,0 +1,40 @@ + +
+NP_Paint +
+
Canvas-Size:
+
+ +x + +
+ +
Applet:
+
+{{appletSelect}} +
+ +
Palette:
+
+{{paletteSelect}} +
+{{paletteSelectExtra}} + +
save animation:
+
+ +
Quality:
+
{{qualitySelect}}
+ +
Paint?
+
+
+ +

+ + + +

+ +
+ diff --git a/trunk/NP_Paint/paint/template/np_paint/form_japanese-utf8.html b/trunk/NP_Paint/paint/template/np_paint/form_japanese-utf8.html new file mode 100644 index 0000000..559d8e7 --- /dev/null +++ b/trunk/NP_Paint/paint/template/np_paint/form_japanese-utf8.html @@ -0,0 +1,40 @@ +
+
+NP_Paint +
+
Canvas-Size:
+
+ +x + +
+ +
Applet:
+
+{{appletSelect}} +
+ +
Palette:
+
+{{paletteSelect}} +
+{{paletteSelectExtra}} + +
save animation:
+
+ +
Quality:
+
{{qualitySelect}}
+ +
Paint?
+
+
+ +

+ + + +

+ +
+
diff --git a/trunk/NP_Paint/paint/template/np_paint/ok_japanese-euc.html b/trunk/NP_Paint/paint/template/np_paint/ok_japanese-euc.html new file mode 100644 index 0000000..0bc08e9 --- /dev/null +++ b/trunk/NP_Paint/paint/template/np_paint/ok_japanese-euc.html @@ -0,0 +1,15 @@ + + + +NP_Paint - ¹¹¿·´°Î» + + + + +¥Õ¥¡¥¤¥ë¤Î¹¹¿·¤¬´°Î»¤·¤Þ¤·¤¿
+ +
+
NP_Paint by cles
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/np_paint/ok_japanese-utf8.html b/trunk/NP_Paint/paint/template/np_paint/ok_japanese-utf8.html new file mode 100644 index 0000000..4bb9ead --- /dev/null +++ b/trunk/NP_Paint/paint/template/np_paint/ok_japanese-utf8.html @@ -0,0 +1,15 @@ + + + +NP_Paint - 更新完了 + + + + +ファイルの更新が完了しました
+ +
+
NP_Paint by cles
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-euc.html b/trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-euc.html new file mode 100644 index 0000000..a957325 --- /dev/null +++ b/trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-euc.html @@ -0,0 +1,19 @@ +
WCS Palette:
+ +
+ +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-utf8.html b/trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-utf8.html new file mode 100644 index 0000000..e019193 --- /dev/null +++ b/trunk/NP_Paint/paint/template/palette_wcs/extraoption_japanese-utf8.html @@ -0,0 +1,19 @@ +
WCS Palette:
+ +
+ +
\ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-euc.html b/trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-euc.html new file mode 100644 index 0000000..b818655 --- /dev/null +++ b/trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-euc.html @@ -0,0 +1,64 @@ + + + +NP_Paint - {{name}} + + + + + + +
+{{alt}} +
+ +
+ +
+NP_Paint Continue +
+
applet:
+
{{appletTag}}
+ +
palette:
+
{{paletteTag}}
+{{paletteExtraTag}} + +
mode:
+
+ +
+ +
anime¤«¤é³¤­¤òÉÁ¤¯:
+
+ +
AnimeInfomation:
+
{{animeInfo}}
+ +
Paint?
+
+
+ +

+ + + + + + + + +

+
+
+ +
+
+NP_Paint by cles +
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-utf8.html b/trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-utf8.html new file mode 100644 index 0000000..5da2013 --- /dev/null +++ b/trunk/NP_Paint/paint/template/viewer_continue/pagetemplate_japanese-utf8.html @@ -0,0 +1,64 @@ + + + +NP_Paint - {{name}} + + + + + + +
+{{alt}} +
+ +
+ +
+NP_Paint Continue +
+
applet:
+
{{appletTag}}
+ +
palette:
+
{{paletteTag}}
+{{paletteExtraTag}} + +
mode:
+
+ +
+ +
animeから続きを描く:
+
+ +
AnimeInfomation:
+
{{animeInfo}}
+ +
Paint?
+
+
+ +

+ + + + + + + + +

+
+
+ +
+
+NP_Paint by cles +
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-euc.html b/trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-euc.html new file mode 100644 index 0000000..423f97b --- /dev/null +++ b/trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-euc.html @@ -0,0 +1,27 @@ + + + +NP_Paint - {{file}} - {{name}} + + + + + + + + + + + + + + + + +
+ + +
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-utf8.html b/trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-utf8.html new file mode 100644 index 0000000..7547bb8 --- /dev/null +++ b/trunk/NP_Paint/paint/template/viewer_pch/pagetemplate_japanese-utf8.html @@ -0,0 +1,27 @@ + + + +NP_Paint - {{file}} - {{name}} + + + + + + + + + + + + + + + + +
+ + +
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-euc.html b/trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-euc.html new file mode 100644 index 0000000..385ed9f --- /dev/null +++ b/trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-euc.html @@ -0,0 +1,25 @@ + + + +NP_Paint - {{file}} - {{name}} + + + + + + + + + + + + + + +
+ + +
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-utf8.html b/trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-utf8.html new file mode 100644 index 0000000..6b21d5e --- /dev/null +++ b/trunk/NP_Paint/paint/template/viewer_spch/pagetemplate_japanese-utf8.html @@ -0,0 +1,25 @@ + + + +NP_Paint - {{file}} - {{name}} + + + + + + + + + + + + + + +
+ + +
+ + + \ No newline at end of file diff --git a/trunk/NP_Paint/sharedlibs/cles/Feedback.php b/trunk/NP_Paint/sharedlibs/cles/Feedback.php new file mode 100644 index 0000000..c251c3c --- /dev/null +++ b/trunk/NP_Paint/sharedlibs/cles/Feedback.php @@ -0,0 +1,178 @@ +oPluginAdmin = $pluginAdmin; + } + + function getMenuStr(){ + return mb_convert_encoding('動作確認/不具合報告', _CHARSET, 'UTF-8'); + } + + function printForm($extra = '') { + ob_start(); + + global $nucleus, $CONF; + + echo "

動作確認/不具合報告

"; + echo '

下記より、作者への動作確認/不具合の報告を行うことができます。

'; + + // js + echo ''; + + echo "

収集する情報と公開について

"; + echo '

デフォルトで必要最低限の環境情報(赤字のもの)を開発者のサーバへ送信します。
+ 差し支えない範囲で環境情報の提供にご協力ください。

+

※ 収集した情報は統計処理、及びプラグインのBugFixのみに利用されます。また統計処理した結果については公表することがあります。

'; + echo '

全て送信する場合はここをクリック

'; + + echo "

サイト固有コードについて

"; + echo '

動作報告の重複を取り除くため、管理画面のURLのmd5を計算したものを送信しています。この情報から管理画面のURLを復元することはできないようになっています。md5の解説についてはこちらをご覧ください。(e-WordsIT用語辞典)

'; + + // form + echo '
' . "\n"; + + // table + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + echo "\n"; + + $res = sql_query("show variables like 'version'"); + $assoc = mysql_fetch_assoc($res); + $mysqlVersion = $assoc['Value']; + + if( function_exists('gd_info') ) + $gdinfo = @gd_info(); + else + $gdinfo['GD Version'] = 'GD is not supported'; + + global $CONF; + + $this->_printtr('siteid', 'サイトの固有コード', md5(trim($CONF['AdminURL']))); + $this->_printtr('plugin_name', 'プラグイン名', $this->oPluginAdmin->plugin->getName()); + $this->_printtr('plugin_version', 'プラグインのバージョン', $this->oPluginAdmin->plugin->getVersion()); + $this->_printtr('plugin_info', '追加情報', $extra, true); + $this->_printtr('nucleus_version', 'Nucleusのバージョン', $nucleus['version'], true); + $this->_printtr('nucleus_charset', 'Nucleusのキャラクタセット', _CHARSET); + $this->_printtr('php_version', 'PHPのバージョン', PHP_VERSION, true); + $this->_printtr('php_sapi', 'PHPの種類', php_sapi_name()); + $this->_printtr('php_os', 'OSの種類', PHP_OS, true); + $this->_printtr('php_safemode', 'セーフモードの有無', ini_get('safe_mode') ? 'on' : 'off'); + $this->_printtr('php_gd_version', 'GDのバージョン', $gdinfo['GD Version'], true); + $this->_printtr('php_gd_support', 'サポートしているイメージタイプ', implode(',', $this->_supportedImageTypes()) ); + $this->_printtr('mysql_version', 'MySQLのバージョン', $mysqlVersion, true); + + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + + echo "\n"; + echo "\n"; + echo '\n"; + echo "\n"; + + echo ''; + echo "
項目の説明送信される値全てチェック
このプラグインは機能しましたか?はい
いいえ'."
不具合の内容をお寄せください
必ず回答が必要な質問については、Nucleusサポートフォーラムもしくは作者ページでご質問ください。
'."
よろしければサイトのURLを教えてください'."
リンク集作成の際、リンクをはらせていただけますか?はい
いいえ'."
\n"; + echo "
\n"; + + $contents = ob_get_contents(); + ob_end_clean(); + echo mb_convert_encoding($contents, _CHARSET, 'UTF-8'); + } + + function _printtr($name, $desc, $value, $canDisable = false) { + echo "\n"; + + if ($canDisable) { + echo "".$desc."\n"; + echo "".htmlspecialchars($value)."\n"; + echo ''."\n"; + } else { + echo ''.$desc."\n"; + echo ''.htmlspecialchars($value)."\n"; + echo '必須'."\n"; + } + echo "\n"; + } + + function _supportedImageTypes() { + if( !function_exists('gd_info') ) return ""; + + $aSupportedTypes = array (); + $aPossibleImageTypeBits = array (IMG_GIF => 'GIF', IMG_JPG => 'JPG', IMG_PNG => 'PNG', IMG_WBMP => 'WBMP'); + + foreach ($aPossibleImageTypeBits as $iImageTypeBits => $sImageTypeString) { + if (imagetypes() & $iImageTypeBits) { + $aSupportedTypes[] = $sImageTypeString; + } + } + + return $aSupportedTypes; + } + +} diff --git a/trunk/NP_Paint/sharedlibs/cles/Template.php b/trunk/NP_Paint/sharedlibs/cles/Template.php new file mode 100644 index 0000000..09f3ac3 --- /dev/null +++ b/trunk/NP_Paint/sharedlibs/cles/Template.php @@ -0,0 +1,87 @@ +templateDir = $templateDir; + $this->lang = ereg_replace( '[\\|/]', '', getLanguageName()); + } + + function fetch($name, $dir = null, $suffix = 'html') { + $path = $this->templateDir.'/'.( $dir ? strtolower($dir) . '/' : '' ).strtolower($name).'_'.$this->lang.( $suffix ? '.'.strtolower($suffix) : '' ); + if ( ! file_exists($path) ){ + $path = $this->templateDir.'/'.( $dir ? strtolower($dir) . '/' : '' ).strtolower($name).'_'.$this->defaultLang.( $suffix ? '.'.strtolower($suffix) : '' ); + if ( ! file_exists($path) ) + return ''; + } + + $fsize = filesize($path); + if ($fsize <= 0) return ''; + + $fd = fopen($path, 'r'); + $contents = fread($fd, $fsize); + fclose($fd); + return $contents; + } + + function fill($template, $values, $default = null) { + if( $default ) + return preg_replace($this->defalutPattern, 'isset($values[\'$1\']) ? (\'$2\' ? htmlspecialchars($values[\'$1\'], ENT_QUOTES) : $values[\'$1\']) : $default', $template); + if( $default === null ) + return preg_replace($this->defalutPattern, '(\'$2\') ? htmlspecialchars($values[\'$1\'], ENT_QUOTES) : $values[\'$1\']', $template); + return preg_replace($this->defalutPattern, 'isset($values[\'$1\']) ? (\'$2\' ? htmlspecialchars($values[\'$1\'], ENT_QUOTES) : $values[\'$1\']) : \'{{$1}}\' ', $template); + } + + function fetchAndFill($name, $values, $dir = null, $suffix = 'html', $default = null){ + $tpl = $this->fetch($name, $dir, $suffix); + return $this->fill($tpl, $values, $default); + } +} diff --git a/trunk/NP_Paint/sharedlibs/pclzip.lib.php b/trunk/NP_Paint/sharedlibs/pclzip.lib.php new file mode 100644 index 0000000..e2a5eba --- /dev/null +++ b/trunk/NP_Paint/sharedlibs/pclzip.lib.php @@ -0,0 +1,5748 @@ +zipname = $p_zipname; + $this->zip_fd = 0; + $this->magic_quotes_status = -1; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 1); + return; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // create($p_filelist, $p_add_dir="", $p_remove_dir="") + // create($p_filelist, $p_option, $p_option_value, ...) + // Description : + // This method supports two different synopsis. The first one is historical. + // This method creates a Zip Archive. The Zip file is created in the + // filesystem. The files and directories indicated in $p_filelist + // are added in the archive. See the parameters description for the + // supported format of $p_filelist. + // When a directory is in the list, the directory and its content is added + // in the archive. + // In this synopsis, the function takes an optional variable list of + // options. See bellow the supported options. + // Parameters : + // $p_filelist : An array containing file or directory names, or + // a string containing one filename or one directory name, or + // a string containing a list of filenames and/or directory + // names separated by spaces. + // $p_add_dir : A path to add before the real path of the archived file, + // in order to have it memorized in the archive. + // $p_remove_dir : A path to remove from the real path of the file to archive, + // in order to have a shorter path memorized in the archive. + // When $p_add_dir and $p_remove_dir are set, $p_remove_dir + // is removed first, before $p_add_dir is added. + // Options : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_OPT_COMMENT : + // PCLZIP_CB_PRE_ADD : + // PCLZIP_CB_POST_ADD : + // Return Values : + // 0 on failure, + // The list of the added files, with a status of the add action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + function create($p_filelist) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::create', "filelist='$p_filelist', ..."); + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Set default values + $v_options = array(); + $v_options[PCLZIP_OPT_NO_COMPRESSION] = FALSE; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "$v_size arguments passed to the method"); + + // ----- Look for arguments + if ($v_size > 1) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Remove from the options list the first argument + array_shift($v_arg_list); + $v_size--; + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Variable list of options detected"); + + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, + array (PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_ADD => 'optional', + PCLZIP_CB_POST_ADD => 'optional', + PCLZIP_OPT_NO_COMPRESSION => 'optional', + PCLZIP_OPT_COMMENT => 'optional' + //, PCLZIP_OPT_CRYPT => 'optional' + )); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + } + + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Static synopsis"); + + // ----- Get the first argument + $v_options[PCLZIP_OPT_ADD_PATH] = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; + } + else if ($v_size > 2) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, + "Invalid number / type of arguments"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return 0; + } + } + } + + // ----- Init + $v_string_list = array(); + $v_att_list = array(); + $v_filedescr_list = array(); + $p_result_list = array(); + + // ----- Look if the $p_filelist is really an array + if (is_array($p_filelist)) { + + // ----- Look if the first element is also an array + // This will mean that this is a file description entry + if (isset($p_filelist[0]) && is_array($p_filelist[0])) { + $v_att_list = $p_filelist; + } + + // ----- The list is a list of string names + else { + $v_string_list = $p_filelist; + } + } + + // ----- Look if the $p_filelist is a string + else if (is_string($p_filelist)) { + // ----- Create a list from the string + $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); + } + + // ----- Invalid variable type for $p_filelist + else { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_filelist"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Reformat the string list + if (sizeof($v_string_list) != 0) { + foreach ($v_string_list as $v_string) { + if ($v_string != '') { + $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Ignore an empty filename"); + } + } + } + + // ----- For each file in the list check the attributes + $v_supported_attributes + = array ( PCLZIP_ATT_FILE_NAME => 'mandatory' + ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' + ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' + ); + foreach ($v_att_list as $v_entry) { + $v_result = $this->privFileDescrParseAtt($v_entry, + $v_filedescr_list[], + $v_options, + $v_supported_attributes); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + } + + // ----- Expand the filelist (expand directories) + $v_result = $this->privFileDescrExpand($v_filedescr_list, $v_options); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Call the create fct + $v_result = $this->privCreate($v_filedescr_list, $p_result_list, $v_options); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $p_result_list); + return $p_result_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // add($p_filelist, $p_add_dir="", $p_remove_dir="") + // add($p_filelist, $p_option, $p_option_value, ...) + // Description : + // This method supports two synopsis. The first one is historical. + // This methods add the list of files in an existing archive. + // If a file with the same name already exists, it is added at the end of the + // archive, the first one is still present. + // If the archive does not exist, it is created. + // Parameters : + // $p_filelist : An array containing file or directory names, or + // a string containing one filename or one directory name, or + // a string containing a list of filenames and/or directory + // names separated by spaces. + // $p_add_dir : A path to add before the real path of the archived file, + // in order to have it memorized in the archive. + // $p_remove_dir : A path to remove from the real path of the file to archive, + // in order to have a shorter path memorized in the archive. + // When $p_add_dir and $p_remove_dir are set, $p_remove_dir + // is removed first, before $p_add_dir is added. + // Options : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_OPT_COMMENT : + // PCLZIP_OPT_ADD_COMMENT : + // PCLZIP_OPT_PREPEND_COMMENT : + // PCLZIP_CB_PRE_ADD : + // PCLZIP_CB_POST_ADD : + // Return Values : + // 0 on failure, + // The list of the added files, with a status of the add action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + function add($p_filelist) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::add', "filelist='$p_filelist', ..."); + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Set default values + $v_options = array(); + $v_options[PCLZIP_OPT_NO_COMPRESSION] = FALSE; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "$v_size arguments passed to the method"); + + // ----- Look for arguments + if ($v_size > 1) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Remove form the options list the first argument + array_shift($v_arg_list); + $v_size--; + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Variable list of options detected"); + + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, + array (PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_ADD => 'optional', + PCLZIP_CB_POST_ADD => 'optional', + PCLZIP_OPT_NO_COMPRESSION => 'optional', + PCLZIP_OPT_COMMENT => 'optional', + PCLZIP_OPT_ADD_COMMENT => 'optional', + PCLZIP_OPT_PREPEND_COMMENT => 'optional' + //, PCLZIP_OPT_CRYPT => 'optional' + )); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + } + + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Static synopsis"); + + // ----- Get the first argument + $v_options[PCLZIP_OPT_ADD_PATH] = $v_add_path = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_options[PCLZIP_OPT_REMOVE_PATH] = $v_arg_list[1]; + } + else if ($v_size > 2) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return 0; + } + } + } + + // ----- Init + $v_string_list = array(); + $v_att_list = array(); + $v_filedescr_list = array(); + $p_result_list = array(); + + // ----- Look if the $p_filelist is really an array + if (is_array($p_filelist)) { + + // ----- Look if the first element is also an array + // This will mean that this is a file description entry + if (isset($p_filelist[0]) && is_array($p_filelist[0])) { + $v_att_list = $p_filelist; + } + + // ----- The list is a list of string names + else { + $v_string_list = $p_filelist; + } + } + + // ----- Look if the $p_filelist is a string + else if (is_string($p_filelist)) { + // ----- Create a list from the string + $v_string_list = explode(PCLZIP_SEPARATOR, $p_filelist); + } + + // ----- Invalid variable type for $p_filelist + else { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type '".gettype($p_filelist)."' for p_filelist"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Reformat the string list + if (sizeof($v_string_list) != 0) { + foreach ($v_string_list as $v_string) { + $v_att_list[][PCLZIP_ATT_FILE_NAME] = $v_string; + } + } + + // ----- For each file in the list check the attributes + $v_supported_attributes + = array ( PCLZIP_ATT_FILE_NAME => 'mandatory' + ,PCLZIP_ATT_FILE_NEW_SHORT_NAME => 'optional' + ,PCLZIP_ATT_FILE_NEW_FULL_NAME => 'optional' + ); + foreach ($v_att_list as $v_entry) { + $v_result = $this->privFileDescrParseAtt($v_entry, + $v_filedescr_list[], + $v_options, + $v_supported_attributes); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + } + + // ----- Expand the filelist (expand directories) + $v_result = $this->privFileDescrExpand($v_filedescr_list, $v_options); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Call the create fct + $v_result = $this->privAdd($v_filedescr_list, $p_result_list, $v_options); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $p_result_list); + return $p_result_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : listContent() + // Description : + // This public method, gives the list of the files and directories, with their + // properties. + // The properties of each entries in the list are (used also in other functions) : + // filename : Name of the file. For a create or add action it is the filename + // given by the user. For an extract function it is the filename + // of the extracted file. + // stored_filename : Name of the file / directory stored in the archive. + // size : Size of the stored file. + // compressed_size : Size of the file's data compressed in the archive + // (without the headers overhead) + // mtime : Last known modification date of the file (UNIX timestamp) + // comment : Comment associated with the file + // folder : true | false + // index : index of the file in the archive + // status : status of the action (depending of the action) : + // Values are : + // ok : OK ! + // filtered : the file / dir is not extracted (filtered by user) + // already_a_directory : the file can not be extracted because a + // directory with the same name already exists + // write_protected : the file can not be extracted because a file + // with the same name already exists and is + // write protected + // newer_exist : the file was not extracted because a newer file exists + // path_creation_fail : the file is not extracted because the folder + // does not exists and can not be created + // write_error : the file was not extracted because there was a + // error while writing the file + // read_error : the file was not extracted because there was a error + // while reading the file + // invalid_header : the file was not extracted because of an archive + // format error (bad file header) + // Note that each time a method can continue operating when there + // is an action error on a file, the error is only logged in the file status. + // Return Values : + // 0 on an unrecoverable failure, + // The list of the files in the archive. + // -------------------------------------------------------------------------------- + function listContent() + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::listContent', ""); + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return(0); + } + + // ----- Call the extracting fct + $p_list = array(); + if (($v_result = $this->privList($p_list)) != 1) + { + unset($p_list); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0, PclZip::errorInfo()); + return(0); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $p_list); + return $p_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // extract($p_path="./", $p_remove_path="") + // extract([$p_option, $p_option_value, ...]) + // Description : + // This method supports two synopsis. The first one is historical. + // This method extract all the files / directories from the archive to the + // folder indicated in $p_path. + // If you want to ignore the 'root' part of path of the memorized files + // you can indicate this in the optional $p_remove_path parameter. + // By default, if a newer file with the same name already exists, the + // file is not extracted. + // + // If both PCLZIP_OPT_PATH and PCLZIP_OPT_ADD_PATH aoptions + // are used, the path indicated in PCLZIP_OPT_ADD_PATH is append + // at the end of the path value of PCLZIP_OPT_PATH. + // Parameters : + // $p_path : Path where the files and directories are to be extracted + // $p_remove_path : First part ('root' part) of the memorized path + // (if any similar) to remove while extracting. + // Options : + // PCLZIP_OPT_PATH : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_CB_PRE_EXTRACT : + // PCLZIP_CB_POST_EXTRACT : + // Return Values : + // 0 or a negative value on failure, + // The list of the extracted files, with a status of the action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + function extract() + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::extract", ""); + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return(0); + } + + // ----- Set default values + $v_options = array(); +// $v_path = "./"; + $v_path = ''; + $v_remove_path = ""; + $v_remove_all_path = false; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "$v_size arguments passed to the method"); + + // ----- Default values for option + $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = FALSE; + + // ----- Look for arguments + if ($v_size > 0) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Variable list of options"); + + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, + array (PCLZIP_OPT_PATH => 'optional', + PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_EXTRACT => 'optional', + PCLZIP_CB_POST_EXTRACT => 'optional', + PCLZIP_OPT_SET_CHMOD => 'optional', + PCLZIP_OPT_BY_NAME => 'optional', + PCLZIP_OPT_BY_EREG => 'optional', + PCLZIP_OPT_BY_PREG => 'optional', + PCLZIP_OPT_BY_INDEX => 'optional', + PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', + PCLZIP_OPT_EXTRACT_IN_OUTPUT => 'optional', + PCLZIP_OPT_REPLACE_NEWER => 'optional' + ,PCLZIP_OPT_STOP_ON_ERROR => 'optional' + ,PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional' + )); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Set the arguments + if (isset($v_options[PCLZIP_OPT_PATH])) { + $v_path = $v_options[PCLZIP_OPT_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_PATH])) { + $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { + $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; + } + if (isset($v_options[PCLZIP_OPT_ADD_PATH])) { + // ----- Check for '/' in last path char + if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { + $v_path .= '/'; + } + $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; + } + } + + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Static synopsis"); + + // ----- Get the first argument + $v_path = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_remove_path = $v_arg_list[1]; + } + else if ($v_size > 2) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0, PclZip::errorInfo()); + return 0; + } + } + } + + // ----- Trace + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "path='$v_path', remove_path='$v_remove_path', remove_all_path='".($v_remove_path?'true':'false')."'"); + + // ----- Call the extracting fct + $p_list = array(); + $v_result = $this->privExtractByRule($p_list, $v_path, $v_remove_path, + $v_remove_all_path, $v_options); + if ($v_result < 1) { + unset($p_list); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0, PclZip::errorInfo()); + return(0); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $p_list); + return $p_list; + } + // -------------------------------------------------------------------------------- + + + // -------------------------------------------------------------------------------- + // Function : + // extractByIndex($p_index, $p_path="./", $p_remove_path="") + // extractByIndex($p_index, [$p_option, $p_option_value, ...]) + // Description : + // This method supports two synopsis. The first one is historical. + // This method is doing a partial extract of the archive. + // The extracted files or folders are identified by their index in the + // archive (from 0 to n). + // Note that if the index identify a folder, only the folder entry is + // extracted, not all the files included in the archive. + // Parameters : + // $p_index : A single index (integer) or a string of indexes of files to + // extract. The form of the string is "0,4-6,8-12" with only numbers + // and '-' for range or ',' to separate ranges. No spaces or ';' + // are allowed. + // $p_path : Path where the files and directories are to be extracted + // $p_remove_path : First part ('root' part) of the memorized path + // (if any similar) to remove while extracting. + // Options : + // PCLZIP_OPT_PATH : + // PCLZIP_OPT_ADD_PATH : + // PCLZIP_OPT_REMOVE_PATH : + // PCLZIP_OPT_REMOVE_ALL_PATH : + // PCLZIP_OPT_EXTRACT_AS_STRING : The files are extracted as strings and + // not as files. + // The resulting content is in a new field 'content' in the file + // structure. + // This option must be used alone (any other options are ignored). + // PCLZIP_CB_PRE_EXTRACT : + // PCLZIP_CB_POST_EXTRACT : + // Return Values : + // 0 on failure, + // The list of the extracted files, with a status of the action. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + //function extractByIndex($p_index, options...) + function extractByIndex($p_index) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::extractByIndex", "index='$p_index', ..."); + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return(0); + } + + // ----- Set default values + $v_options = array(); +// $v_path = "./"; + $v_path = ''; + $v_remove_path = ""; + $v_remove_all_path = false; + + // ----- Look for variable options arguments + $v_size = func_num_args(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "$v_size arguments passed to the method"); + + // ----- Default values for option + $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = FALSE; + + // ----- Look for arguments + if ($v_size > 1) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Remove form the options list the first argument + array_shift($v_arg_list); + $v_size--; + + // ----- Look for first arg + if ((is_integer($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Variable list of options"); + + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, + array (PCLZIP_OPT_PATH => 'optional', + PCLZIP_OPT_REMOVE_PATH => 'optional', + PCLZIP_OPT_REMOVE_ALL_PATH => 'optional', + PCLZIP_OPT_EXTRACT_AS_STRING => 'optional', + PCLZIP_OPT_ADD_PATH => 'optional', + PCLZIP_CB_PRE_EXTRACT => 'optional', + PCLZIP_CB_POST_EXTRACT => 'optional', + PCLZIP_OPT_SET_CHMOD => 'optional', + PCLZIP_OPT_REPLACE_NEWER => 'optional' + ,PCLZIP_OPT_STOP_ON_ERROR => 'optional' + ,PCLZIP_OPT_EXTRACT_DIR_RESTRICTION => 'optional' + )); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Set the arguments + if (isset($v_options[PCLZIP_OPT_PATH])) { + $v_path = $v_options[PCLZIP_OPT_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_PATH])) { + $v_remove_path = $v_options[PCLZIP_OPT_REMOVE_PATH]; + } + if (isset($v_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { + $v_remove_all_path = $v_options[PCLZIP_OPT_REMOVE_ALL_PATH]; + } + if (isset($v_options[PCLZIP_OPT_ADD_PATH])) { + // ----- Check for '/' in last path char + if ((strlen($v_path) > 0) && (substr($v_path, -1) != '/')) { + $v_path .= '/'; + } + $v_path .= $v_options[PCLZIP_OPT_ADD_PATH]; + } + if (!isset($v_options[PCLZIP_OPT_EXTRACT_AS_STRING])) { + $v_options[PCLZIP_OPT_EXTRACT_AS_STRING] = FALSE; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Option PCLZIP_OPT_EXTRACT_AS_STRING not set."); + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Option PCLZIP_OPT_EXTRACT_AS_STRING set."); + } + } + + // ----- Look for 2 args + // Here we need to support the first historic synopsis of the + // method. + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Static synopsis"); + + // ----- Get the first argument + $v_path = $v_arg_list[0]; + + // ----- Look for the optional second argument + if ($v_size == 2) { + $v_remove_path = $v_arg_list[1]; + } + else if ($v_size > 2) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid number / type of arguments"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return 0; + } + } + } + + // ----- Trace + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "index='$p_index', path='$v_path', remove_path='$v_remove_path', remove_all_path='".($v_remove_path?'true':'false')."'"); + + // ----- Trick + // Here I want to reuse extractByRule(), so I need to parse the $p_index + // with privParseOptions() + $v_arg_trick = array (PCLZIP_OPT_BY_INDEX, $p_index); + $v_options_trick = array(); + $v_result = $this->privParseOptions($v_arg_trick, sizeof($v_arg_trick), $v_options_trick, + array (PCLZIP_OPT_BY_INDEX => 'optional' )); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + $v_options[PCLZIP_OPT_BY_INDEX] = $v_options_trick[PCLZIP_OPT_BY_INDEX]; + + // ----- Call the extracting fct + if (($v_result = $this->privExtractByRule($p_list, $v_path, $v_remove_path, $v_remove_all_path, $v_options)) < 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0, PclZip::errorInfo()); + return(0); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $p_list); + return $p_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : + // delete([$p_option, $p_option_value, ...]) + // Description : + // This method removes files from the archive. + // If no parameters are given, then all the archive is emptied. + // Parameters : + // None or optional arguments. + // Options : + // PCLZIP_OPT_BY_INDEX : + // PCLZIP_OPT_BY_NAME : + // PCLZIP_OPT_BY_EREG : + // PCLZIP_OPT_BY_PREG : + // Return Values : + // 0 on failure, + // The list of the files which are still present in the archive. + // (see PclZip::listContent() for list entry format) + // -------------------------------------------------------------------------------- + function delete() + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::delete", ""); + $v_result=1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return(0); + } + + // ----- Set default values + $v_options = array(); + + // ----- Look for variable options arguments + $v_size = func_num_args(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "$v_size arguments passed to the method"); + + // ----- Look for arguments + if ($v_size > 0) { + // ----- Get the arguments + $v_arg_list = func_get_args(); + + // ----- Parse the options + $v_result = $this->privParseOptions($v_arg_list, $v_size, $v_options, + array (PCLZIP_OPT_BY_NAME => 'optional', + PCLZIP_OPT_BY_EREG => 'optional', + PCLZIP_OPT_BY_PREG => 'optional', + PCLZIP_OPT_BY_INDEX => 'optional' )); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + } + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Call the delete fct + $v_list = array(); + if (($v_result = $this->privDeleteByRule($v_list, $v_options)) != 1) { + $this->privSwapBackMagicQuotes(); + unset($v_list); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0, PclZip::errorInfo()); + return(0); + } + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_list); + return $v_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : deleteByIndex() + // Description : + // ***** Deprecated ***** + // delete(PCLZIP_OPT_BY_INDEX, $p_index) should be prefered. + // -------------------------------------------------------------------------------- + function deleteByIndex($p_index) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::deleteByIndex", "index='$p_index'"); + + $p_list = $this->delete(PCLZIP_OPT_BY_INDEX, $p_index); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $p_list); + return $p_list; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : properties() + // Description : + // This method gives the properties of the archive. + // The properties are : + // nb : Number of files in the archive + // comment : Comment associated with the archive file + // status : not_exist, ok + // Parameters : + // None + // Return Values : + // 0 on failure, + // An array with the archive properties. + // -------------------------------------------------------------------------------- + function properties() + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::properties", ""); + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return(0); + } + + // ----- Default properties + $v_prop = array(); + $v_prop['comment'] = ''; + $v_prop['nb'] = 0; + $v_prop['status'] = 'not_exist'; + + // ----- Look if file exists + if (@is_file($this->zipname)) + { + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) + { + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in binary read mode'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), 0); + return 0; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) + { + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return 0; + } + + // ----- Close the zip file + $this->privCloseFd(); + + // ----- Set the user attributes + $v_prop['comment'] = $v_central_dir['comment']; + $v_prop['nb'] = $v_central_dir['entries']; + $v_prop['status'] = 'ok'; + } + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_prop); + return $v_prop; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : duplicate() + // Description : + // This method creates an archive by copying the content of an other one. If + // the archive already exist, it is replaced by the new one without any warning. + // Parameters : + // $p_archive : The filename of a valid archive, or + // a valid PclZip object. + // Return Values : + // 1 on success. + // 0 or a negative value on error (error code). + // -------------------------------------------------------------------------------- + function duplicate($p_archive) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::duplicate", ""); + $v_result = 1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Look if the $p_archive is a PclZip object + if ((is_object($p_archive)) && (get_class($p_archive) == 'pclzip')) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "The parameter is valid PclZip object '".$p_archive->zipname."'"); + + // ----- Duplicate the archive + $v_result = $this->privDuplicate($p_archive->zipname); + } + + // ----- Look if the $p_archive is a string (so a filename) + else if (is_string($p_archive)) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "The parameter is a filename '$p_archive'"); + + // ----- Check that $p_archive is a valid zip file + // TBC : Should also check the archive format + if (!is_file($p_archive)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "No file with filename '".$p_archive."'"); + $v_result = PCLZIP_ERR_MISSING_FILE; + } + else { + // ----- Duplicate the archive + $v_result = $this->privDuplicate($p_archive); + } + } + + // ----- Invalid variable + else + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); + $v_result = PCLZIP_ERR_INVALID_PARAMETER; + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : merge() + // Description : + // This method merge the $p_archive_to_add archive at the end of the current + // one ($this). + // If the archive ($this) does not exist, the merge becomes a duplicate. + // If the $p_archive_to_add archive does not exist, the merge is a success. + // Parameters : + // $p_archive_to_add : It can be directly the filename of a valid zip archive, + // or a PclZip object archive. + // Return Values : + // 1 on success, + // 0 or negative values on error (see below). + // -------------------------------------------------------------------------------- + function merge($p_archive_to_add) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::merge", ""); + $v_result = 1; + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Check archive + if (!$this->privCheckFormat()) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, 0); + return(0); + } + + // ----- Look if the $p_archive_to_add is a PclZip object + if ((is_object($p_archive_to_add)) && (get_class($p_archive_to_add) == 'pclzip')) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "The parameter is valid PclZip object"); + + // ----- Merge the archive + $v_result = $this->privMerge($p_archive_to_add); + } + + // ----- Look if the $p_archive_to_add is a string (so a filename) + else if (is_string($p_archive_to_add)) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "The parameter is a filename"); + + // ----- Create a temporary archive + $v_object_archive = new PclZip($p_archive_to_add); + + // ----- Merge the archive + $v_result = $this->privMerge($v_object_archive); + } + + // ----- Invalid variable + else + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid variable type p_archive_to_add"); + $v_result = PCLZIP_ERR_INVALID_PARAMETER; + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + + + // -------------------------------------------------------------------------------- + // Function : errorCode() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + function errorCode() + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + return(PclErrorCode()); + } + else { + return($this->error_code); + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : errorName() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + function errorName($p_with_code=false) + { + $v_name = array ( PCLZIP_ERR_NO_ERROR => 'PCLZIP_ERR_NO_ERROR', + PCLZIP_ERR_WRITE_OPEN_FAIL => 'PCLZIP_ERR_WRITE_OPEN_FAIL', + PCLZIP_ERR_READ_OPEN_FAIL => 'PCLZIP_ERR_READ_OPEN_FAIL', + PCLZIP_ERR_INVALID_PARAMETER => 'PCLZIP_ERR_INVALID_PARAMETER', + PCLZIP_ERR_MISSING_FILE => 'PCLZIP_ERR_MISSING_FILE', + PCLZIP_ERR_FILENAME_TOO_LONG => 'PCLZIP_ERR_FILENAME_TOO_LONG', + PCLZIP_ERR_INVALID_ZIP => 'PCLZIP_ERR_INVALID_ZIP', + PCLZIP_ERR_BAD_EXTRACTED_FILE => 'PCLZIP_ERR_BAD_EXTRACTED_FILE', + PCLZIP_ERR_DIR_CREATE_FAIL => 'PCLZIP_ERR_DIR_CREATE_FAIL', + PCLZIP_ERR_BAD_EXTENSION => 'PCLZIP_ERR_BAD_EXTENSION', + PCLZIP_ERR_BAD_FORMAT => 'PCLZIP_ERR_BAD_FORMAT', + PCLZIP_ERR_DELETE_FILE_FAIL => 'PCLZIP_ERR_DELETE_FILE_FAIL', + PCLZIP_ERR_RENAME_FILE_FAIL => 'PCLZIP_ERR_RENAME_FILE_FAIL', + PCLZIP_ERR_BAD_CHECKSUM => 'PCLZIP_ERR_BAD_CHECKSUM', + PCLZIP_ERR_INVALID_ARCHIVE_ZIP => 'PCLZIP_ERR_INVALID_ARCHIVE_ZIP', + PCLZIP_ERR_MISSING_OPTION_VALUE => 'PCLZIP_ERR_MISSING_OPTION_VALUE', + PCLZIP_ERR_INVALID_OPTION_VALUE => 'PCLZIP_ERR_INVALID_OPTION_VALUE', + PCLZIP_ERR_UNSUPPORTED_COMPRESSION => 'PCLZIP_ERR_UNSUPPORTED_COMPRESSION', + PCLZIP_ERR_UNSUPPORTED_ENCRYPTION => 'PCLZIP_ERR_UNSUPPORTED_ENCRYPTION' + ,PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE => 'PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE' + ,PCLZIP_ERR_DIRECTORY_RESTRICTION => 'PCLZIP_ERR_DIRECTORY_RESTRICTION' + ); + + if (isset($v_name[$this->error_code])) { + $v_value = $v_name[$this->error_code]; + } + else { + $v_value = 'NoName'; + } + + if ($p_with_code) { + return($v_value.' ('.$this->error_code.')'); + } + else { + return($v_value); + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : errorInfo() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + function errorInfo($p_full=false) + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + return(PclErrorString()); + } + else { + if ($p_full) { + return($this->errorName(true)." : ".$this->error_string); + } + else { + return($this->error_string." [code ".$this->error_code."]"); + } + } + } + // -------------------------------------------------------------------------------- + + +// -------------------------------------------------------------------------------- +// ***** UNDER THIS LINE ARE DEFINED PRIVATE INTERNAL FUNCTIONS ***** +// ***** ***** +// ***** THESES FUNCTIONS MUST NOT BE USED DIRECTLY ***** +// -------------------------------------------------------------------------------- + + + + // -------------------------------------------------------------------------------- + // Function : privCheckFormat() + // Description : + // This method check that the archive exists and is a valid zip archive. + // Several level of check exists. (futur) + // Parameters : + // $p_level : Level of check. Default 0. + // 0 : Check the first bytes (magic codes) (default value)) + // 1 : 0 + Check the central directory (futur) + // 2 : 1 + Check each file header (futur) + // Return Values : + // true on success, + // false on error, the error code is set. + // -------------------------------------------------------------------------------- + function privCheckFormat($p_level=0) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privCheckFormat", ""); + $v_result = true; + + // ----- Reset the file system cache + clearstatcache(); + + // ----- Reset the error handler + $this->privErrorReset(); + + // ----- Look if the file exits + if (!is_file($this->zipname)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_FILE, "Missing archive file '".$this->zipname."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, false, PclZip::errorInfo()); + return(false); + } + + // ----- Check that the file is readeable + if (!is_readable($this->zipname)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to read archive '".$this->zipname."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, false, PclZip::errorInfo()); + return(false); + } + + // ----- Check the magic code + // TBC + + // ----- Check the central header + // TBC + + // ----- Check each file header + // TBC + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privParseOptions() + // Description : + // This internal methods reads the variable list of arguments ($p_options_list, + // $p_size) and generate an array with the options and values ($v_result_list). + // $v_requested_options contains the options that can be present and those that + // must be present. + // $v_requested_options is an array, with the option value as key, and 'optional', + // or 'mandatory' as value. + // Parameters : + // See above. + // Return Values : + // 1 on success. + // 0 on failure. + // -------------------------------------------------------------------------------- + function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options=false) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privParseOptions", ""); + $v_result=1; + + // ----- Read the options + $i=0; + while ($i<$p_size) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Looking for table index $i, option = '".PclZipUtilOptionText($p_options_list[$i])."(".$p_options_list[$i].")'"); + + // ----- Check if the option is supported + if (!isset($v_requested_options[$p_options_list[$i]])) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid optional parameter '".$p_options_list[$i]."' for this method"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Look for next option + switch ($p_options_list[$i]) { + // ----- Look for options that request a path value + case PCLZIP_OPT_PATH : + case PCLZIP_OPT_REMOVE_PATH : + case PCLZIP_OPT_ADD_PATH : + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], false); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($p_options_list[$i])." = '".$v_result_list[$p_options_list[$i]]."'"); + $i++; + break; + + case PCLZIP_OPT_EXTRACT_DIR_RESTRICTION : + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + if ( is_string($p_options_list[$i+1]) + && ($p_options_list[$i+1] != '')) { + $v_result_list[$p_options_list[$i]] = PclZipUtilTranslateWinPath($p_options_list[$i+1], false); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($p_options_list[$i])." = '".$v_result_list[$p_options_list[$i]]."'"); + $i++; + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($p_options_list[$i])." set with an empty value is ignored."); + } + break; + + // ----- Look for options that request an array of string for value + case PCLZIP_OPT_BY_NAME : + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + if (is_string($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]][0] = $p_options_list[$i+1]; + } + else if (is_array($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + } + else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + ////--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($p_options_list[$i])." = '".$v_result_list[$p_options_list[$i]]."'"); + $i++; + break; + + // ----- Look for options that request an EREG or PREG expression + case PCLZIP_OPT_BY_EREG : + case PCLZIP_OPT_BY_PREG : + //case PCLZIP_OPT_CRYPT : + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + if (is_string($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + } + else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Wrong parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($p_options_list[$i])." = '".$v_result_list[$p_options_list[$i]]."'"); + $i++; + break; + + // ----- Look for options that takes a string + case PCLZIP_OPT_COMMENT : + case PCLZIP_OPT_ADD_COMMENT : + case PCLZIP_OPT_PREPEND_COMMENT : + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, + "Missing parameter value for option '" + .PclZipUtilOptionText($p_options_list[$i]) + ."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + if (is_string($p_options_list[$i+1])) { + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + } + else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, + "Wrong parameter value for option '" + .PclZipUtilOptionText($p_options_list[$i]) + ."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($p_options_list[$i])." = '".$v_result_list[$p_options_list[$i]]."'"); + $i++; + break; + + // ----- Look for options that request an array of index + case PCLZIP_OPT_BY_INDEX : + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + $v_work_list = array(); + if (is_string($p_options_list[$i+1])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Index value is a string '".$p_options_list[$i+1]."'"); + + // ----- Remove spaces + $p_options_list[$i+1] = strtr($p_options_list[$i+1], ' ', ''); + + // ----- Parse items + $v_work_list = explode(",", $p_options_list[$i+1]); + } + else if (is_integer($p_options_list[$i+1])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Index value is an integer '".$p_options_list[$i+1]."'"); + $v_work_list[0] = $p_options_list[$i+1].'-'.$p_options_list[$i+1]; + } + else if (is_array($p_options_list[$i+1])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Index value is an array"); + $v_work_list = $p_options_list[$i+1]; + } + else { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Value must be integer, string or array for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Reduce the index list + // each index item in the list must be a couple with a start and + // an end value : [0,3], [5-5], [8-10], ... + // ----- Check the format of each item + $v_sort_flag=false; + $v_sort_value=0; + for ($j=0; $j= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + $v_result_list[$p_options_list[$i]] = $p_options_list[$i+1]; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($p_options_list[$i])." = '".$v_result_list[$p_options_list[$i]]."'"); + $i++; + break; + + // ----- Look for options that request a call-back + case PCLZIP_CB_PRE_EXTRACT : + case PCLZIP_CB_POST_EXTRACT : + case PCLZIP_CB_PRE_ADD : + case PCLZIP_CB_POST_ADD : + /* for futur use + case PCLZIP_CB_PRE_DELETE : + case PCLZIP_CB_POST_DELETE : + case PCLZIP_CB_PRE_LIST : + case PCLZIP_CB_POST_LIST : + */ + // ----- Check the number of parameters + if (($i+1) >= $p_size) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_MISSING_OPTION_VALUE, "Missing parameter value for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Get the value + $v_function_name = $p_options_list[$i+1]; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "call-back ".PclZipUtilOptionText($p_options_list[$i])." = '".$v_function_name."'"); + + // ----- Check that the value is a valid existing function + if (!function_exists($v_function_name)) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Function '".$v_function_name."()' is not an existing function for option '".PclZipUtilOptionText($p_options_list[$i])."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Set the attribute + $v_result_list[$p_options_list[$i]] = $v_function_name; + $i++; + break; + + default : + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, + "Unknown parameter '" + .$p_options_list[$i]."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Next options + $i++; + } + + // ----- Look for mandatory options + if ($v_requested_options !== false) { + for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { + // ----- Look for mandatory option + if ($v_requested_options[$key] == 'mandatory') { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Detect a mandatory option : ".PclZipUtilOptionText($key)."(".$key.")"); + // ----- Look if present + if (!isset($v_result_list[$key])) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Missing mandatory parameter ".PclZipUtilOptionText($key)."(".$key.")"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + } + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privFileDescrParseAtt() + // Description : + // Parameters : + // Return Values : + // 1 on success. + // 0 on failure. + // -------------------------------------------------------------------------------- + function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v_options, $v_requested_options=false) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privFileDescrParseAtt", ""); + $v_result=1; + + // ----- For each file in the list check the attributes + foreach ($p_file_list as $v_key => $v_value) { + + // ----- Check if the option is supported + if (!isset($v_requested_options[$v_key])) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid file attribute '".$v_key."' for this file"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Look for attribute + switch ($v_key) { + case PCLZIP_ATT_FILE_NAME : + if (!is_string($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + $p_filedescr['filename'] = PclZipUtilPathReduction($v_value); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($v_key)." = '".$v_value."'"); + + if ($p_filedescr['filename'] == '') { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty filename for attribute '".PclZipUtilOptionText($v_key)."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + break; + + case PCLZIP_ATT_FILE_NEW_SHORT_NAME : + if (!is_string($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + $p_filedescr['new_short_name'] = PclZipUtilPathReduction($v_value); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($v_key)." = '".$v_value."'"); + + if ($p_filedescr['new_short_name'] == '') { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty short filename for attribute '".PclZipUtilOptionText($v_key)."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + break; + + case PCLZIP_ATT_FILE_NEW_FULL_NAME : + if (!is_string($v_value)) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". String expected for attribute '".PclZipUtilOptionText($v_key)."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + $p_filedescr['new_full_name'] = PclZipUtilPathReduction($v_value); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "".PclZipUtilOptionText($v_key)." = '".$v_value."'"); + + if ($p_filedescr['new_full_name'] == '') { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid empty full filename for attribute '".PclZipUtilOptionText($v_key)."'"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + break; + + default : + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, + "Unknown parameter '".$v_key."'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Look for mandatory options + if ($v_requested_options !== false) { + for ($key=reset($v_requested_options); $key=key($v_requested_options); $key=next($v_requested_options)) { + // ----- Look for mandatory option + if ($v_requested_options[$key] == 'mandatory') { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Detect a mandatory option : ".PclZipUtilOptionText($key)."(".$key.")"); + // ----- Look if present + if (!isset($p_file_list[$key])) { + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Missing mandatory parameter ".PclZipUtilOptionText($key)."(".$key.")"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + } + } + + // end foreach + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privFileDescrExpand() + // Description : + // Parameters : + // Return Values : + // 1 on success. + // 0 on failure. + // -------------------------------------------------------------------------------- + function privFileDescrExpand(&$p_filedescr_list, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privFileDescrExpand", ""); + $v_result=1; + + // ----- Create a result list + $v_result_list = array(); + + // ----- Look each entry + for ($i=0; $iprivCalculateStoredFilename($v_descr, $p_options); + + // ----- Add the descriptor in result list + $v_result_list[sizeof($v_result_list)] = $v_descr; + + // ----- Look for folder + if ($v_descr['type'] == 'folder') { + // ----- List of items in folder + $v_dirlist_descr = array(); + $v_dirlist_nb = 0; + if ($v_folder_handler = @opendir($v_descr['filename'])) { + while (($v_item_handler = @readdir($v_folder_handler)) !== false) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Looking for '".$v_item_handler."' in the directory"); + + // ----- Skip '.' and '..' + if (($v_item_handler == '.') || ($v_item_handler == '..')) { + continue; + } + + // ----- Compose the full filename + $v_dirlist_descr[$v_dirlist_nb]['filename'] = $v_descr['filename'].'/'.$v_item_handler; + + // ----- Look for different stored filename + // Because the name of the folder was changed, the name of the + // files/sub-folders also change + if ($v_descr['stored_filename'] != $v_descr['filename']) { + $v_dirlist_descr[$v_dirlist_nb]['new_full_name'] = $v_descr['stored_filename'].'/'.$v_item_handler; + } + + $v_dirlist_nb++; + } + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Unable to open dir '".$v_descr['filename']."' in read mode. Skipped."); + // TBC : unable to open folder in read mode + } + + // ----- Expand each element of the list + if ($v_dirlist_nb != 0) { + // ----- Expand + if (($v_result = $this->privFileDescrExpand($v_dirlist_descr, $p_options)) != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Concat the resulting list + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Merging result list (size '".sizeof($v_result_list)."') with dirlist (size '".sizeof($v_dirlist_descr)."')"); + $v_result_list = array_merge($v_result_list, $v_dirlist_descr); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "merged result list is size '".sizeof($v_result_list)."'"); + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Nothing in this folder to expand."); + } + + // ----- Free local array + unset($v_dirlist_descr); + } + } + + // ----- Get the result list + $p_filedescr_list = $v_result_list; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCreate() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privCreate($p_filedescr_list, &$p_result_list, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privCreate", "list"); + $v_result=1; + $v_list_detail = array(); + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Open the file in write mode + if (($v_result = $this->privOpenFd('wb')) != 1) + { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Add the list of files + $v_result = $this->privAddList($p_filedescr_list, $p_result_list, $p_options); + + // ----- Close + $this->privCloseFd(); + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAdd() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privAdd($p_filedescr_list, &$p_result_list, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privAdd", "list"); + $v_result=1; + $v_list_detail = array(); + + // ----- Look if the archive exists or is empty + if ((!is_file($this->zipname)) || (filesize($this->zipname) == 0)) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Archive does not exist, or is empty, create it."); + + // ----- Do a create + $v_result = $this->privCreate($p_filedescr_list, $p_result_list, $p_options); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_result=$this->privOpenFd('rb')) != 1) + { + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) + { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Go to beginning of File + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in file : ".ftell($this->zip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in file : ".ftell($this->zip_fd)."'"); + + // ----- Creates a temporay file + $v_zip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.tmp'; + + // ----- Open the temporary file in write mode + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_zip_temp_fd = @fopen($v_zip_temp_name, 'wb')) == 0) + { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Copy the files from the archive to the temporary file + // TBC : Here I should better append the file and go back to erase the central dir + $v_size = $v_central_dir['offset']; + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = fread($this->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Swap the file descriptor + // Here is a trick : I swap the temporary fd with the zip fd, in order to use + // the following methods on the temporary fil and not the real archive + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Add the files + $v_header_list = array(); + if (($v_result = $this->privAddFileList($p_filedescr_list, $v_header_list, $p_options)) != 1) + { + fclose($v_zip_temp_fd); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "New offset of central dir : $v_offset"); + + // ----- Copy the block of file headers from the old archive + $v_size = $v_central_dir['size']; + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = @fread($v_zip_temp_fd, $v_read_size); + @fwrite($this->zip_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Create the Central Dir files header + for ($i=0, $v_count=0; $iprivWriteCentralFileHeader($v_header_list[$i])) != 1) { + fclose($v_zip_temp_fd); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + $v_count++; + } + + // ----- Transform the header to a 'usable' info + $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); + } + + // ----- Zip file comment + $v_comment = $v_central_dir['comment']; + if (isset($p_options[PCLZIP_OPT_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; + } + if (isset($p_options[PCLZIP_OPT_ADD_COMMENT])) { + $v_comment = $v_comment.$p_options[PCLZIP_OPT_ADD_COMMENT]; + } + if (isset($p_options[PCLZIP_OPT_PREPEND_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_PREPEND_COMMENT].$v_comment; + } + + // ----- Calculate the size of the central header + $v_size = @ftell($this->zip_fd)-$v_offset; + + // ----- Create the central dir footer + if (($v_result = $this->privWriteCentralHeader($v_count+$v_central_dir['entries'], $v_size, $v_offset, $v_comment)) != 1) + { + // ----- Reset the file list + unset($v_header_list); + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Swap back the file descriptor + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Close + $this->privCloseFd(); + + // ----- Close the temporary file + @fclose($v_zip_temp_fd); + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Delete the zip file + // TBC : I should test the result ... + @unlink($this->zipname); + + // ----- Rename the temporary file + // TBC : I should test the result ... + //@rename($v_zip_temp_name, $this->zipname); + PclZipUtilRename($v_zip_temp_name, $this->zipname); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privOpenFd() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + function privOpenFd($p_mode) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privOpenFd", 'mode='.$p_mode); + $v_result=1; + + // ----- Look if already open + if ($this->zip_fd != 0) + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Zip file \''.$this->zipname.'\' already open'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Open file in '.$p_mode.' mode'); + if (($this->zip_fd = @fopen($this->zipname, $p_mode)) == 0) + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in '.$p_mode.' mode'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCloseFd() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + function privCloseFd() + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privCloseFd", ""); + $v_result=1; + + if ($this->zip_fd != 0) + @fclose($this->zip_fd); + $this->zip_fd = 0; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAddList() + // Description : + // $p_add_dir and $p_remove_dir will give the ability to memorize a path which is + // different from the real path of the file. This is usefull if you want to have PclTar + // running in any directory, and memorize relative path from an other directory. + // Parameters : + // $p_list : An array containing the file or directory names to add in the tar + // $p_result_list : list of added files with their properties (specially the status field) + // $p_add_dir : Path to add in the filename path archived + // $p_remove_dir : Path to remove in the filename path archived + // Return Values : + // -------------------------------------------------------------------------------- +// function privAddList($p_list, &$p_result_list, $p_add_dir, $p_remove_dir, $p_remove_all_dir, &$p_options) + function privAddList($p_filedescr_list, &$p_result_list, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privAddList", "list"); + $v_result=1; + + // ----- Add the files + $v_header_list = array(); + if (($v_result = $this->privAddFileList($p_filedescr_list, $v_header_list, $p_options)) != 1) + { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($this->zip_fd); + + // ----- Create the Central Dir files header + for ($i=0,$v_count=0; $iprivWriteCentralFileHeader($v_header_list[$i])) != 1) { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + $v_count++; + } + + // ----- Transform the header to a 'usable' info + $this->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); + } + + // ----- Zip file comment + $v_comment = ''; + if (isset($p_options[PCLZIP_OPT_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; + } + + // ----- Calculate the size of the central header + $v_size = @ftell($this->zip_fd)-$v_offset; + + // ----- Create the central dir footer + if (($v_result = $this->privWriteCentralHeader($v_count, $v_size, $v_offset, $v_comment)) != 1) + { + // ----- Reset the file list + unset($v_header_list); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAddFileList() + // Description : + // Parameters : + // $p_filedescr_list : An array containing the file description + // or directory names to add in the zip + // $p_result_list : list of added files with their properties (specially the status field) + // Return Values : + // -------------------------------------------------------------------------------- + function privAddFileList($p_filedescr_list, &$p_result_list, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privAddFileList", "filedescr_list"); + $v_result=1; + $v_header = array(); + + // ----- Recuperate the current number of elt in list + $v_nb = sizeof($p_result_list); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Before add, list have ".$v_nb." elements"); + + // ----- Loop on the files + for ($j=0; ($jprivAddFile($p_filedescr_list[$j], $v_header, + $p_options); + if ($v_result != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Store the file infos + $p_result_list[$v_nb++] = $v_header; + } + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "After add, list have ".$v_nb." elements"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privAddFile() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privAddFile($p_filedescr, &$p_header, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privAddFile", "filename='".$p_filedescr['filename']."'"); + $v_result=1; + + // ----- Working variable + $p_filename = $p_filedescr['filename']; + + // TBC : Already done in the fileAtt check ... ? + if ($p_filename == "") { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_PARAMETER, "Invalid file list parameter (invalid or empty list)"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Look for a stored different filename + if (isset($p_filedescr['stored_filename'])) { + $v_stored_filename = $p_filedescr['stored_filename']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, 'Stored filename is NOT the same "'.$v_stored_filename.'"'); + } + else { + $v_stored_filename = $p_filedescr['stored_filename']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, 'Stored filename is the same'); + } + + // ----- Set the file properties + clearstatcache(); + $p_header['version'] = 20; + $p_header['version_extracted'] = 10; + $p_header['flag'] = 0; + $p_header['compression'] = 0; + $p_header['mtime'] = filemtime($p_filename); + $p_header['crc'] = 0; + $p_header['compressed_size'] = 0; + $p_header['size'] = filesize($p_filename); + $p_header['filename_len'] = strlen($p_filename); + $p_header['extra_len'] = 0; + $p_header['comment_len'] = 0; + $p_header['disk'] = 0; + $p_header['internal'] = 0; +// $p_header['external'] = (is_file($p_filename)?0xFE49FFE0:0x41FF0010); + $p_header['external'] = (is_file($p_filename)?0x00000000:0x00000010); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Header external extension '".sprintf("0x%X",$p_header['external'])."'"); + $p_header['offset'] = 0; + $p_header['filename'] = $p_filename; + $p_header['stored_filename'] = $v_stored_filename; + $p_header['extra'] = ''; + $p_header['comment'] = ''; + $p_header['status'] = 'ok'; + $p_header['index'] = -1; + + // ----- Look for pre-add callback + if (isset($p_options[PCLZIP_CB_PRE_ADD])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "A pre-callback '".$p_options[PCLZIP_CB_PRE_ADD]."()') is defined for the extraction"); + + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_header, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + eval('$v_result = '.$p_options[PCLZIP_CB_PRE_ADD].'(PCLZIP_CB_PRE_ADD, $v_local_header);'); + if ($v_result == 0) { + // ----- Change the file status + $p_header['status'] = "skipped"; + $v_result = 1; + } + + // ----- Update the informations + // Only some fields can be modified + if ($p_header['stored_filename'] != $v_local_header['stored_filename']) { + $p_header['stored_filename'] = PclZipUtilPathReduction($v_local_header['stored_filename']); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "New stored filename is '".$p_header['stored_filename']."'"); + } + } + + // ----- Look for empty stored filename + if ($p_header['stored_filename'] == "") { + $p_header['status'] = "filtered"; + } + + // ----- Check the path length + if (strlen($p_header['stored_filename']) > 0xFF) { + $p_header['status'] = 'filename_too_long'; + } + + // ----- Look if no error, or file not skipped + if ($p_header['status'] == 'ok') { + + // ----- Look for a file + if (is_file($p_filename)) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "'".$p_filename."' is a file"); + // ----- Open the source file + if (($v_file = @fopen($p_filename, "rb")) == 0) { + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, "Unable to open file '$p_filename' in binary read mode"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + if ($p_options[PCLZIP_OPT_NO_COMPRESSION]) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File will not be compressed"); + // ----- Read the file content + $v_content_compressed = @fread($v_file, $p_header['size']); + + // ----- Calculate the CRC + $p_header['crc'] = @crc32($v_content_compressed); + + // ----- Set header parameters + $p_header['compressed_size'] = $p_header['size']; + $p_header['compression'] = 0; + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File will be compressed"); + // ----- Read the file content + $v_content = @fread($v_file, $p_header['size']); + + // ----- Calculate the CRC + $p_header['crc'] = @crc32($v_content); + + // ----- Compress the file + $v_content_compressed = @gzdeflate($v_content); + + // ----- Set header parameters + $p_header['compressed_size'] = strlen($v_content_compressed); + $p_header['compression'] = 8; + } + + // ----- Look for encryption + /* + if ((isset($p_options[PCLZIP_OPT_CRYPT])) + && ($p_options[PCLZIP_OPT_CRYPT] != "")) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File need to be crypted ...."); + + // Should be a random header + $v_header = 'xxxxxxxxxxxx'; + $v_content_compressed = PclZipUtilZipEncrypt($v_content_compressed, + $p_header['compressed_size'], + $v_header, + $p_header['crc'], + "test"); + + $p_header['compressed_size'] += 12; + $p_header['flag'] = 1; + + // ----- Add the header to the data + $v_content_compressed = $v_header.$v_content_compressed; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Size after header : ".strlen($v_content_compressed).""); + } + */ + + // ----- Call the header generation + if (($v_result = $this->privWriteFileHeader($p_header)) != 1) { + @fclose($v_file); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Write the compressed (or not) content + @fwrite($this->zip_fd, + $v_content_compressed, $p_header['compressed_size']); + + // ----- Close the file + @fclose($v_file); + } + + // ----- Look for a directory + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "'".$p_filename."' is a folder"); + // ----- Look for directory last '/' + if (@substr($p_header['stored_filename'], -1) != '/') { + $p_header['stored_filename'] .= '/'; + } + + // ----- Set the file properties + $p_header['size'] = 0; + //$p_header['external'] = 0x41FF0010; // Value for a folder : to be checked + $p_header['external'] = 0x00000010; // Value for a folder : to be checked + + // ----- Call the header generation + if (($v_result = $this->privWriteFileHeader($p_header)) != 1) + { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + } + } + + // ----- Look for post-add callback + if (isset($p_options[PCLZIP_CB_POST_ADD])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "A post-callback '".$p_options[PCLZIP_CB_POST_ADD]."()') is defined for the extraction"); + + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_header, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + eval('$v_result = '.$p_options[PCLZIP_CB_POST_ADD].'(PCLZIP_CB_POST_ADD, $v_local_header);'); + if ($v_result == 0) { + // ----- Ignored + $v_result = 1; + } + + // ----- Update the informations + // Nothing can be modified + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCalculateStoredFilename() + // Description : + // Based on file descriptor properties and global options, this method + // calculate the filename that will be stored in the archive. + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privCalculateStoredFilename(&$p_filedescr, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privCalculateStoredFilename", "filename='".$p_filedescr['filename']."'"); + $v_result=1; + + // ----- Working variables + $p_filename = $p_filedescr['filename']; + if (isset($p_options[PCLZIP_OPT_ADD_PATH])) { + $p_add_dir = $p_options[PCLZIP_OPT_ADD_PATH]; + } + else { + $p_add_dir = ''; + } + if (isset($p_options[PCLZIP_OPT_REMOVE_PATH])) { + $p_remove_dir = $p_options[PCLZIP_OPT_REMOVE_PATH]; + } + else { + $p_remove_dir = ''; + } + if (isset($p_options[PCLZIP_OPT_REMOVE_ALL_PATH])) { + $p_remove_all_dir = $p_options[PCLZIP_OPT_REMOVE_ALL_PATH]; + } + else { + $p_remove_all_dir = 0; + } + + // ----- Look for full name change + if (isset($p_filedescr['new_full_name'])) { + $v_stored_filename = $p_filedescr['new_full_name']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Changing full name of '".$p_filename."' for '".$v_stored_filename."'"); + } + + // ----- Look for path and/or short name change + else { + + // ----- Look for short name change + if (isset($p_filedescr['new_short_name'])) { + $v_path_info = pathinfo($p_filename); + $v_dir = ''; + if ($v_path_info['dirname'] != '') { + $v_dir = $v_path_info['dirname'].'/'; + } + $v_stored_filename = $v_dir.$p_filedescr['new_short_name']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Changing short name of '".$p_filename."' for '".$v_stored_filename."'"); + } + else { + // ----- Calculate the stored filename + $v_stored_filename = $p_filename; + } + + // ----- Look for all path to remove + if ($p_remove_all_dir) { + $v_stored_filename = basename($p_filename); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Remove all path selected change '".$p_filename."' for '".$v_stored_filename."'"); + } + // ----- Look for partial path remove + else if ($p_remove_dir != "") { + if (substr($p_remove_dir, -1) != '/') + $p_remove_dir .= "/"; + + if ( (substr($p_filename, 0, 2) == "./") + || (substr($p_remove_dir, 0, 2) == "./")) { + + if ( (substr($p_filename, 0, 2) == "./") + && (substr($p_remove_dir, 0, 2) != "./")) { + $p_remove_dir = "./".$p_remove_dir; + } + if ( (substr($p_filename, 0, 2) != "./") + && (substr($p_remove_dir, 0, 2) == "./")) { + $p_remove_dir = substr($p_remove_dir, 2); + } + } + + $v_compare = PclZipUtilPathInclusion($p_remove_dir, + $v_stored_filename); + if ($v_compare > 0) { + if ($v_compare == 2) { + $v_stored_filename = ""; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Path to remove is the current folder"); + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Remove path '$p_remove_dir' in file '$v_stored_filename'"); + $v_stored_filename = substr($v_stored_filename, + strlen($p_remove_dir)); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Result is '$v_stored_filename'"); + } + } + } + // ----- Look for path to add + if ($p_add_dir != "") { + if (substr($p_add_dir, -1) == "/") + $v_stored_filename = $p_add_dir.$v_stored_filename; + else + $v_stored_filename = $p_add_dir."/".$v_stored_filename; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Add path '$p_add_dir' in file '$p_filename' = '$v_stored_filename'"); + } + } + + // ----- Filename (reduce the path of stored name) + $v_stored_filename = PclZipUtilPathReduction($v_stored_filename); + $p_filedescr['stored_filename'] = $v_stored_filename; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Stored filename will be '".$p_filedescr['stored_filename']."', strlen ".strlen($p_filedescr['stored_filename'])); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privWriteFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privWriteFileHeader(&$p_header) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privWriteFileHeader", 'file="'.$p_header['filename'].'", stored as "'.$p_header['stored_filename'].'"'); + $v_result=1; + + // ----- Store the offset position of the file + $p_header['offset'] = ftell($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, 'File offset of the header :'.$p_header['offset']); + + // ----- Transform UNIX mtime to DOS format mdate/mtime + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Date : \''.date("d/m/y H:i:s", $p_header['mtime']).'\''); + $v_date = getdate($p_header['mtime']); + $v_mtime = ($v_date['hours']<<11) + ($v_date['minutes']<<5) + $v_date['seconds']/2; + $v_mdate = (($v_date['year']-1980)<<9) + ($v_date['mon']<<5) + $v_date['mday']; + + // ----- Packed data + $v_binary_data = pack("VvvvvvVVVvv", 0x04034b50, + $p_header['version_extracted'], $p_header['flag'], + $p_header['compression'], $v_mtime, $v_mdate, + $p_header['crc'], $p_header['compressed_size'], + $p_header['size'], + strlen($p_header['stored_filename']), + $p_header['extra_len']); + + // ----- Write the first 148 bytes of the header in the archive + fputs($this->zip_fd, $v_binary_data, 30); + + // ----- Write the variable fields + if (strlen($p_header['stored_filename']) != 0) + { + fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); + } + if ($p_header['extra_len'] != 0) + { + fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privWriteCentralFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privWriteCentralFileHeader(&$p_header) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privWriteCentralFileHeader", 'file="'.$p_header['filename'].'", stored as "'.$p_header['stored_filename'].'"'); + $v_result=1; + + // TBC + //for(reset($p_header); $key = key($p_header); next($p_header)) { + // //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "header[$key] = ".$p_header[$key]); + //} + + // ----- Transform UNIX mtime to DOS format mdate/mtime + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Date : \''.date("d/m/y H:i:s", $p_header['mtime']).'\''); + $v_date = getdate($p_header['mtime']); + $v_mtime = ($v_date['hours']<<11) + ($v_date['minutes']<<5) + $v_date['seconds']/2; + $v_mdate = (($v_date['year']-1980)<<9) + ($v_date['mon']<<5) + $v_date['mday']; + + // ----- Packed data + $v_binary_data = pack("VvvvvvvVVVvvvvvVV", 0x02014b50, + $p_header['version'], $p_header['version_extracted'], + $p_header['flag'], $p_header['compression'], + $v_mtime, $v_mdate, $p_header['crc'], + $p_header['compressed_size'], $p_header['size'], + strlen($p_header['stored_filename']), + $p_header['extra_len'], $p_header['comment_len'], + $p_header['disk'], $p_header['internal'], + $p_header['external'], $p_header['offset']); + + // ----- Write the 42 bytes of the header in the zip file + fputs($this->zip_fd, $v_binary_data, 46); + + // ----- Write the variable fields + if (strlen($p_header['stored_filename']) != 0) + { + fputs($this->zip_fd, $p_header['stored_filename'], strlen($p_header['stored_filename'])); + } + if ($p_header['extra_len'] != 0) + { + fputs($this->zip_fd, $p_header['extra'], $p_header['extra_len']); + } + if ($p_header['comment_len'] != 0) + { + fputs($this->zip_fd, $p_header['comment'], $p_header['comment_len']); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privWriteCentralHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privWriteCentralHeader($p_nb_entries, $p_size, $p_offset, $p_comment) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privWriteCentralHeader", 'nb_entries='.$p_nb_entries.', size='.$p_size.', offset='.$p_offset.', comment="'.$p_comment.'"'); + $v_result=1; + + // ----- Packed data + $v_binary_data = pack("VvvvvVVv", 0x06054b50, 0, 0, $p_nb_entries, + $p_nb_entries, $p_size, + $p_offset, strlen($p_comment)); + + // ----- Write the 22 bytes of the header in the zip file + fputs($this->zip_fd, $v_binary_data, 22); + + // ----- Write the variable fields + if (strlen($p_comment) != 0) + { + fputs($this->zip_fd, $p_comment, strlen($p_comment)); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privList() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privList(&$p_list) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privList", "list"); + $v_result=1; + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($this->zip_fd = @fopen($this->zipname, 'rb')) == 0) + { + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive \''.$this->zipname.'\' in binary read mode'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) + { + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Go to beginning of Central Dir + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Offset : ".$v_central_dir['offset']."'"); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Position in file : ".ftell($this->zip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Position in file : ".ftell($this->zip_fd)."'"); + if (@fseek($this->zip_fd, $v_central_dir['offset'])) + { + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Position in file : ".ftell($this->zip_fd)."'"); + + // ----- Read each entry + for ($i=0; $i<$v_central_dir['entries']; $i++) + { + // ----- Read the file header + if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) + { + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + $v_header['index'] = $i; + + // ----- Get the only interesting attributes + $this->privConvertHeader2FileInfo($v_header, $p_list[$i]); + unset($v_header); + } + + // ----- Close the zip file + $this->privCloseFd(); + + // ----- Magic quotes trick + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privConvertHeader2FileInfo() + // Description : + // This function takes the file informations from the central directory + // entries and extract the interesting parameters that will be given back. + // The resulting file infos are set in the array $p_info + // $p_info['filename'] : Filename with full path. Given by user (add), + // extracted in the filesystem (extract). + // $p_info['stored_filename'] : Stored filename in the archive. + // $p_info['size'] = Size of the file. + // $p_info['compressed_size'] = Compressed size of the file. + // $p_info['mtime'] = Last modification date of the file. + // $p_info['comment'] = Comment associated with the file. + // $p_info['folder'] = true/false : indicates if the entry is a folder or not. + // $p_info['status'] = status of the action on the file. + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privConvertHeader2FileInfo($p_header, &$p_info) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privConvertHeader2FileInfo", "Filename='".$p_header['filename']."'"); + $v_result=1; + + // ----- Get the interesting attributes + $p_info['filename'] = $p_header['filename']; + $p_info['stored_filename'] = $p_header['stored_filename']; + $p_info['size'] = $p_header['size']; + $p_info['compressed_size'] = $p_header['compressed_size']; + $p_info['mtime'] = $p_header['mtime']; + $p_info['comment'] = $p_header['comment']; + $p_info['folder'] = (($p_header['external']&0x00000010)==0x00000010); + $p_info['index'] = $p_header['index']; + $p_info['status'] = $p_header['status']; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractByRule() + // Description : + // Extract a file or directory depending of rules (by index, by name, ...) + // Parameters : + // $p_file_list : An array where will be placed the properties of each + // extracted file + // $p_path : Path to add while writing the extracted files + // $p_remove_path : Path to remove (from the file memorized path) while writing the + // extracted files. If the path does not match the file path, + // the file is extracted with its memorized path. + // $p_remove_path does not apply to 'list' mode. + // $p_path and $p_remove_path are commulative. + // Return Values : + // 1 on success,0 or less on error (see error code list) + // -------------------------------------------------------------------------------- + function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privExtractByRule", "path='$p_path', remove_path='$p_remove_path', remove_all_path='".($p_remove_all_path?'true':'false')."'"); + $v_result=1; + + // ----- Magic quotes trick + $this->privDisableMagicQuotes(); + + // ----- Check the path + if ( ($p_path == "") + || ( (substr($p_path, 0, 1) != "/") + && (substr($p_path, 0, 3) != "../") + && (substr($p_path,1,2)!=":/"))) + $p_path = "./".$p_path; + + // ----- Reduce the path last (and duplicated) '/' + if (($p_path != "./") && ($p_path != "/")) + { + // ----- Look for the path end '/' + while (substr($p_path, -1) == "/") + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Destination path [$p_path] ends by '/'"); + $p_path = substr($p_path, 0, strlen($p_path)-1); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Modified to [$p_path]"); + } + } + + // ----- Look for path to remove format (should end by /) + if (($p_remove_path != "") && (substr($p_remove_path, -1) != '/')) + { + $p_remove_path .= '/'; + } + $p_remove_path_size = strlen($p_remove_path); + + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_result = $this->privOpenFd('rb')) != 1) + { + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) + { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Start at beginning of Central Dir + $v_pos_entry = $v_central_dir['offset']; + + // ----- Read each entry + $j_start = 0; + for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Read next file header entry : '$i'"); + + // ----- Read next Central dir entry + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Position before rewind : ".ftell($this->zip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Position after rewind : ".ftell($this->zip_fd)."'"); + if (@fseek($this->zip_fd, $v_pos_entry)) + { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Position after fseek : ".ftell($this->zip_fd)."'"); + + // ----- Read the file header + $v_header = array(); + if (($v_result = $this->privReadCentralFileHeader($v_header)) != 1) + { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Store the index + $v_header['index'] = $i; + + // ----- Store the file position + $v_pos_entry = ftell($this->zip_fd); + + // ----- Look for the specific extract rules + $v_extract = false; + + // ----- Look for extract by name rule + if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) + && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract with rule 'ByName'"); + + // ----- Look if the filename is in the list + for ($j=0; ($j strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) + && (substr($v_header['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "The directory is in the file path"); + $v_extract = true; + } + } + // ----- Look for a filename + elseif ($v_header['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "The file is the right one."); + $v_extract = true; + } + } + } + + // ----- Look for extract by ereg rule + else if ( (isset($p_options[PCLZIP_OPT_BY_EREG])) + && ($p_options[PCLZIP_OPT_BY_EREG] != "")) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract by ereg '".$p_options[PCLZIP_OPT_BY_EREG]."'"); + + if (ereg($p_options[PCLZIP_OPT_BY_EREG], $v_header['stored_filename'])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Filename match the regular expression"); + $v_extract = true; + } + } + + // ----- Look for extract by preg rule + else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) + && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract with rule 'ByEreg'"); + + if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header['stored_filename'])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Filename match the regular expression"); + $v_extract = true; + } + } + + // ----- Look for extract by index rule + else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) + && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract with rule 'ByIndex'"); + + // ----- Look if the index is in the list + for ($j=$j_start; ($j=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Found as part of an index range"); + $v_extract = true; + } + if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Do not look this index range for next loop"); + $j_start = $j+1; + } + + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Index range is greater than index, stop loop"); + break; + } + } + } + + // ----- Look for no rule, which means extract all the archive + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract with no rule (extract all)"); + $v_extract = true; + } + + // ----- Check compression method + if ( ($v_extract) + && ( ($v_header['compression'] != 8) + && ($v_header['compression'] != 0))) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Unsupported compression method (".$v_header['compression'].")"); + $v_header['status'] = 'unsupported_compression'; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "PCLZIP_OPT_STOP_ON_ERROR is selected, extraction will be stopped"); + + $this->privSwapBackMagicQuotes(); + + PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_COMPRESSION, + "Filename '".$v_header['stored_filename']."' is " + ."compressed by an unsupported compression " + ."method (".$v_header['compression'].") "); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + + // ----- Check encrypted files + if (($v_extract) && (($v_header['flag'] & 1) == 1)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Unsupported file encryption"); + $v_header['status'] = 'unsupported_encryption'; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "PCLZIP_OPT_STOP_ON_ERROR is selected, extraction will be stopped"); + + $this->privSwapBackMagicQuotes(); + + PclZip::privErrorLog(PCLZIP_ERR_UNSUPPORTED_ENCRYPTION, + "Unsupported encryption for " + ." filename '".$v_header['stored_filename'] + ."'"); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + + // ----- Look for real extraction + if (($v_extract) && ($v_header['status'] != 'ok')) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "No need for extract"); + $v_result = $this->privConvertHeader2FileInfo($v_header, + $p_file_list[$v_nb_extracted++]); + if ($v_result != 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + $v_extract = false; + } + + // ----- Look for real extraction + if ($v_extract) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting file '".$v_header['filename']."', index '$i'"); + + // ----- Go to the file position + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position before rewind : ".ftell($this->zip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position after rewind : ".ftell($this->zip_fd)."'"); + if (@fseek($this->zip_fd, $v_header['offset'])) + { + // ----- Close the zip file + $this->privCloseFd(); + + $this->privSwapBackMagicQuotes(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position after fseek : ".ftell($this->zip_fd)."'"); + + // ----- Look for extraction as string + if ($p_options[PCLZIP_OPT_EXTRACT_AS_STRING]) { + + // ----- Extracting the file + $v_result1 = $this->privExtractFileAsString($v_header, $v_string); + if ($v_result1 < 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result1); + return $v_result1; + } + + // ----- Get the only interesting attributes + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted])) != 1) + { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Set the file content + $p_file_list[$v_nb_extracted]['content'] = $v_string; + + // ----- Next extracted file + $v_nb_extracted++; + + // ----- Look for user callback abort + if ($v_result1 == 2) { + break; + } + } + // ----- Look for extraction in standard output + elseif ( (isset($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) + && ($p_options[PCLZIP_OPT_EXTRACT_IN_OUTPUT])) { + // ----- Extracting the file in standard output + $v_result1 = $this->privExtractFileInOutput($v_header, $p_options); + if ($v_result1 < 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result1); + return $v_result1; + } + + // ----- Get the only interesting attributes + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Look for user callback abort + if ($v_result1 == 2) { + break; + } + } + // ----- Look for normal extraction + else { + // ----- Extracting the file + $v_result1 = $this->privExtractFile($v_header, + $p_path, $p_remove_path, + $p_remove_all_path, + $p_options); + if ($v_result1 < 1) { + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result1); + return $v_result1; + } + + // ----- Get the only interesting attributes + if (($v_result = $this->privConvertHeader2FileInfo($v_header, $p_file_list[$v_nb_extracted++])) != 1) + { + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Look for user callback abort + if ($v_result1 == 2) { + break; + } + } + } + } + + // ----- Close the zip file + $this->privCloseFd(); + $this->privSwapBackMagicQuotes(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractFile() + // Description : + // Parameters : + // Return Values : + // + // 1 : ... ? + // PCLZIP_ERR_USER_ABORTED(2) : User ask for extraction stop in callback + // -------------------------------------------------------------------------------- + function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::privExtractFile', "path='$p_path', remove_path='$p_remove_path', remove_all_path='".($p_remove_all_path?'true':'false')."'"); + $v_result=1; + + // ----- Read the file header + if (($v_result = $this->privReadFileHeader($v_header)) != 1) + { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Found file '".$v_header['filename']."', size '".$v_header['size']."'"); + + // ----- Check that the file header is coherent with $p_entry info + if ($this->privCheckFileHeaders($v_header, $p_entry) != 1) { + // TBC + } + + // ----- Look for all path to remove + if ($p_remove_all_path == true) { + // ----- Look for folder entry that not need to be extracted + if (($p_entry['external']&0x00000010)==0x00000010) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "The entry is a folder : need to be filtered"); + + $p_entry['status'] = "filtered"; + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "All path is removed"); + // ----- Get the basename of the path + $p_entry['filename'] = basename($p_entry['filename']); + } + + // ----- Look for path to remove + else if ($p_remove_path != "") + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Look for some path to remove"); + if (PclZipUtilPathInclusion($p_remove_path, $p_entry['filename']) == 2) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "The folder is the same as the removed path '".$p_entry['filename']."'"); + + // ----- Change the file status + $p_entry['status'] = "filtered"; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + $p_remove_path_size = strlen($p_remove_path); + if (substr($p_entry['filename'], 0, $p_remove_path_size) == $p_remove_path) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Found path '$p_remove_path' to remove in file '".$p_entry['filename']."'"); + + // ----- Remove the path + $p_entry['filename'] = substr($p_entry['filename'], $p_remove_path_size); + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Resulting file is '".$p_entry['filename']."'"); + } + } + + // ----- Add the path + if ($p_path != '') { + $p_entry['filename'] = $p_path."/".$p_entry['filename']; + } + + // ----- Check a base_dir_restriction + if (isset($p_options[PCLZIP_OPT_EXTRACT_DIR_RESTRICTION])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Check the extract directory restriction"); + $v_inclusion + = PclZipUtilPathInclusion($p_options[PCLZIP_OPT_EXTRACT_DIR_RESTRICTION], + $p_entry['filename']); + if ($v_inclusion == 0) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "PCLZIP_OPT_EXTRACT_DIR_RESTRICTION is selected, file is outside restriction"); + + PclZip::privErrorLog(PCLZIP_ERR_DIRECTORY_RESTRICTION, + "Filename '".$p_entry['filename']."' is " + ."outside PCLZIP_OPT_EXTRACT_DIR_RESTRICTION"); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + + // ----- Look for pre-extract callback + if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "A pre-callback '".$p_options[PCLZIP_CB_PRE_EXTRACT]."()') is defined for the extraction"); + + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); + if ($v_result == 0) { + // ----- Change the file status + $p_entry['status'] = "skipped"; + $v_result = 1; + } + + // ----- Look for abort result + if ($v_result == 2) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "User callback abort the extraction"); + // ----- This status is internal and will be changed in 'skipped' + $p_entry['status'] = "aborted"; + $v_result = PCLZIP_ERR_USER_ABORTED; + } + + // ----- Update the informations + // Only some fields can be modified + $p_entry['filename'] = $v_local_header['filename']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "New filename is '".$p_entry['filename']."'"); + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting file (with path) '".$p_entry['filename']."', size '$v_header[size]'"); + + // ----- Look if extraction should be done + if ($p_entry['status'] == 'ok') { + + // ----- Look for specific actions while the file exist + if (file_exists($p_entry['filename'])) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File '".$p_entry['filename']."' already exists"); + + // ----- Look if file is a directory + if (is_dir($p_entry['filename'])) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Existing file '".$p_entry['filename']."' is a directory"); + + // ----- Change the file status + $p_entry['status'] = "already_a_directory"; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + // For historical reason first PclZip implementation does not stop + // when this kind of error occurs. + if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "PCLZIP_OPT_STOP_ON_ERROR is selected, extraction will be stopped"); + + PclZip::privErrorLog(PCLZIP_ERR_ALREADY_A_DIRECTORY, + "Filename '".$p_entry['filename']."' is " + ."already used by an existing directory"); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + // ----- Look if file is write protected + else if (!is_writeable($p_entry['filename'])) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Existing file '".$p_entry['filename']."' is write protected"); + + // ----- Change the file status + $p_entry['status'] = "write_protected"; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + // For historical reason first PclZip implementation does not stop + // when this kind of error occurs. + if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "PCLZIP_OPT_STOP_ON_ERROR is selected, extraction will be stopped"); + + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, + "Filename '".$p_entry['filename']."' exists " + ."and is write protected"); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + + // ----- Look if the extracted file is older + else if (filemtime($p_entry['filename']) > $p_entry['mtime']) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Existing file '".$p_entry['filename']."' is newer (".date("l dS of F Y h:i:s A", filemtime($p_entry['filename'])).") than the extracted file (".date("l dS of F Y h:i:s A", $p_entry['mtime']).")"); + // ----- Change the file status + if ( (isset($p_options[PCLZIP_OPT_REPLACE_NEWER])) + && ($p_options[PCLZIP_OPT_REPLACE_NEWER]===true)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "PCLZIP_OPT_REPLACE_NEWER is selected, file will be replaced"); + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File will not be replaced"); + $p_entry['status'] = "newer_exist"; + + // ----- Look for PCLZIP_OPT_STOP_ON_ERROR + // For historical reason first PclZip implementation does not stop + // when this kind of error occurs. + if ( (isset($p_options[PCLZIP_OPT_STOP_ON_ERROR])) + && ($p_options[PCLZIP_OPT_STOP_ON_ERROR]===true)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "PCLZIP_OPT_STOP_ON_ERROR is selected, extraction will be stopped"); + + PclZip::privErrorLog(PCLZIP_ERR_WRITE_OPEN_FAIL, + "Newer version of '".$p_entry['filename']."' exists " + ."and option PCLZIP_OPT_REPLACE_NEWER is not selected"); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Existing file '".$p_entry['filename']."' is older than the extrated one - will be replaced by the extracted one (".date("l dS of F Y h:i:s A", filemtime($p_entry['filename'])).") than the extracted file (".date("l dS of F Y h:i:s A", $p_entry['mtime']).")"); + } + } + + // ----- Check the directory availability and create it if necessary + else { + if ((($p_entry['external']&0x00000010)==0x00000010) || (substr($p_entry['filename'], -1) == '/')) + $v_dir_to_check = $p_entry['filename']; + else if (!strstr($p_entry['filename'], "/")) + $v_dir_to_check = ""; + else + $v_dir_to_check = dirname($p_entry['filename']); + + if (($v_result = $this->privDirCheck($v_dir_to_check, (($p_entry['external']&0x00000010)==0x00000010))) != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Unable to create path for '".$p_entry['filename']."'"); + + // ----- Change the file status + $p_entry['status'] = "path_creation_fail"; + + // ----- Return + ////--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + //return $v_result; + $v_result = 1; + } + } + } + + // ----- Look if extraction should be done + if ($p_entry['status'] == 'ok') { + + // ----- Do the extraction (if not a folder) + if (!(($p_entry['external']&0x00000010)==0x00000010)) + { + // ----- Look for not compressed file + if ($p_entry['compression'] == 0) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting an un-compressed file"); + + // ----- Opening destination file + if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Error while opening '".$p_entry['filename']."' in write binary mode"); + + // ----- Change the file status + $p_entry['status'] = "write_error"; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Read '".$p_entry['size']."' bytes"); + + // ----- Read the file by PCLZIP_READ_BLOCK_SIZE octets blocks + $v_size = $p_entry['compressed_size']; + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Read $v_read_size bytes"); + $v_buffer = @fread($this->zip_fd, $v_read_size); + /* Try to speed up the code + $v_binary_data = pack('a'.$v_read_size, $v_buffer); + @fwrite($v_dest_file, $v_binary_data, $v_read_size); + */ + @fwrite($v_dest_file, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Closing the destination file + fclose($v_dest_file); + + // ----- Change the file mtime + touch($p_entry['filename'], $p_entry['mtime']); + + + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting a compressed file (Compression method ".$p_entry['compression'].")"); + // ----- TBC + // Need to be finished + if (($p_entry['flag'] & 1) == 1) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File is encrypted"); + /* + // ----- Read the encryption header + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Read 12 encryption header bytes"); + $v_encryption_header = @fread($this->zip_fd, 12); + + // ----- Read the encrypted & compressed file in a buffer + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Read '".($p_entry['compressed_size']-12)."' compressed & encrypted bytes"); + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']-12); + + // ----- Decrypt the buffer + $this->privDecrypt($v_encryption_header, $v_buffer, + $p_entry['compressed_size']-12, $p_entry['crc']); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Buffer is '".$v_buffer."'"); + */ + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Read '".$p_entry['compressed_size']."' compressed bytes"); + // ----- Read the compressed file in a buffer (one shot) + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); + } + + // ----- Decompress the file + $v_file_content = @gzinflate($v_buffer); + unset($v_buffer); + if ($v_file_content === FALSE) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Unable to inflate compressed file"); + + // ----- Change the file status + // TBC + $p_entry['status'] = "error"; + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Opening destination file + if (($v_dest_file = @fopen($p_entry['filename'], 'wb')) == 0) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Error while opening '".$p_entry['filename']."' in write binary mode"); + + // ----- Change the file status + $p_entry['status'] = "write_error"; + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Write the uncompressed data + @fwrite($v_dest_file, $v_file_content, $p_entry['size']); + unset($v_file_content); + + // ----- Closing the destination file + @fclose($v_dest_file); + + // ----- Change the file mtime + @touch($p_entry['filename'], $p_entry['mtime']); + } + + // ----- Look for chmod option + if (isset($p_options[PCLZIP_OPT_SET_CHMOD])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "chmod option activated '".$p_options[PCLZIP_OPT_SET_CHMOD]."'"); + + // ----- Change the mode of the file + @chmod($p_entry['filename'], $p_options[PCLZIP_OPT_SET_CHMOD]); + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extraction done"); + } + } + + // ----- Change abort status + if ($p_entry['status'] == "aborted") { + $p_entry['status'] = "skipped"; + } + + // ----- Look for post-extract callback + elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "A post-callback '".$p_options[PCLZIP_CB_POST_EXTRACT]."()') is defined for the extraction"); + + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); + + // ----- Look for abort result + if ($v_result == 2) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "User callback abort the extraction"); + $v_result = PCLZIP_ERR_USER_ABORTED; + } + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractFileInOutput() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privExtractFileInOutput(&$p_entry, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::privExtractFileInOutput', ""); + $v_result=1; + + // ----- Read the file header + if (($v_result = $this->privReadFileHeader($v_header)) != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Found file '".$v_header['filename']."', size '".$v_header['size']."'"); + + // ----- Check that the file header is coherent with $p_entry info + if ($this->privCheckFileHeaders($v_header, $p_entry) != 1) { + // TBC + } + + // ----- Look for pre-extract callback + if (isset($p_options[PCLZIP_CB_PRE_EXTRACT])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "A pre-callback '".$p_options[PCLZIP_CB_PRE_EXTRACT]."()') is defined for the extraction"); + + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + eval('$v_result = '.$p_options[PCLZIP_CB_PRE_EXTRACT].'(PCLZIP_CB_PRE_EXTRACT, $v_local_header);'); + if ($v_result == 0) { + // ----- Change the file status + $p_entry['status'] = "skipped"; + $v_result = 1; + } + + // ----- Look for abort result + if ($v_result == 2) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "User callback abort the extraction"); + // ----- This status is internal and will be changed in 'skipped' + $p_entry['status'] = "aborted"; + $v_result = PCLZIP_ERR_USER_ABORTED; + } + + // ----- Update the informations + // Only some fields can be modified + $p_entry['filename'] = $v_local_header['filename']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "New filename is '".$p_entry['filename']."'"); + } + + // ----- Trace + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting file (with path) '".$p_entry['filename']."', size '$v_header[size]'"); + + // ----- Look if extraction should be done + if ($p_entry['status'] == 'ok') { + + // ----- Do the extraction (if not a folder) + if (!(($p_entry['external']&0x00000010)==0x00000010)) { + // ----- Look for not compressed file + if ($p_entry['compressed_size'] == $p_entry['size']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting an un-compressed file"); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Reading '".$p_entry['size']."' bytes"); + + // ----- Read the file in a buffer (one shot) + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); + + // ----- Send the file to the output + echo $v_buffer; + unset($v_buffer); + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting a compressed file"); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Reading '".$p_entry['size']."' bytes"); + + // ----- Read the compressed file in a buffer (one shot) + $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']); + + // ----- Decompress the file + $v_file_content = gzinflate($v_buffer); + unset($v_buffer); + + // ----- Send the file to the output + echo $v_file_content; + unset($v_file_content); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extraction done"); + } + } + + // ----- Change abort status + if ($p_entry['status'] == "aborted") { + $p_entry['status'] = "skipped"; + } + + // ----- Look for post-extract callback + elseif (isset($p_options[PCLZIP_CB_POST_EXTRACT])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "A post-callback '".$p_options[PCLZIP_CB_POST_EXTRACT]."()') is defined for the extraction"); + + // ----- Generate a local information + $v_local_header = array(); + $this->privConvertHeader2FileInfo($p_entry, $v_local_header); + + // ----- Call the callback + // Here I do not use call_user_func() because I need to send a reference to the + // header. + eval('$v_result = '.$p_options[PCLZIP_CB_POST_EXTRACT].'(PCLZIP_CB_POST_EXTRACT, $v_local_header);'); + + // ----- Look for abort result + if ($v_result == 2) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "User callback abort the extraction"); + $v_result = PCLZIP_ERR_USER_ABORTED; + } + } + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privExtractFileAsString() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privExtractFileAsString(&$p_entry, &$p_string) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::privExtractFileAsString', "p_entry['filename']='".$p_entry['filename']."'"); + $v_result=1; + + // ----- Read the file header + $v_header = array(); + if (($v_result = $this->privReadFileHeader($v_header)) != 1) + { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Found file '".$v_header['filename']."', size '".$v_header['size']."'"); + + // ----- Check that the file header is coherent with $p_entry info + if ($this->privCheckFileHeaders($v_header, $p_entry) != 1) { + // TBC + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting file in string (with path) '".$p_entry['filename']."', size '$v_header[size]'"); + + // ----- Do the extraction (if not a folder) + if (!(($p_entry['external']&0x00000010)==0x00000010)) + { + // ----- Look for not compressed file +// if ($p_entry['compressed_size'] == $p_entry['size']) + if ($p_entry['compression'] == 0) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting an un-compressed file"); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Reading '".$p_entry['size']."' bytes"); + + // ----- Reading the file + $p_string = @fread($this->zip_fd, $p_entry['compressed_size']); + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extracting a compressed file (compression method '".$p_entry['compression']."')"); + + // ----- Reading the file + $v_data = @fread($this->zip_fd, $p_entry['compressed_size']); + + // ----- Decompress the file + if (($p_string = @gzinflate($v_data)) === FALSE) { + // TBC + } + } + + // ----- Trace + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Extraction done"); + } + else { + // TBC : error : can not extract a folder in a string + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privReadFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privReadFileHeader(&$p_header) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privReadFileHeader", ""); + $v_result=1; + + // ----- Read the 4 bytes signature + $v_binary_data = @fread($this->zip_fd, 4); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Binary data is : '".sprintf("%08x", $v_binary_data)."'"); + $v_data = unpack('Vid', $v_binary_data); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Binary signature is : '".sprintf("0x%08x", $v_data['id'])."'"); + + // ----- Check signature + if ($v_data['id'] != 0x04034b50) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Invalid File header"); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Read the first 42 bytes of the header + $v_binary_data = fread($this->zip_fd, 26); + + // ----- Look for invalid block size + if (strlen($v_binary_data) != 26) + { + $p_header['filename'] = ""; + $p_header['status'] = "invalid_header"; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Invalid block size : ".strlen($v_binary_data)); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Extract the values + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Header : '".$v_binary_data."'"); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Header (Hex) : '".bin2hex($v_binary_data)."'"); + $v_data = unpack('vversion/vflag/vcompression/vmtime/vmdate/Vcrc/Vcompressed_size/Vsize/vfilename_len/vextra_len', $v_binary_data); + + // ----- Get filename + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "File name length : ".$v_data['filename_len']); + $p_header['filename'] = fread($this->zip_fd, $v_data['filename_len']); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Filename : \''.$p_header['filename'].'\''); + + // ----- Get extra_fields + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extra field length : ".$v_data['extra_len']); + if ($v_data['extra_len'] != 0) { + $p_header['extra'] = fread($this->zip_fd, $v_data['extra_len']); + } + else { + $p_header['extra'] = ''; + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Extra field : \''.bin2hex($p_header['extra']).'\''); + + // ----- Extract properties + $p_header['version_extracted'] = $v_data['version']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Version need to extract : ('.$p_header['version_extracted'].') \''.($p_header['version_extracted']/10).'.'.($p_header['version_extracted']%10).'\''); + $p_header['compression'] = $v_data['compression']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Compression method : \''.$p_header['compression'].'\''); + $p_header['size'] = $v_data['size']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Size : \''.$p_header['size'].'\''); + $p_header['compressed_size'] = $v_data['compressed_size']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Compressed Size : \''.$p_header['compressed_size'].'\''); + $p_header['crc'] = $v_data['crc']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'CRC : \''.sprintf("0x%X", $p_header['crc']).'\''); + $p_header['flag'] = $v_data['flag']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Flag : \''.$p_header['flag'].'\''); + $p_header['filename_len'] = $v_data['filename_len']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Filename_len : \''.$p_header['filename_len'].'\''); + + // ----- Recuperate date in UNIX format + $p_header['mdate'] = $v_data['mdate']; + $p_header['mtime'] = $v_data['mtime']; + if ($p_header['mdate'] && $p_header['mtime']) + { + // ----- Extract time + $v_hour = ($p_header['mtime'] & 0xF800) >> 11; + $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; + $v_seconde = ($p_header['mtime'] & 0x001F)*2; + + // ----- Extract date + $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; + $v_month = ($p_header['mdate'] & 0x01E0) >> 5; + $v_day = $p_header['mdate'] & 0x001F; + + // ----- Get UNIX date format + $p_header['mtime'] = mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Date : \''.date("d/m/y H:i:s", $p_header['mtime']).'\''); + } + else + { + $p_header['mtime'] = time(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Date is actual : \''.date("d/m/y H:i:s", $p_header['mtime']).'\''); + } + + // TBC + //for(reset($v_data); $key = key($v_data); next($v_data)) { + // //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Attribut[$key] = ".$v_data[$key]); + //} + + // ----- Set the stored filename + $p_header['stored_filename'] = $p_header['filename']; + + // ----- Set the status field + $p_header['status'] = "ok"; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privReadCentralFileHeader() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privReadCentralFileHeader(&$p_header) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privReadCentralFileHeader", ""); + $v_result=1; + + // ----- Read the 4 bytes signature + $v_binary_data = @fread($this->zip_fd, 4); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Binary data is : '".sprintf("%08x", $v_binary_data)."'"); + $v_data = unpack('Vid', $v_binary_data); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Binary signature is : '".sprintf("0x%08x", $v_data['id'])."'"); + + // ----- Check signature + if ($v_data['id'] != 0x02014b50) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Invalid Central Dir File signature"); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Invalid archive structure'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Read the first 42 bytes of the header + $v_binary_data = fread($this->zip_fd, 42); + + // ----- Look for invalid block size + if (strlen($v_binary_data) != 42) + { + $p_header['filename'] = ""; + $p_header['status'] = "invalid_header"; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Invalid block size : ".strlen($v_binary_data)); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid block size : ".strlen($v_binary_data)); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Extract the values + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Header : '".$v_binary_data."'"); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Header (Hex) : '".bin2hex($v_binary_data)."'"); + $p_header = unpack('vversion/vversion_extracted/vflag/vcompression/vmtime/vmdate/Vcrc/Vcompressed_size/Vsize/vfilename_len/vextra_len/vcomment_len/vdisk/vinternal/Vexternal/Voffset', $v_binary_data); + + // ----- Get filename + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "File name length : ".$p_header['filename_len']); + if ($p_header['filename_len'] != 0) + $p_header['filename'] = fread($this->zip_fd, $p_header['filename_len']); + else + $p_header['filename'] = ''; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Filename : \''.$p_header['filename'].'\''); + + // ----- Get extra + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Extra length : ".$p_header['extra_len']); + if ($p_header['extra_len'] != 0) + $p_header['extra'] = fread($this->zip_fd, $p_header['extra_len']); + else + $p_header['extra'] = ''; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Extra : \''.$p_header['extra'].'\''); + + // ----- Get comment + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Comment length : ".$p_header['comment_len']); + if ($p_header['comment_len'] != 0) + $p_header['comment'] = fread($this->zip_fd, $p_header['comment_len']); + else + $p_header['comment'] = ''; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Comment : \''.$p_header['comment'].'\''); + + // ----- Extract properties + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Version : \''.($p_header['version']/10).'.'.($p_header['version']%10).'\''); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Version need to extract : \''.($p_header['version_extracted']/10).'.'.($p_header['version_extracted']%10).'\''); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Size : \''.$p_header['size'].'\''); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Compressed Size : \''.$p_header['compressed_size'].'\''); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'CRC : \''.sprintf("0x%X", $p_header['crc']).'\''); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Flag : \''.$p_header['flag'].'\''); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Offset : \''.$p_header['offset'].'\''); + + // ----- Recuperate date in UNIX format + if ($p_header['mdate'] && $p_header['mtime']) + { + // ----- Extract time + $v_hour = ($p_header['mtime'] & 0xF800) >> 11; + $v_minute = ($p_header['mtime'] & 0x07E0) >> 5; + $v_seconde = ($p_header['mtime'] & 0x001F)*2; + + // ----- Extract date + $v_year = (($p_header['mdate'] & 0xFE00) >> 9) + 1980; + $v_month = ($p_header['mdate'] & 0x01E0) >> 5; + $v_day = $p_header['mdate'] & 0x001F; + + // ----- Get UNIX date format + $p_header['mtime'] = mktime($v_hour, $v_minute, $v_seconde, $v_month, $v_day, $v_year); + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Date : \''.date("d/m/y H:i:s", $p_header['mtime']).'\''); + } + else + { + $p_header['mtime'] = time(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Date is actual : \''.date("d/m/y H:i:s", $p_header['mtime']).'\''); + } + + // ----- Set the stored filename + $p_header['stored_filename'] = $p_header['filename']; + + // ----- Set default status to ok + $p_header['status'] = 'ok'; + + // ----- Look if it is a directory + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Internal (Hex) : '".sprintf("Ox%04X", $p_header['internal'])."'"); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "External (Hex) : '".sprintf("Ox%04X", $p_header['external'])."' (".(($p_header['external']&0x00000010)==0x00000010?'is a folder':'is a file').')'); + if (substr($p_header['filename'], -1) == '/') { + //$p_header['external'] = 0x41FF0010; + $p_header['external'] = 0x00000010; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Force folder external : \''.sprintf("Ox%04X", $p_header['external']).'\''); + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Header of filename : \''.$p_header['filename'].'\''); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privCheckFileHeaders() + // Description : + // Parameters : + // Return Values : + // 1 on success, + // 0 on error; + // -------------------------------------------------------------------------------- + function privCheckFileHeaders(&$p_local_header, &$p_central_header) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privCheckFileHeaders", ""); + $v_result=1; + + // ----- Check the static values + // TBC + if ($p_local_header['filename'] != $p_central_header['filename']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Bad check "filename" : TBC To Be Completed'); + } + if ($p_local_header['version_extracted'] != $p_central_header['version_extracted']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Bad check "version_extracted" : TBC To Be Completed'); + } + if ($p_local_header['flag'] != $p_central_header['flag']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Bad check "flag" : TBC To Be Completed'); + } + if ($p_local_header['compression'] != $p_central_header['compression']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Bad check "compression" : TBC To Be Completed'); + } + if ($p_local_header['mtime'] != $p_central_header['mtime']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Bad check "mtime" : TBC To Be Completed'); + } + if ($p_local_header['filename_len'] != $p_central_header['filename_len']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Bad check "filename_len" : TBC To Be Completed'); + } + + // ----- Look for flag bit 3 + if (($p_local_header['flag'] & 8) == 8) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Purpose bit flag bit 3 set !'); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'File size, compression size and crc found in central header'); + $p_local_header['size'] = $p_central_header['size']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Size : \''.$p_local_header['size'].'\''); + $p_local_header['compressed_size'] = $p_central_header['compressed_size']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Compressed Size : \''.$p_local_header['compressed_size'].'\''); + $p_local_header['crc'] = $p_central_header['crc']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'CRC : \''.sprintf("0x%X", $p_local_header['crc']).'\''); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privReadEndCentralDir() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privReadEndCentralDir(&$p_central_dir) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privReadEndCentralDir", ""); + $v_result=1; + + // ----- Go to the end of the zip file + $v_size = filesize($this->zipname); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Size of the file :$v_size"); + @fseek($this->zip_fd, $v_size); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Position at end of zip file : \''.ftell($this->zip_fd).'\''); + if (@ftell($this->zip_fd) != $v_size) + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to go to the end of the archive \''.$this->zipname.'\''); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- First try : look if this is an archive with no commentaries (most of the time) + // in this case the end of central dir is at 22 bytes of the file end + $v_found = 0; + if ($v_size > 26) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Look for central dir with no comment'); + @fseek($this->zip_fd, $v_size-22); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Position after min central position : \''.ftell($this->zip_fd).'\''); + if (($v_pos = @ftell($this->zip_fd)) != ($v_size-22)) + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Read for bytes + $v_binary_data = @fread($this->zip_fd, 4); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Binary data is : '".sprintf("%08x", $v_binary_data)."'"); + $v_data = @unpack('Vid', $v_binary_data); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Binary signature is : '".sprintf("0x%08x", $v_data['id'])."'"); + + // ----- Check signature + if ($v_data['id'] == 0x06054b50) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Found central dir at the default position."); + $v_found = 1; + } + + $v_pos = ftell($this->zip_fd); + } + + // ----- Go back to the maximum possible size of the Central Dir End Record + if (!$v_found) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Start extended search of end central dir'); + $v_maximum_size = 65557; // 0xFFFF + 22; + if ($v_maximum_size > $v_size) + $v_maximum_size = $v_size; + @fseek($this->zip_fd, $v_size-$v_maximum_size); + if (@ftell($this->zip_fd) != ($v_size-$v_maximum_size)) + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, 'Unable to seek back to the middle of the archive \''.$this->zipname.'\''); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Position after max central position : \''.ftell($this->zip_fd).'\''); + + // ----- Read byte per byte in order to find the signature + $v_pos = ftell($this->zip_fd); + $v_bytes = 0x00000000; + while ($v_pos < $v_size) + { + // ----- Read a byte + $v_byte = @fread($this->zip_fd, 1); + + // ----- Add the byte + $v_bytes = ($v_bytes << 8) | Ord($v_byte); + + // ----- Compare the bytes + if ($v_bytes == 0x504b0506) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, 'Found End Central Dir signature at position : \''.ftell($this->zip_fd).'\''); + $v_pos++; + break; + } + + $v_pos++; + } + + // ----- Look if not found end of central dir + if ($v_pos == $v_size) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Unable to find End of Central Dir Record signature"); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Unable to find End of Central Dir Record signature"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + + // ----- Read the first 18 bytes of the header + $v_binary_data = fread($this->zip_fd, 18); + + // ----- Look for invalid block size + if (strlen($v_binary_data) != 18) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "Invalid End of Central Dir Record size : ".strlen($v_binary_data)); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, "Invalid End of Central Dir Record size : ".strlen($v_binary_data)); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Extract the values + ////--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Central Dir Record : '".$v_binary_data."'"); + ////--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Central Dir Record (Hex) : '".bin2hex($v_binary_data)."'"); + $v_data = unpack('vdisk/vdisk_start/vdisk_entries/ventries/Vsize/Voffset/vcomment_size', $v_binary_data); + + // ----- Check the global size + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Comment length : ".$v_data['comment_size']); + if (($v_pos + $v_data['comment_size'] + 18) != $v_size) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "The central dir is not at the end of the archive. Some trailing bytes exists after the archive."); + + // ----- Removed in release 2.2 see readme file + // The check of the file size is a little too strict. + // Some bugs where found when a zip is encrypted/decrypted with 'crypt'. + // While decrypted, zip has training 0 bytes + if (0) { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_BAD_FORMAT, + 'The central dir is not at the end of the archive.' + .' Some trailing bytes exists after the archive.'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + } + + // ----- Get comment + if ($v_data['comment_size'] != 0) + $p_central_dir['comment'] = fread($this->zip_fd, $v_data['comment_size']); + else + $p_central_dir['comment'] = ''; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Comment : \''.$p_central_dir['comment'].'\''); + + $p_central_dir['entries'] = $v_data['entries']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Nb of entries : \''.$p_central_dir['entries'].'\''); + $p_central_dir['disk_entries'] = $v_data['disk_entries']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Nb of entries for this disk : \''.$p_central_dir['disk_entries'].'\''); + $p_central_dir['offset'] = $v_data['offset']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Offset of Central Dir : \''.$p_central_dir['offset'].'\''); + $p_central_dir['size'] = $v_data['size']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Size of Central Dir : \''.$p_central_dir['size'].'\''); + $p_central_dir['disk'] = $v_data['disk']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Disk number : \''.$p_central_dir['disk'].'\''); + $p_central_dir['disk_start'] = $v_data['disk_start']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, 'Start disk number : \''.$p_central_dir['disk_start'].'\''); + + // TBC + //for(reset($p_central_dir); $key = key($p_central_dir); next($p_central_dir)) { + // //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "central_dir[$key] = ".$p_central_dir[$key]); + //} + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDeleteByRule() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privDeleteByRule(&$p_result_list, &$p_options) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privDeleteByRule", ""); + $v_result=1; + $v_list_detail = array(); + + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_result=$this->privOpenFd('rb')) != 1) + { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) + { + $this->privCloseFd(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Go to beginning of File + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in file : ".ftell($this->zip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in file : ".ftell($this->zip_fd)."'"); + + // ----- Scan all the files + // ----- Start at beginning of Central Dir + $v_pos_entry = $v_central_dir['offset']; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position before rewind : ".ftell($this->zip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position after rewind : ".ftell($this->zip_fd)."'"); + if (@fseek($this->zip_fd, $v_pos_entry)) + { + // ----- Close the zip file + $this->privCloseFd(); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position after fseek : ".ftell($this->zip_fd)."'"); + + // ----- Read each entry + $v_header_list = array(); + $j_start = 0; + for ($i=0, $v_nb_extracted=0; $i<$v_central_dir['entries']; $i++) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Read next file header entry (index '$i')"); + + // ----- Read the file header + $v_header_list[$v_nb_extracted] = array(); + if (($v_result = $this->privReadCentralFileHeader($v_header_list[$v_nb_extracted])) != 1) + { + // ----- Close the zip file + $this->privCloseFd(); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Filename (index '$i') : '".$v_header_list[$v_nb_extracted]['stored_filename']."'"); + + // ----- Store the index + $v_header_list[$v_nb_extracted]['index'] = $i; + + // ----- Look for the specific extract rules + $v_found = false; + + // ----- Look for extract by name rule + if ( (isset($p_options[PCLZIP_OPT_BY_NAME])) + && ($p_options[PCLZIP_OPT_BY_NAME] != 0)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract with rule 'ByName'"); + + // ----- Look if the filename is in the list + for ($j=0; ($j strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) + && (substr($v_header_list[$v_nb_extracted]['stored_filename'], 0, strlen($p_options[PCLZIP_OPT_BY_NAME][$j])) == $p_options[PCLZIP_OPT_BY_NAME][$j])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "The directory is in the file path"); + $v_found = true; + } + elseif ( (($v_header_list[$v_nb_extracted]['external']&0x00000010)==0x00000010) /* Indicates a folder */ + && ($v_header_list[$v_nb_extracted]['stored_filename'].'/' == $p_options[PCLZIP_OPT_BY_NAME][$j])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "The entry is the searched directory"); + $v_found = true; + } + } + // ----- Look for a filename + elseif ($v_header_list[$v_nb_extracted]['stored_filename'] == $p_options[PCLZIP_OPT_BY_NAME][$j]) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "The file is the right one."); + $v_found = true; + } + } + } + + // ----- Look for extract by ereg rule + else if ( (isset($p_options[PCLZIP_OPT_BY_EREG])) + && ($p_options[PCLZIP_OPT_BY_EREG] != "")) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract by ereg '".$p_options[PCLZIP_OPT_BY_EREG]."'"); + + if (ereg($p_options[PCLZIP_OPT_BY_EREG], $v_header_list[$v_nb_extracted]['stored_filename'])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Filename match the regular expression"); + $v_found = true; + } + } + + // ----- Look for extract by preg rule + else if ( (isset($p_options[PCLZIP_OPT_BY_PREG])) + && ($p_options[PCLZIP_OPT_BY_PREG] != "")) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract with rule 'ByEreg'"); + + if (preg_match($p_options[PCLZIP_OPT_BY_PREG], $v_header_list[$v_nb_extracted]['stored_filename'])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Filename match the regular expression"); + $v_found = true; + } + } + + // ----- Look for extract by index rule + else if ( (isset($p_options[PCLZIP_OPT_BY_INDEX])) + && ($p_options[PCLZIP_OPT_BY_INDEX] != 0)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Extract with rule 'ByIndex'"); + + // ----- Look if the index is in the list + for ($j=$j_start; ($j=$p_options[PCLZIP_OPT_BY_INDEX][$j]['start']) && ($i<=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end'])) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Found as part of an index range"); + $v_found = true; + } + if ($i>=$p_options[PCLZIP_OPT_BY_INDEX][$j]['end']) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Do not look this index range for next loop"); + $j_start = $j+1; + } + + if ($p_options[PCLZIP_OPT_BY_INDEX][$j]['start']>$i) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Index range is greater than index, stop loop"); + break; + } + } + } + else { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "No argument mean remove all file"); + $v_found = true; + } + + // ----- Look for deletion + if ($v_found) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File '".$v_header_list[$v_nb_extracted]['stored_filename']."', index '$i' need to be deleted"); + unset($v_header_list[$v_nb_extracted]); + } + else + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 2, "File '".$v_header_list[$v_nb_extracted]['stored_filename']."', index '$i' will not be deleted"); + $v_nb_extracted++; + } + } + + // ----- Look if something need to be deleted + if ($v_nb_extracted > 0) { + + // ----- Creates a temporay file + $v_zip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.tmp'; + + // ----- Creates a temporary zip archive + $v_temp_zip = new PclZip($v_zip_temp_name); + + // ----- Open the temporary zip file in write mode + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary write mode"); + if (($v_result = $v_temp_zip->privOpenFd('wb')) != 1) { + $this->privCloseFd(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Look which file need to be kept + for ($i=0; $izip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position after rewind : ".ftell($this->zip_fd)."'"); + if (@fseek($this->zip_fd, $v_header_list[$i]['offset'])) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_INVALID_ARCHIVE_ZIP, 'Invalid archive size'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position after fseek : ".ftell($this->zip_fd)."'"); + + // ----- Read the file header + $v_local_header = array(); + if (($v_result = $this->privReadFileHeader($v_local_header)) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Check that local file header is same as central file header + if ($this->privCheckFileHeaders($v_local_header, + $v_header_list[$i]) != 1) { + // TBC + } + unset($v_local_header); + + // ----- Write the file header + if (($v_result = $v_temp_zip->privWriteFileHeader($v_header_list[$i])) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Offset for this file is '".$v_header_list[$i]['offset']."'"); + + // ----- Read/write the data block + if (($v_result = PclZipUtilCopyBlock($this->zip_fd, $v_temp_zip->zip_fd, $v_header_list[$i]['compressed_size'])) != 1) { + // ----- Close the zip file + $this->privCloseFd(); + $v_temp_zip->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($v_temp_zip->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "New offset of central dir : $v_offset"); + + // ----- Re-Create the Central Dir files header + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Creates the new central directory"); + for ($i=0; $iprivWriteCentralFileHeader($v_header_list[$i])) != 1) { + $v_temp_zip->privCloseFd(); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Transform the header to a 'usable' info + $v_temp_zip->privConvertHeader2FileInfo($v_header_list[$i], $p_result_list[$i]); + } + + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Creates the central directory footer"); + + // ----- Zip file comment + $v_comment = ''; + if (isset($p_options[PCLZIP_OPT_COMMENT])) { + $v_comment = $p_options[PCLZIP_OPT_COMMENT]; + } + + // ----- Calculate the size of the central header + $v_size = @ftell($v_temp_zip->zip_fd)-$v_offset; + + // ----- Create the central dir footer + if (($v_result = $v_temp_zip->privWriteCentralHeader(sizeof($v_header_list), $v_size, $v_offset, $v_comment)) != 1) { + // ----- Reset the file list + unset($v_header_list); + $v_temp_zip->privCloseFd(); + $this->privCloseFd(); + @unlink($v_zip_temp_name); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Close + $v_temp_zip->privCloseFd(); + $this->privCloseFd(); + + // ----- Delete the zip file + // TBC : I should test the result ... + @unlink($this->zipname); + + // ----- Rename the temporary file + // TBC : I should test the result ... + //@rename($v_zip_temp_name, $this->zipname); + PclZipUtilRename($v_zip_temp_name, $this->zipname); + + // ----- Destroy the temporary archive + unset($v_temp_zip); + } + + // ----- Remove every files : reset the file + else if ($v_central_dir['entries'] != 0) { + $this->privCloseFd(); + + if (($v_result = $this->privOpenFd('wb')) != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + if (($v_result = $this->privWriteCentralHeader(0, 0, 0, '')) != 1) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + $this->privCloseFd(); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDirCheck() + // Description : + // Check if a directory exists, if not it creates it and all the parents directory + // which may be useful. + // Parameters : + // $p_dir : Directory path to check. + // Return Values : + // 1 : OK + // -1 : Unable to create directory + // -------------------------------------------------------------------------------- + function privDirCheck($p_dir, $p_is_dir=false) + { + $v_result = 1; + + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privDirCheck", "entry='$p_dir', is_dir='".($p_is_dir?"true":"false")."'"); + + // ----- Remove the final '/' + if (($p_is_dir) && (substr($p_dir, -1)=='/')) + { + $p_dir = substr($p_dir, 0, strlen($p_dir)-1); + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Looking for entry '$p_dir'"); + + // ----- Check the directory availability + if ((is_dir($p_dir)) || ($p_dir == "")) + { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, "'$p_dir' is a directory"); + return 1; + } + + // ----- Extract parent directory + $p_parent_dir = dirname($p_dir); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Parent directory is '$p_parent_dir'"); + + // ----- Just a check + if ($p_parent_dir != $p_dir) + { + // ----- Look for parent directory + if ($p_parent_dir != "") + { + if (($v_result = $this->privDirCheck($p_parent_dir)) != 1) + { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + } + } + + // ----- Create the directory + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Create directory '$p_dir'"); + if (!@mkdir($p_dir, 0777)) + { + // ----- Error log + PclZip::privErrorLog(PCLZIP_ERR_DIR_CREATE_FAIL, "Unable to create directory '$p_dir'"); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result, "Directory '$p_dir' created"); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privMerge() + // Description : + // If $p_archive_to_add does not exist, the function exit with a success result. + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privMerge(&$p_archive_to_add) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privMerge", "archive='".$p_archive_to_add->zipname."'"); + $v_result=1; + + // ----- Look if the archive_to_add exists + if (!is_file($p_archive_to_add->zipname)) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Archive to add does not exist. End of merge."); + + // ----- Nothing to merge, so merge is a success + $v_result = 1; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Look if the archive exists + if (!is_file($this->zipname)) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Archive does not exist, duplicate the archive_to_add."); + + // ----- Do a duplicate + $v_result = $this->privDuplicate($p_archive_to_add->zipname); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_result=$this->privOpenFd('rb')) != 1) + { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir = array(); + if (($v_result = $this->privReadEndCentralDir($v_central_dir)) != 1) + { + $this->privCloseFd(); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Go to beginning of File + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in zip : ".ftell($this->zip_fd)."'"); + @rewind($this->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in zip : ".ftell($this->zip_fd)."'"); + + // ----- Open the archive_to_add file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open archive_to_add in binary read mode"); + if (($v_result=$p_archive_to_add->privOpenFd('rb')) != 1) + { + $this->privCloseFd(); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Read the central directory informations + $v_central_dir_to_add = array(); + if (($v_result = $p_archive_to_add->privReadEndCentralDir($v_central_dir_to_add)) != 1) + { + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Go to beginning of File + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in archive_to_add : ".ftell($p_archive_to_add->zip_fd)."'"); + @rewind($p_archive_to_add->zip_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Position in archive_to_add : ".ftell($p_archive_to_add->zip_fd)."'"); + + // ----- Creates a temporay file + $v_zip_temp_name = PCLZIP_TEMPORARY_DIR.uniqid('pclzip-').'.tmp'; + + // ----- Open the temporary file in write mode + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_zip_temp_fd = @fopen($v_zip_temp_name, 'wb')) == 0) + { + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open temporary file \''.$v_zip_temp_name.'\' in binary write mode'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Copy the files from the archive to the temporary file + // TBC : Here I should better append the file and go back to erase the central dir + $v_size = $v_central_dir['offset']; + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = fread($this->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Copy the files from the archive_to_add into the temporary file + $v_size = $v_central_dir_to_add['offset']; + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = fread($p_archive_to_add->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Store the offset of the central dir + $v_offset = @ftell($v_zip_temp_fd); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "New offset of central dir : $v_offset"); + + // ----- Copy the block of file headers from the old archive + $v_size = $v_central_dir['size']; + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = @fread($this->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Copy the block of file headers from the archive_to_add + $v_size = $v_central_dir_to_add['size']; + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = @fread($p_archive_to_add->zip_fd, $v_read_size); + @fwrite($v_zip_temp_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Merge the file comments + $v_comment = $v_central_dir['comment'].' '.$v_central_dir_to_add['comment']; + + // ----- Calculate the size of the (new) central header + $v_size = @ftell($v_zip_temp_fd)-$v_offset; + + // ----- Swap the file descriptor + // Here is a trick : I swap the temporary fd with the zip fd, in order to use + // the following methods on the temporary fil and not the real archive fd + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Create the central dir footer + if (($v_result = $this->privWriteCentralHeader($v_central_dir['entries']+$v_central_dir_to_add['entries'], $v_size, $v_offset, $v_comment)) != 1) + { + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + @fclose($v_zip_temp_fd); + $this->zip_fd = null; + + // ----- Reset the file list + unset($v_header_list); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Swap back the file descriptor + $v_swap = $this->zip_fd; + $this->zip_fd = $v_zip_temp_fd; + $v_zip_temp_fd = $v_swap; + + // ----- Close + $this->privCloseFd(); + $p_archive_to_add->privCloseFd(); + + // ----- Close the temporary file + @fclose($v_zip_temp_fd); + + // ----- Delete the zip file + // TBC : I should test the result ... + @unlink($this->zipname); + + // ----- Rename the temporary file + // TBC : I should test the result ... + //@rename($v_zip_temp_name, $this->zipname); + PclZipUtilRename($v_zip_temp_name, $this->zipname); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDuplicate() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privDuplicate($p_archive_filename) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZip::privDuplicate", "archive_filename='$p_archive_filename'"); + $v_result=1; + + // ----- Look if the $p_archive_filename exists + if (!is_file($p_archive_filename)) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Archive to duplicate does not exist. End of duplicate."); + + // ----- Nothing to duplicate, so duplicate is a success. + $v_result = 1; + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Open the zip file + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_result=$this->privOpenFd('wb')) != 1) + { + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Open the temporary file in write mode + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Open file in binary read mode"); + if (($v_zip_temp_fd = @fopen($p_archive_filename, 'rb')) == 0) + { + $this->privCloseFd(); + + PclZip::privErrorLog(PCLZIP_ERR_READ_OPEN_FAIL, 'Unable to open archive file \''.$p_archive_filename.'\' in binary write mode'); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, PclZip::errorCode(), PclZip::errorInfo()); + return PclZip::errorCode(); + } + + // ----- Copy the files from the archive to the temporary file + // TBC : Here I should better append the file and go back to erase the central dir + $v_size = filesize($p_archive_filename); + while ($v_size != 0) + { + $v_read_size = ($v_size < PCLZIP_READ_BLOCK_SIZE ? $v_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Read $v_read_size bytes"); + $v_buffer = fread($v_zip_temp_fd, $v_read_size); + @fwrite($this->zip_fd, $v_buffer, $v_read_size); + $v_size -= $v_read_size; + } + + // ----- Close + $this->privCloseFd(); + + // ----- Close the temporary file + @fclose($v_zip_temp_fd); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privErrorLog() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + function privErrorLog($p_error_code=0, $p_error_string='') + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + PclError($p_error_code, $p_error_string); + } + else { + $this->error_code = $p_error_code; + $this->error_string = $p_error_string; + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privErrorReset() + // Description : + // Parameters : + // -------------------------------------------------------------------------------- + function privErrorReset() + { + if (PCLZIP_ERROR_EXTERNAL == 1) { + PclErrorReset(); + } + else { + $this->error_code = 0; + $this->error_string = ''; + } + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDecrypt() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privDecrypt($p_encryption_header, &$p_buffer, $p_size, $p_crc) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::privDecrypt', "size=".$p_size.""); + $v_result=1; + + // ----- To Be Modified ;-) + $v_pwd = "test"; + + $p_buffer = PclZipUtilZipDecrypt($p_buffer, $p_size, $p_encryption_header, + $p_crc, $v_pwd); + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privDisableMagicQuotes() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privDisableMagicQuotes() + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::privDisableMagicQuotes', ""); + $v_result=1; + + // ----- Look if function exists + if ( (!function_exists("get_magic_quotes_runtime")) + || (!function_exists("set_magic_quotes_runtime"))) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Functions *et_magic_quotes_runtime are not supported"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Look if already done + if ($this->magic_quotes_status != -1) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "magic_quote already disabled"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Get and memorize the magic_quote value + $this->magic_quotes_status = @get_magic_quotes_runtime(); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Current magic_quotes_runtime status is '".($this->magic_quotes_status==0?'disable':'enable')."'"); + + // ----- Disable magic_quotes + if ($this->magic_quotes_status == 1) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Disable magic_quotes"); + @set_magic_quotes_runtime(0); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : privSwapBackMagicQuotes() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function privSwapBackMagicQuotes() + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, 'PclZip::privSwapBackMagicQuotes', ""); + $v_result=1; + + // ----- Look if function exists + if ( (!function_exists("get_magic_quotes_runtime")) + || (!function_exists("set_magic_quotes_runtime"))) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Functions *et_magic_quotes_runtime are not supported"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Look if something to do + if ($this->magic_quotes_status != -1) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "magic_quote not modified"); + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + + // ----- Swap back magic_quotes + if ($this->magic_quotes_status == 1) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Enable back magic_quotes"); + @set_magic_quotes_runtime($this->magic_quotes_status); + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + } + // End of class + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : PclZipUtilPathReduction() + // Description : + // Parameters : + // Return Values : + // -------------------------------------------------------------------------------- + function PclZipUtilPathReduction($p_dir) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZipUtilPathReduction", "dir='$p_dir'"); + $v_result = ""; + + // ----- Look for not empty path + if ($p_dir != "") { + // ----- Explode path by directory names + $v_list = explode("/", $p_dir); + + // ----- Study directories from last to first + $v_skip = 0; + for ($i=sizeof($v_list)-1; $i>=0; $i--) { + // ----- Look for current path + if ($v_list[$i] == ".") { + // ----- Ignore this directory + // Should be the first $i=0, but no check is done + } + else if ($v_list[$i] == "..") { + $v_skip++; + } + else if ($v_list[$i] == "") { + // ----- First '/' i.e. root slash + if ($i == 0) { + $v_result = "/".$v_result; + if ($v_skip > 0) { + // ----- It is an invalid path, so the path is not modified + // TBC + $v_result = $p_dir; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 3, "Invalid path is unchanged"); + $v_skip = 0; + } + } + // ----- Last '/' i.e. indicates a directory + else if ($i == (sizeof($v_list)-1)) { + $v_result = $v_list[$i]; + } + // ----- Double '/' inside the path + else { + // ----- Ignore only the double '//' in path, + // but not the first and last '/' + } + } + else { + // ----- Look for item to skip + if ($v_skip > 0) { + $v_skip--; + } + else { + $v_result = $v_list[$i].($i!=(sizeof($v_list)-1)?"/".$v_result:""); + } + } + } + + // ----- Look for skip + if ($v_skip > 0) { + while ($v_skip > 0) { + $v_result = '../'.$v_result; + $v_skip--; + } + } + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : PclZipUtilPathInclusion() + // Description : + // This function indicates if the path $p_path is under the $p_dir tree. Or, + // said in an other way, if the file or sub-dir $p_path is inside the dir + // $p_dir. + // The function indicates also if the path is exactly the same as the dir. + // This function supports path with duplicated '/' like '//', but does not + // support '.' or '..' statements. + // Parameters : + // Return Values : + // 0 if $p_path is not inside directory $p_dir + // 1 if $p_path is inside directory $p_dir + // 2 if $p_path is exactly the same as $p_dir + // -------------------------------------------------------------------------------- + function PclZipUtilPathInclusion($p_dir, $p_path) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZipUtilPathInclusion", "dir='$p_dir', path='$p_path'"); + $v_result = 1; + + // ----- Look for path beginning by ./ + if ( ($p_dir == '.') + || ((strlen($p_dir) >=2) && (substr($p_dir, 0, 2) == './'))) { + $p_dir = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_dir, 1); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Replacing ./ by full path in p_dir '".$p_dir."'"); + } + if ( ($p_path == '.') + || ((strlen($p_path) >=2) && (substr($p_path, 0, 2) == './'))) { + $p_path = PclZipUtilTranslateWinPath(getcwd(), FALSE).'/'.substr($p_path, 1); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Replacing ./ by full path in p_path '".$p_path."'"); + } + + // ----- Explode dir and path by directory separator + $v_list_dir = explode("/", $p_dir); + $v_list_dir_size = sizeof($v_list_dir); + $v_list_path = explode("/", $p_path); + $v_list_path_size = sizeof($v_list_path); + + // ----- Study directories paths + $i = 0; + $j = 0; + while (($i < $v_list_dir_size) && ($j < $v_list_path_size) && ($v_result)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Working on dir($i)='".$v_list_dir[$i]."' and path($j)='".$v_list_path[$j]."'"); + + // ----- Look for empty dir (path reduction) + if ($v_list_dir[$i] == '') { + $i++; + continue; + } + if ($v_list_path[$j] == '') { + $j++; + continue; + } + + // ----- Compare the items + if (($v_list_dir[$i] != $v_list_path[$j]) && ($v_list_dir[$i] != '') && ( $v_list_path[$j] != '')) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Items ($i,$j) are different"); + $v_result = 0; + } + + // ----- Next items + $i++; + $j++; + } + + // ----- Look if everything seems to be the same + if ($v_result) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Look for tie break"); + // ----- Skip all the empty items + while (($j < $v_list_path_size) && ($v_list_path[$j] == '')) $j++; + while (($i < $v_list_dir_size) && ($v_list_dir[$i] == '')) $i++; + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Looking on dir($i)='".($i < $v_list_dir_size?$v_list_dir[$i]:'')."' and path($j)='".($j < $v_list_path_size?$v_list_path[$j]:'')."'"); + + if (($i >= $v_list_dir_size) && ($j >= $v_list_path_size)) { + // ----- There are exactly the same + $v_result = 2; + } + else if ($i < $v_list_dir_size) { + // ----- The path is shorter than the dir + $v_result = 0; + } + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : PclZipUtilCopyBlock() + // Description : + // Parameters : + // $p_mode : read/write compression mode + // 0 : src & dest normal + // 1 : src gzip, dest normal + // 2 : src normal, dest gzip + // 3 : src & dest gzip + // Return Values : + // -------------------------------------------------------------------------------- + function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode=0) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZipUtilCopyBlock", "size=$p_size, mode=$p_mode"); + $v_result = 1; + + if ($p_mode==0) + { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Src offset before read :".(@ftell($p_src))); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Dest offset before write :".(@ftell($p_dest))); + while ($p_size != 0) + { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = @fread($p_src, $v_read_size); + @fwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Src offset after read :".(@ftell($p_src))); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Dest offset after write :".(@ftell($p_dest))); + } + else if ($p_mode==1) + { + while ($p_size != 0) + { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = @gzread($p_src, $v_read_size); + @fwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + } + else if ($p_mode==2) + { + while ($p_size != 0) + { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = @fread($p_src, $v_read_size); + @gzwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + } + else if ($p_mode==3) + { + while ($p_size != 0) + { + $v_read_size = ($p_size < PCLZIP_READ_BLOCK_SIZE ? $p_size : PCLZIP_READ_BLOCK_SIZE); + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 4, "Read $v_read_size bytes"); + $v_buffer = @gzread($p_src, $v_read_size); + @gzwrite($p_dest, $v_buffer, $v_read_size); + $p_size -= $v_read_size; + } + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : PclZipUtilRename() + // Description : + // This function tries to do a simple rename() function. If it fails, it + // tries to copy the $p_src file in a new $p_dest file and then unlink the + // first one. + // Parameters : + // $p_src : Old filename + // $p_dest : New filename + // Return Values : + // 1 on success, 0 on failure. + // -------------------------------------------------------------------------------- + function PclZipUtilRename($p_src, $p_dest) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZipUtilRename", "source=$p_src, destination=$p_dest"); + $v_result = 1; + + // ----- Try to rename the files + if (!@rename($p_src, $p_dest)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Fail to rename file, try copy+unlink"); + + // ----- Try to copy & unlink the src + if (!@copy($p_src, $p_dest)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Fail to copy file"); + $v_result = 0; + } + else if (!@unlink($p_src)) { + //--(MAGIC-PclTrace)--//PclTraceFctMessage(__FILE__, __LINE__, 5, "Fail to unlink old filename"); + $v_result = 0; + } + } + + // ----- Return + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : PclZipUtilOptionText() + // Description : + // Translate option value in text. Mainly for debug purpose. + // Parameters : + // $p_option : the option value. + // Return Values : + // The option text value. + // -------------------------------------------------------------------------------- + function PclZipUtilOptionText($p_option) + { + //--(MAGIC-PclTrace)--//PclTraceFctStart(__FILE__, __LINE__, "PclZipUtilOptionText", "option='".$p_option."'"); + + $v_list = get_defined_constants(); + for (reset($v_list); $v_key = key($v_list); next($v_list)) { + $v_prefix = substr($v_key, 0, 10); + if (( ($v_prefix == 'PCLZIP_OPT') + || ($v_prefix == 'PCLZIP_CB_') + || ($v_prefix == 'PCLZIP_ATT')) + && ($v_list[$v_key] == $p_option)) { + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_key); + return $v_key; + } + } + + $v_result = 'Unknown'; + + //--(MAGIC-PclTrace)--//PclTraceFctEnd(__FILE__, __LINE__, $v_result); + return $v_result; + } + // -------------------------------------------------------------------------------- + + // -------------------------------------------------------------------------------- + // Function : PclZipUtilTranslateWinPath() + // Description : + // Translate windows path by replacing '\' by '/' and optionally removing + // drive letter. + // Parameters : + // $p_path : path to translate. + // $p_remove_disk_letter : true | false + // Return Values : + // The path translated. + // -------------------------------------------------------------------------------- + function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter=true) + { + if (stristr(php_uname(), 'windows')) { + // ----- Look for potential disk letter + if (($p_remove_disk_letter) && (($v_position = strpos($p_path, ':')) != false)) { + $p_path = substr($p_path, $v_position+1); + } + // ----- Change potential windows directory separator + if ((strpos($p_path, '\\') > 0) || (substr($p_path, 0,1) == '\\')) { + $p_path = strtr($p_path, '\\', '/'); + } + } + return $p_path; + } + // -------------------------------------------------------------------------------- + + +?> diff --git a/trunk/NP_Paint/sharedlibs/sharedlibs.php b/trunk/NP_Paint/sharedlibs/sharedlibs.php new file mode 100644 index 0000000..1823854 --- /dev/null +++ b/trunk/NP_Paint/sharedlibs/sharedlibs.php @@ -0,0 +1,51 @@ +