";
return $out;
}
// --------------
// END PUBLIC API
var $boundsheets = array();
var $formatRecords = array();
var $fontRecords = array();
var $xfRecords = array();
var $colInfo = array();
var $rowInfo = array();
var $sst = array();
var $sheets = array();
var $data;
var $_ole;
var $_defaultEncoding = "UTF-8";
var $_defaultFormat = SPREADSHEET_EXCEL_READER_DEF_NUM_FORMAT;
var $_columnsFormat = array();
var $_rowoffset = 1;
var $_coloffset = 1;
/**
* List of default date formats used by Excel
*/
var $dateFormats = array (
0xe => "m/d/Y",
0xf => "M-d-Y",
0x10 => "d-M",
0x11 => "M-Y",
0x12 => "h:i a",
0x13 => "h:i:s a",
0x14 => "H:i",
0x15 => "H:i:s",
0x16 => "d/m/Y H:i",
0x2d => "i:s",
0x2e => "H:i:s",
0x2f => "i:s.S"
);
/**
* Default number formats used by Excel
*/
var $numberFormats = array(
0x1 => "0",
0x2 => "0.00",
0x3 => "#,##0",
0x4 => "#,##0.00",
0x5 => "\$#,##0;(\$#,##0)",
0x6 => "\$#,##0;[Red](\$#,##0)",
0x7 => "\$#,##0.00;(\$#,##0.00)",
0x8 => "\$#,##0.00;[Red](\$#,##0.00)",
0x9 => "0%",
0xa => "0.00%",
0xb => "0.00E+00",
0x25 => "#,##0;(#,##0)",
0x26 => "#,##0;[Red](#,##0)",
0x27 => "#,##0.00;(#,##0.00)",
0x28 => "#,##0.00;[Red](#,##0.00)",
0x29 => "#,##0;(#,##0)", // Not exactly
0x2a => "\$#,##0;(\$#,##0)", // Not exactly
0x2b => "#,##0.00;(#,##0.00)", // Not exactly
0x2c => "\$#,##0.00;(\$#,##0.00)", // Not exactly
0x30 => "##0.0E+0"
);
var $colors = Array(
0x00 => "#000000",
0x01 => "#FFFFFF",
0x02 => "#FF0000",
0x03 => "#00FF00",
0x04 => "#0000FF",
0x05 => "#FFFF00",
0x06 => "#FF00FF",
0x07 => "#00FFFF",
0x08 => "#000000",
0x09 => "#FFFFFF",
0x0A => "#FF0000",
0x0B => "#00FF00",
0x0C => "#0000FF",
0x0D => "#FFFF00",
0x0E => "#FF00FF",
0x0F => "#00FFFF",
0x10 => "#800000",
0x11 => "#008000",
0x12 => "#000080",
0x13 => "#808000",
0x14 => "#800080",
0x15 => "#008080",
0x16 => "#C0C0C0",
0x17 => "#808080",
0x18 => "#9999FF",
0x19 => "#993366",
0x1A => "#FFFFCC",
0x1B => "#CCFFFF",
0x1C => "#660066",
0x1D => "#FF8080",
0x1E => "#0066CC",
0x1F => "#CCCCFF",
0x20 => "#000080",
0x21 => "#FF00FF",
0x22 => "#FFFF00",
0x23 => "#00FFFF",
0x24 => "#800080",
0x25 => "#800000",
0x26 => "#008080",
0x27 => "#0000FF",
0x28 => "#00CCFF",
0x29 => "#CCFFFF",
0x2A => "#CCFFCC",
0x2B => "#FFFF99",
0x2C => "#99CCFF",
0x2D => "#FF99CC",
0x2E => "#CC99FF",
0x2F => "#FFCC99",
0x30 => "#3366FF",
0x31 => "#33CCCC",
0x32 => "#99CC00",
0x33 => "#FFCC00",
0x34 => "#FF9900",
0x35 => "#FF6600",
0x36 => "#666699",
0x37 => "#969696",
0x38 => "#003366",
0x39 => "#339966",
0x3A => "#003300",
0x3B => "#333300",
0x3C => "#993300",
0x3D => "#993366",
0x3E => "#333399",
0x3F => "#333333",
0x40 => "#000000",
0x41 => "#FFFFFF",
0x43 => "#000000",
0x4D => "#000000",
0x4E => "#FFFFFF",
0x4F => "#000000",
0x50 => "#FFFFFF",
0x51 => "#000000",
0x7FFF => "#000000"
);
var $lineStyles = array(
0x00 => "",
0x01 => "Thin",
0x02 => "Medium",
0x03 => "Dashed",
0x04 => "Dotted",
0x05 => "Thick",
0x06 => "Double",
0x07 => "Hair",
0x08 => "Medium dashed",
0x09 => "Thin dash-dotted",
0x0A => "Medium dash-dotted",
0x0B => "Thin dash-dot-dotted",
0x0C => "Medium dash-dot-dotted",
0x0D => "Slanted medium dash-dotted"
);
var $lineStylesCss = array(
"Thin" => "1px solid",
"Medium" => "2px solid",
"Dashed" => "1px dashed",
"Dotted" => "1px dotted",
"Thick" => "3px solid",
"Double" => "double",
"Hair" => "1px solid",
"Medium dashed" => "2px dashed",
"Thin dash-dotted" => "1px dashed",
"Medium dash-dotted" => "2px dashed",
"Thin dash-dot-dotted" => "1px dashed",
"Medium dash-dot-dotted" => "2px dashed",
"Slanted medium dash-dotte" => "2px dashed"
);
function read16bitstring($data, $start) {
$len = 0;
while (ord($data[$start + $len]) + ord($data[$start + $len + 1]) > 0) $len++;
return substr($data, $start, $len);
}
// ADDED by Matt Kruse for better formatting
function _format_value($format,$num,$f) {
// 49==TEXT format
// http://code.google.com/p/php-excel-reader/issues/detail?id=7
if ( (!$f && $format=="%s") || ($f==49) || ($format=="GENERAL") ) {
return array('string'=>$num, 'formatColor'=>null);
}
// Custom pattern can be POSITIVE;NEGATIVE;ZERO
// The "text" option as 4th parameter is not handled
$parts = explode(";",$format);
$pattern = $parts[0];
// Negative pattern
if (count($parts)>2 && $num==0) {
$pattern = $parts[2];
}
// Zero pattern
if (count($parts)>1 && $num<0) {
$pattern = $parts[1];
$num = abs($num);
}
$color = "";
$matches = array();
$color_regex = "/^\[(BLACK|BLUE|CYAN|GREEN|MAGENTA|RED|WHITE|YELLOW)\]/i";
if (preg_match($color_regex,$pattern,$matches)) {
$color = strtolower($matches[1]);
$pattern = preg_replace($color_regex,"",$pattern);
}
// In Excel formats, "_" is used to add spacing, which we can't do in HTML
$pattern = preg_replace("/_./","",$pattern);
// Some non-number characters are escaped with \, which we don't need
$pattern = preg_replace("/\\\/","",$pattern);
// Some non-number strings are quoted, so we'll get rid of the quotes
$pattern = preg_replace("/\"/","",$pattern);
// TEMPORARY - Convert # to 0
$pattern = preg_replace("/\#/","0",$pattern);
// Find out if we need comma formatting
$has_commas = preg_match("/,/",$pattern);
if ($has_commas) {
$pattern = preg_replace("/,/","",$pattern);
}
// Handle Percentages
if (preg_match("/\d(\%)([^\%]|$)/",$pattern,$matches)) {
$num = $num* 100;
$pattern = preg_replace("/(\d)(\%)([^\%]|$)/","$1%$3",$pattern);
}
// Handle the number itself
$number_regex = "/(\d+)(\.?)(\d*)/";
if (preg_match($number_regex,$pattern,$matches)) {
$left = $matches[1];
$dec = $matches[2];
$right = $matches[3];
if ($has_commas) {
$formatted = number_format($num,strlen($right));
}
else {
$sprintf_pattern = "%1.".strlen($right)."f";
$formatted = sprintf($sprintf_pattern, $num);
}
$pattern = preg_replace($number_regex, $formatted, $pattern);
}
return array(
'string'=>$pattern,
'formatColor'=>$color
);
}
/**
* Constructor
*
* Some basic initialisation
*/
function Spreadsheet_Excel_Reader($file='',$store_extended_info=true,$outputEncoding='') {
$this->_ole = new OLERead();
$this->setUTFEncoder('iconv');
if ($outputEncoding != '') {
$this->setOutputEncoding($outputEncoding);
}
for ($i=1; $i<245; $i++) {
$name = strtolower(( (($i-1)/26>=1)?chr(($i-1)/26+64):'') . chr(($i-1)%26+65));
$this->colnames[$name] = $i;
$this->colindexes[$i] = $name;
}
$this->store_extended_info = $store_extended_info;
if ($file!="") {
$this->read($file);
}
}
/**
* Set the encoding method
*/
function setOutputEncoding($encoding) {
$this->_defaultEncoding = $encoding;
}
/**
* $encoder = 'iconv' or 'mb'
* set iconv if you would like use 'iconv' for encode UTF-16LE to your encoding
* set mb if you would like use 'mb_convert_encoding' for encode UTF-16LE to your encoding
*/
function setUTFEncoder($encoder = 'iconv') {
$this->_encoderFunction = '';
if ($encoder == 'iconv') {
$this->_encoderFunction = function_exists('iconv') ? 'iconv' : '';
} elseif ($encoder == 'mb') {
$this->_encoderFunction = function_exists('mb_convert_encoding') ? 'mb_convert_encoding' : '';
}
}
function setRowColOffset($iOffset) {
$this->_rowoffset = $iOffset;
$this->_coloffset = $iOffset;
}
/**
* Set the default number format
*/
function setDefaultFormat($sFormat) {
$this->_defaultFormat = $sFormat;
}
/**
* Force a column to use a certain format
*/
function setColumnFormat($column, $sFormat) {
$this->_columnsFormat[$column] = $sFormat;
}
/**
* Read the spreadsheet file using OLE, then parse
*/
function read($sFileName) {
$res = $this->_ole->read($sFileName);
// oops, something goes wrong (Darko Miljanovic)
if($res === false) {
// check error code
if($this->_ole->error == 1) {
// bad file
die('The filename ' . $sFileName . ' is not readable');
}
// check other error codes here (eg bad fileformat, etc...)
}
$this->data = $this->_ole->getWorkBook();
$this->_parse();
}
/**
* Parse a workbook
*
* @access private
* @return bool
*/
function _parse() {
$pos = 0;
$data = $this->data;
$code = v($data,$pos);
$length = v($data,$pos+2);
$version = v($data,$pos+4);
$substreamType = v($data,$pos+6);
$this->version = $version;
if (($version != SPREADSHEET_EXCEL_READER_BIFF8) &&
($version != SPREADSHEET_EXCEL_READER_BIFF7)) {
return false;
}
if ($substreamType != SPREADSHEET_EXCEL_READER_WORKBOOKGLOBALS){
return false;
}
$pos += $length + 4;
$code = v($data,$pos);
$length = v($data,$pos+2);
while ($code != SPREADSHEET_EXCEL_READER_TYPE_EOF) {
switch ($code) {
case SPREADSHEET_EXCEL_READER_TYPE_SST:
$spos = $pos + 4;
$limitpos = $spos + $length;
$uniqueStrings = $this->_GetInt4d($data, $spos+4);
$spos += 8;
for ($i = 0; $i < $uniqueStrings; $i++) {
// Read in the number of characters
if ($spos == $limitpos) {
$opcode = v($data,$spos);
$conlength = v($data,$spos+2);
if ($opcode != 0x3c) {
return -1;
}
$spos += 4;
$limitpos = $spos + $conlength;
}
$numChars = ord($data[$spos]) | (ord($data[$spos+1]) << 8);
$spos += 2;
$optionFlags = ord($data[$spos]);
$spos++;
$asciiEncoding = (($optionFlags & 0x01) == 0) ;
$extendedString = ( ($optionFlags & 0x04) != 0);
// See if string contains formatting information
$richString = ( ($optionFlags & 0x08) != 0);
if ($richString) {
// Read in the crun
$formattingRuns = v($data,$spos);
$spos += 2;
}
if ($extendedString) {
// Read in cchExtRst
$extendedRunLength = $this->_GetInt4d($data, $spos);
$spos += 4;
}
$len = ($asciiEncoding)? $numChars : $numChars*2;
if ($spos + $len < $limitpos) {
$retstr = substr($data, $spos, $len);
$spos += $len;
}
else{
// found countinue
$retstr = substr($data, $spos, $limitpos - $spos);
$bytesRead = $limitpos - $spos;
$charsLeft = $numChars - (($asciiEncoding) ? $bytesRead : ($bytesRead / 2));
$spos = $limitpos;
while ($charsLeft > 0){
$opcode = v($data,$spos);
$conlength = v($data,$spos+2);
if ($opcode != 0x3c) {
return -1;
}
$spos += 4;
$limitpos = $spos + $conlength;
$option = ord($data[$spos]);
$spos += 1;
if ($asciiEncoding && ($option == 0)) {
$len = min($charsLeft, $limitpos - $spos); // min($charsLeft, $conlength);
$retstr .= substr($data, $spos, $len);
$charsLeft -= $len;
$asciiEncoding = true;
}
elseif (!$asciiEncoding && ($option != 0)) {
$len = min($charsLeft* 2, $limitpos - $spos); // min($charsLeft, $conlength);
$retstr .= substr($data, $spos, $len);
$charsLeft -= $len/2;
$asciiEncoding = false;
}
elseif (!$asciiEncoding && ($option == 0)) {
// Bummer - the string starts off as Unicode, but after the
// continuation it is in straightforward ASCII encoding
$len = min($charsLeft, $limitpos - $spos); // min($charsLeft, $conlength);
for ($j = 0; $j < $len; $j++) {
$retstr .= $data[$spos + $j].chr(0);
}
$charsLeft -= $len;
$asciiEncoding = false;
}
else{
$newstr = '';
for ($j = 0; $j < strlen($retstr); $j++) {
$newstr = $retstr[$j].chr(0);
}
$retstr = $newstr;
$len = min($charsLeft* 2, $limitpos - $spos); // min($charsLeft, $conlength);
$retstr .= substr($data, $spos, $len);
$charsLeft -= $len/2;
$asciiEncoding = false;
}
$spos += $len;
}
}
//$retstr = ($asciiEncoding) ? $retstr : $this->_encodeUTF16($retstr);
$retstr = ($asciiEncoding) ? iconv('iso-8859-1', $this->_defaultEncoding, $retstr) : $this->_encodeUTF16($retstr);
if ($richString){
$spos += 4* $formattingRuns;
}
// For extended strings, skip over the extended string data
if ($extendedString) {
$spos += $extendedRunLength;
}
$this->sst[]=$retstr;
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_FILEPASS:
return false;
break;
case SPREADSHEET_EXCEL_READER_TYPE_NAME:
break;
case SPREADSHEET_EXCEL_READER_TYPE_FORMAT:
$indexCode = v($data,$pos+4);
if ($version == SPREADSHEET_EXCEL_READER_BIFF8) {
$numchars = v($data,$pos+6);
if (ord($data[$pos+8]) == 0){
$formatString = substr($data, $pos+9, $numchars);
} else {
$formatString = substr($data, $pos+9, $numchars*2);
}
} else {
$numchars = ord($data[$pos+6]);
$formatString = substr($data, $pos+7, $numchars*2);
}
$this->formatRecords[$indexCode] = $formatString;
break;
case SPREADSHEET_EXCEL_READER_TYPE_FONT:
$height = v($data,$pos+4);
$option = v($data,$pos+6);
$color = v($data,$pos+8);
$weight = v($data,$pos+10);
$under = ord($data[$pos+14]);
$font = "";
// Font name
$numchars = ord($data[$pos+18]);
if ((ord($data[$pos+19]) & 1) == 0){
$font = substr($data, $pos+20, $numchars);
} else {
$font = substr($data, $pos+20, $numchars*2);
$font = $this->_encodeUTF16($font);
}
$this->fontRecords[] = array(
'height' => $height / 20,
'italic' => !!($option & 2),
'color' => $color,
'under' => !($under==0),
'bold' => ($weight==700),
'font' => $font,
'raw' => $this->dumpHexData($data, $pos+3, $length)
);
break;
case SPREADSHEET_EXCEL_READER_TYPE_PALETTE:
$colors = ord($data[$pos+4]) | ord($data[$pos+5]) << 8;
for ($coli = 0; $coli < $colors; $coli++) {
$colOff = $pos + 2 + ($coli* 4);
$colr = ord($data[$colOff]);
$colg = ord($data[$colOff+1]);
$colb = ord($data[$colOff+2]);
$this->colors[0x07 + $coli] = '#' . $this->myhex($colr) . $this->myhex($colg) . $this->myhex($colb);
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_XF:
$fontIndexCode = (ord($data[$pos+4]) | ord($data[$pos+5]) << 8) - 1;
$fontIndexCode = max(0,$fontIndexCode);
$indexCode = ord($data[$pos+6]) | ord($data[$pos+7]) << 8;
$alignbit = ord($data[$pos+10]) & 3;
$bgi = (ord($data[$pos+22]) | ord($data[$pos+23]) << 8) & 0x3FFF;
$bgcolor = ($bgi & 0x7F);
// $bgcolor = ($bgi & 0x3f80) >> 7;
$align = "";
if ($alignbit==3) { $align="right"; }
if ($alignbit==2) { $align="center"; }
$fillPattern = (ord($data[$pos+21]) & 0xFC) >> 2;
if ($fillPattern == 0) {
$bgcolor = "";
}
$xf = array();
$xf['formatIndex'] = $indexCode;
$xf['align'] = $align;
$xf['fontIndex'] = $fontIndexCode;
$xf['bgColor'] = $bgcolor;
$xf['fillPattern'] = $fillPattern;
$border = ord($data[$pos+14]) | (ord($data[$pos+15]) << 8) | (ord($data[$pos+16]) << 16) | (ord($data[$pos+17]) << 24);
$xf['borderLeft'] = $this->lineStyles[($border & 0xF)];
$xf['borderRight'] = $this->lineStyles[($border & 0xF0) >> 4];
$xf['borderTop'] = $this->lineStyles[($border & 0xF00) >> 8];
$xf['borderBottom'] = $this->lineStyles[($border & 0xF000) >> 12];
$xf['borderLeftColor'] = ($border & 0x7F0000) >> 16;
$xf['borderRightColor'] = ($border & 0x3F800000) >> 23;
$border = (ord($data[$pos+18]) | ord($data[$pos+19]) << 8);
$xf['borderTopColor'] = ($border & 0x7F);
$xf['borderBottomColor'] = ($border & 0x3F80) >> 7;
if (array_key_exists($indexCode, $this->dateFormats)) {
$xf['type'] = 'date';
$xf['format'] = $this->dateFormats[$indexCode];
if ($align=='') { $xf['align'] = 'right'; }
}elseif (array_key_exists($indexCode, $this->numberFormats)) {
$xf['type'] = 'number';
$xf['format'] = $this->numberFormats[$indexCode];
if ($align=='') { $xf['align'] = 'right'; }
}else{
$isdate = FALSE;
$formatstr = '';
if ($indexCode > 0){
if (isset($this->formatRecords[$indexCode]))
$formatstr = $this->formatRecords[$indexCode];
if ($formatstr!="") {
$tmp = preg_replace("/\;.*/","",$formatstr);
$tmp = preg_replace("/^\[[^\]]*\]/","",$tmp);
if (preg_match("/[^hmsday\/\-:\s\\\,AMP]/i", $tmp) == 0) { // found day and time format
$isdate = TRUE;
$formatstr = $tmp;
$formatstr = str_replace(array('AM/PM','mmmm','mmm'), array('a','F','M'), $formatstr);
// m/mm are used for both minutes and months - oh SNAP!
// This mess tries to fix for that.
// 'm' == minutes only if following h/hh or preceding s/ss
$formatstr = preg_replace("/(h:?)mm?/","$1i", $formatstr);
$formatstr = preg_replace("/mm?(:?s)/","i$1", $formatstr);
// A single 'm' = n in PHP
$formatstr = preg_replace("/(^|[^m])m([^m]|$)/", '$1n$2', $formatstr);
$formatstr = preg_replace("/(^|[^m])m([^m]|$)/", '$1n$2', $formatstr);
// else it's months
$formatstr = str_replace('mm', 'm', $formatstr);
// Convert single 'd' to 'j'
$formatstr = preg_replace("/(^|[^d])d([^d]|$)/", '$1j$2', $formatstr);
$formatstr = str_replace(array('dddd','ddd','dd','yyyy','yy','hh','h'), array('l','D','d','Y','y','H','g'), $formatstr);
$formatstr = preg_replace("/ss?/", 's', $formatstr);
}
}
}
if ($isdate){
$xf['type'] = 'date';
$xf['format'] = $formatstr;
if ($align=='') { $xf['align'] = 'right'; }
}else{
// If the format string has a 0 or # in it, we'll assume it's a number
if (preg_match("/[0#]/", $formatstr)) {
$xf['type'] = 'number';
if ($align=='') { $xf['align']='right'; }
}
else {
$xf['type'] = 'other';
}
$xf['format'] = $formatstr;
$xf['code'] = $indexCode;
}
}
$this->xfRecords[] = $xf;
break;
case SPREADSHEET_EXCEL_READER_TYPE_NINETEENFOUR:
$this->nineteenFour = (ord($data[$pos+4]) == 1);
break;
case SPREADSHEET_EXCEL_READER_TYPE_BOUNDSHEET:
$rec_offset = $this->_GetInt4d($data, $pos+4);
$rec_typeFlag = ord($data[$pos+8]);
$rec_visibilityFlag = ord($data[$pos+9]);
$rec_length = ord($data[$pos+10]);
if ($version == SPREADSHEET_EXCEL_READER_BIFF8){
$chartype = ord($data[$pos+11]);
if ($chartype == 0){
$rec_name = substr($data, $pos+12, $rec_length);
} else {
$rec_name = $this->_encodeUTF16(substr($data, $pos+12, $rec_length*2));
}
}elseif ($version == SPREADSHEET_EXCEL_READER_BIFF7){
$rec_name = substr($data, $pos+11, $rec_length);
}
$this->boundsheets[] = array('name'=>$rec_name,'offset'=>$rec_offset);
break;
}
$pos += $length + 4;
$code = ord($data[$pos]) | ord($data[$pos+1])<<8;
$length = ord($data[$pos+2]) | ord($data[$pos+3])<<8;
}
foreach ($this->boundsheets as $key=>$val){
$this->sn = $key;
$this->_parsesheet($val['offset']);
}
return true;
}
/**
* Parse a worksheet
*/
function _parsesheet($spos) {
$cont = true;
$data = $this->data;
// read BOF
$code = ord($data[$spos]) | ord($data[$spos+1])<<8;
$length = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$version = ord($data[$spos + 4]) | ord($data[$spos + 5])<<8;
$substreamType = ord($data[$spos + 6]) | ord($data[$spos + 7])<<8;
if (($version != SPREADSHEET_EXCEL_READER_BIFF8) && ($version != SPREADSHEET_EXCEL_READER_BIFF7)) {
return -1;
}
if ($substreamType != SPREADSHEET_EXCEL_READER_WORKSHEET){
return -2;
}
$spos += $length + 4;
while($cont) {
$lowcode = ord($data[$spos]);
if ($lowcode == SPREADSHEET_EXCEL_READER_TYPE_EOF) break;
$code = $lowcode | ord($data[$spos+1])<<8;
$length = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$spos += 4;
$this->sheets[$this->sn]['maxrow'] = $this->_rowoffset - 1;
$this->sheets[$this->sn]['maxcol'] = $this->_coloffset - 1;
unset($this->rectype);
switch ($code) {
case SPREADSHEET_EXCEL_READER_TYPE_DIMENSION:
if (!isset($this->numRows)) {
if (($length == 10) || ($version == SPREADSHEET_EXCEL_READER_BIFF7)){
$this->sheets[$this->sn]['numRows'] = ord($data[$spos+2]) | ord($data[$spos+3]) << 8;
$this->sheets[$this->sn]['numCols'] = ord($data[$spos+6]) | ord($data[$spos+7]) << 8;
} else {
$this->sheets[$this->sn]['numRows'] = ord($data[$spos+4]) | ord($data[$spos+5]) << 8;
$this->sheets[$this->sn]['numCols'] = ord($data[$spos+10]) | ord($data[$spos+11]) << 8;
}
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_MERGEDCELLS:
$cellRanges = ord($data[$spos]) | ord($data[$spos+1])<<8;
for ($i = 0; $i < $cellRanges; $i++) {
$fr = ord($data[$spos + 8*$i + 2]) | ord($data[$spos + 8*$i + 3])<<8;
$lr = ord($data[$spos + 8*$i + 4]) | ord($data[$spos + 8*$i + 5])<<8;
$fc = ord($data[$spos + 8*$i + 6]) | ord($data[$spos + 8*$i + 7])<<8;
$lc = ord($data[$spos + 8*$i + 8]) | ord($data[$spos + 8*$i + 9])<<8;
if ($lr - $fr > 0) {
$this->sheets[$this->sn]['cellsInfo'][$fr+1][$fc+1]['rowspan'] = $lr - $fr + 1;
}
if ($lc - $fc > 0) {
$this->sheets[$this->sn]['cellsInfo'][$fr+1][$fc+1]['colspan'] = $lc - $fc + 1;
}
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_RK:
case SPREADSHEET_EXCEL_READER_TYPE_RK2:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$column = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$rknum = $this->_GetInt4d($data, $spos + 6);
$numValue = $this->_GetIEEE754($rknum);
$info = $this->_getCellDetails($spos,$numValue,$column);
$this->addcell($row, $column, $info['string'],$info);
break;
case SPREADSHEET_EXCEL_READER_TYPE_LABELSST:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$column = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$xfindex = ord($data[$spos+4]) | ord($data[$spos+5])<<8;
$index = $this->_GetInt4d($data, $spos + 6);
$this->addcell($row, $column, $this->sst[$index], array('xfIndex'=>$xfindex) );
break;
case SPREADSHEET_EXCEL_READER_TYPE_MULRK:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$colFirst = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$colLast = ord($data[$spos + $length - 2]) | ord($data[$spos + $length - 1])<<8;
$columns = $colLast - $colFirst + 1;
$tmppos = $spos+4;
for ($i = 0; $i < $columns; $i++) {
$numValue = $this->_GetIEEE754($this->_GetInt4d($data, $tmppos + 2));
$info = $this->_getCellDetails($tmppos-4,$numValue,$colFirst + $i + 1);
$tmppos += 6;
$this->addcell($row, $colFirst + $i, $info['string'], $info);
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_NUMBER:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$column = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$tmp = unpack("ddouble", substr($data, $spos + 6, 8)); // It machine machine dependent
if ($this->isDate($spos)) {
$numValue = $tmp['double'];
}
else {
$numValue = $this->createNumber($spos);
}
$info = $this->_getCellDetails($spos,$numValue,$column);
$this->addcell($row, $column, $info['string'], $info);
break;
case SPREADSHEET_EXCEL_READER_TYPE_FORMULA:
case SPREADSHEET_EXCEL_READER_TYPE_FORMULA2:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$column = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
if ((ord($data[$spos+6])==0) && (ord($data[$spos+12])==255) && (ord($data[$spos+13])==255)) {
//String formula. Result follows in a STRING record
// This row/col are stored to be referenced in that record
// http://code.google.com/p/php-excel-reader/issues/detail?id=4
$previousRow = $row;
$previousCol = $column;
} elseif ((ord($data[$spos+6])==1) && (ord($data[$spos+12])==255) && (ord($data[$spos+13])==255)) {
//Boolean formula. Result is in +2; 0=false,1=true
// http://code.google.com/p/php-excel-reader/issues/detail?id=4
if (ord($this->data[$spos+8])==1) {
$this->addcell($row, $column, "TRUE");
} else {
$this->addcell($row, $column, "FALSE");
}
} elseif ((ord($data[$spos+6])==2) && (ord($data[$spos+12])==255) && (ord($data[$spos+13])==255)) {
//Error formula. Error code is in +2;
} elseif ((ord($data[$spos+6])==3) && (ord($data[$spos+12])==255) && (ord($data[$spos+13])==255)) {
//Formula result is a null string.
$this->addcell($row, $column, '');
} else {
// result is a number, so first 14 bytes are just like a _NUMBER record
$tmp = unpack("ddouble", substr($data, $spos + 6, 8)); // It machine machine dependent
if ($this->isDate($spos)) {
$numValue = $tmp['double'];
}
else {
$numValue = $this->createNumber($spos);
}
$info = $this->_getCellDetails($spos,$numValue,$column);
$this->addcell($row, $column, $info['string'], $info);
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_BOOLERR:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$column = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$string = ord($data[$spos+6]);
$this->addcell($row, $column, $string);
break;
case SPREADSHEET_EXCEL_READER_TYPE_STRING:
// http://code.google.com/p/php-excel-reader/issues/detail?id=4
if ($version == SPREADSHEET_EXCEL_READER_BIFF8){
// Unicode 16 string, like an SST record
$xpos = $spos;
$numChars =ord($data[$xpos]) | (ord($data[$xpos+1]) << 8);
$xpos += 2;
$optionFlags =ord($data[$xpos]);
$xpos++;
$asciiEncoding = (($optionFlags &0x01) == 0) ;
$extendedString = (($optionFlags & 0x04) != 0);
// See if string contains formatting information
$richString = (($optionFlags & 0x08) != 0);
if ($richString) {
// Read in the crun
$formattingRuns =ord($data[$xpos]) | (ord($data[$xpos+1]) << 8);
$xpos += 2;
}
if ($extendedString) {
// Read in cchExtRst
$extendedRunLength =$this->_GetInt4d($this->data, $xpos);
$xpos += 4;
}
$len = ($asciiEncoding)?$numChars : $numChars*2;
$retstr =substr($data, $xpos, $len);
$xpos += $len;
$retstr = ($asciiEncoding)? $retstr : $this->_encodeUTF16($retstr);
}
elseif ($version == SPREADSHEET_EXCEL_READER_BIFF7){
// Simple byte string
$xpos = $spos;
$numChars =ord($data[$xpos]) | (ord($data[$xpos+1]) << 8);
$xpos += 2;
$retstr =substr($data, $xpos, $numChars);
}
$this->addcell($previousRow, $previousCol, $retstr);
break;
case SPREADSHEET_EXCEL_READER_TYPE_ROW:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$rowInfo = ord($data[$spos + 6]) | ((ord($data[$spos+7]) << 8) & 0x7FFF);
if (($rowInfo & 0x8000) > 0) {
$rowHeight = -1;
} else {
$rowHeight = $rowInfo & 0x7FFF;
}
$rowHidden = (ord($data[$spos + 12]) & 0x20) >> 5;
$this->rowInfo[$this->sn][$row+1] = Array('height' => $rowHeight / 20, 'hidden'=>$rowHidden );
break;
case SPREADSHEET_EXCEL_READER_TYPE_DBCELL:
break;
case SPREADSHEET_EXCEL_READER_TYPE_MULBLANK:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$column = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$cols = ($length / 2) - 3;
for ($c = 0; $c < $cols; $c++) {
$xfindex = ord($data[$spos + 4 + ($c* 2)]) | ord($data[$spos + 5 + ($c* 2)])<<8;
$this->addcell($row, $column + $c, "", array('xfIndex'=>$xfindex));
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_LABEL:
$row = ord($data[$spos]) | ord($data[$spos+1])<<8;
$column = ord($data[$spos+2]) | ord($data[$spos+3])<<8;
$this->addcell($row, $column, substr($data, $spos + 8, ord($data[$spos + 6]) | ord($data[$spos + 7])<<8));
break;
case SPREADSHEET_EXCEL_READER_TYPE_EOF:
$cont = false;
break;
case SPREADSHEET_EXCEL_READER_TYPE_HYPER:
// Only handle hyperlinks to a URL
$row = ord($this->data[$spos]) | ord($this->data[$spos+1])<<8;
$row2 = ord($this->data[$spos+2]) | ord($this->data[$spos+3])<<8;
$column = ord($this->data[$spos+4]) | ord($this->data[$spos+5])<<8;
$column2 = ord($this->data[$spos+6]) | ord($this->data[$spos+7])<<8;
$linkdata = Array();
$flags = ord($this->data[$spos + 28]);
$udesc = "";
$ulink = "";
$uloc = 32;
$linkdata['flags'] = $flags;
if (($flags & 1) > 0 ) { // is a type we understand
// is there a description ?
if (($flags & 0x14) == 0x14 ) { // has a description
$uloc += 4;
$descLen = ord($this->data[$spos + 32]) | ord($this->data[$spos + 33]) << 8;
$udesc = substr($this->data, $spos + $uloc, $descLen* 2);
$uloc += 2* $descLen;
}
$ulink = $this->read16bitstring($this->data, $spos + $uloc + 20);
if ($udesc == "") {
$udesc = $ulink;
}
}
$linkdata['desc'] = $udesc;
$linkdata['link'] = $this->_encodeUTF16($ulink);
for ($r=$row; $r<=$row2; $r++) {
for ($c=$column; $c<=$column2; $c++) {
$this->sheets[$this->sn]['cellsInfo'][$r+1][$c+1]['hyperlink'] = $linkdata;
}
}
break;
case SPREADSHEET_EXCEL_READER_TYPE_DEFCOLWIDTH:
$this->defaultColWidth = ord($data[$spos+4]) | ord($data[$spos+5]) << 8;
break;
case SPREADSHEET_EXCEL_READER_TYPE_STANDARDWIDTH:
$this->standardColWidth = ord($data[$spos+4]) | ord($data[$spos+5]) << 8;
break;
case SPREADSHEET_EXCEL_READER_TYPE_COLINFO:
$colfrom = ord($data[$spos+0]) | ord($data[$spos+1]) << 8;
$colto = ord($data[$spos+2]) | ord($data[$spos+3]) << 8;
$cw = ord($data[$spos+4]) | ord($data[$spos+5]) << 8;
$cxf = ord($data[$spos+6]) | ord($data[$spos+7]) << 8;
$co = ord($data[$spos+8]);
for ($coli = $colfrom; $coli <= $colto; $coli++) {
$this->colInfo[$this->sn][$coli+1] = Array('width' => $cw, 'xf' => $cxf, 'hidden' => ($co & 0x01), 'collapsed' => ($co & 0x1000) >> 12);
}
break;
default:
break;
}
$spos += $length;
}
if (!isset($this->sheets[$this->sn]['numRows']))
$this->sheets[$this->sn]['numRows'] = $this->sheets[$this->sn]['maxrow'];
if (!isset($this->sheets[$this->sn]['numCols']))
$this->sheets[$this->sn]['numCols'] = $this->sheets[$this->sn]['maxcol'];
}
function isDate($spos) {
$xfindex = ord($this->data[$spos+4]) | ord($this->data[$spos+5]) << 8;
return ($this->xfRecords[$xfindex]['type'] == 'date');
}
// Get the details for a particular cell
function _getCellDetails($spos,$numValue,$column) {
$xfindex = ord($this->data[$spos+4]) | ord($this->data[$spos+5]) << 8;
$xfrecord = $this->xfRecords[$xfindex];
$type = $xfrecord['type'];
$format = $xfrecord['format'];
$formatIndex = $xfrecord['formatIndex'];
$fontIndex = $xfrecord['fontIndex'];
$formatColor = "";
$rectype = '';
$string = '';
$raw = '';
if (isset($this->_columnsFormat[$column + 1])){
$format = $this->_columnsFormat[$column + 1];
}
if ($type == 'date') {
// See http://groups.google.com/group/php-excel-reader-discuss/browse_frm/thread/9c3f9790d12d8e10/f2045c2369ac79de
$rectype = 'date';
// Convert numeric value into a date
$utcDays = floor($numValue - ($this->nineteenFour ? SPREADSHEET_EXCEL_READER_UTCOFFSETDAYS1904 : SPREADSHEET_EXCEL_READER_UTCOFFSETDAYS));
$utcValue = ($utcDays)* SPREADSHEET_EXCEL_READER_MSINADAY;
$dateinfo = gmgetdate($utcValue);
$raw = $numValue;
$fractionalDay = $numValue - floor($numValue) + .0000001; // The .0000001 is to fix for php/excel fractional diffs
$totalseconds = floor(SPREADSHEET_EXCEL_READER_MSINADAY* $fractionalDay);
$secs = $totalseconds % 60;
$totalseconds -= $secs;
$hours = floor($totalseconds / (60* 60));
$mins = floor($totalseconds / 60) % 60;
$string = date ($format, mktime($hours, $mins, $secs, $dateinfo["mon"], $dateinfo["mday"], $dateinfo["year"]));
} else if ($type == 'number') {
$rectype = 'number';
$formatted = $this->_format_value($format, $numValue, $formatIndex);
$string = $formatted['string'];
$formatColor = $formatted['formatColor'];
$raw = $numValue;
} else{
if ($format=="") {
$format = $this->_defaultFormat;
}
$rectype = 'unknown';
$formatted = $this->_format_value($format, $numValue, $formatIndex);
$string = $formatted['string'];
$formatColor = $formatted['formatColor'];
$raw = $numValue;
}
return array(
'string'=>$string,
'raw'=>$raw,
'rectype'=>$rectype,
'format'=>$format,
'formatIndex'=>$formatIndex,
'fontIndex'=>$fontIndex,
'formatColor'=>$formatColor,
'xfIndex'=>$xfindex
);
}
function createNumber($spos) {
$rknumhigh = $this->_GetInt4d($this->data, $spos + 10);
$rknumlow = $this->_GetInt4d($this->data, $spos + 6);
$sign = ($rknumhigh & 0x80000000) >> 31;
$exp = ($rknumhigh & 0x7ff00000) >> 20;
$mantissa = (0x100000 | ($rknumhigh & 0x000fffff));
$mantissalow1 = ($rknumlow & 0x80000000) >> 31;
$mantissalow2 = ($rknumlow & 0x7fffffff);
$value = $mantissa / pow( 2 , (20- ($exp - 1023)));
if ($mantissalow1 != 0) $value += 1 / pow (2 , (21 - ($exp - 1023)));
$value += $mantissalow2 / pow (2 , (52 - ($exp - 1023)));
if ($sign) {$value = -1* $value;}
return $value;
}
function addcell($row, $col, $string, $info=null) {
$this->sheets[$this->sn]['maxrow'] = max($this->sheets[$this->sn]['maxrow'], $row + $this->_rowoffset);
$this->sheets[$this->sn]['maxcol'] = max($this->sheets[$this->sn]['maxcol'], $col + $this->_coloffset);
$this->sheets[$this->sn]['cells'][$row + $this->_rowoffset][$col + $this->_coloffset] = $string;
if ($this->store_extended_info && $info) {
foreach ($info as $key=>$val) {
$this->sheets[$this->sn]['cellsInfo'][$row + $this->_rowoffset][$col + $this->_coloffset][$key] = $val;
}
}
}
function _GetIEEE754($rknum) {
if (($rknum & 0x02) != 0) {
$value = $rknum >> 2;
} else {
//mmp
// I got my info on IEEE754 encoding from
// http://research.microsoft.com/~hollasch/cgindex/coding/ieeefloat.html
// The RK format calls for using only the most significant 30 bits of the
// 64 bit floating point value. The other 34 bits are assumed to be 0
// So, we use the upper 30 bits of $rknum as follows...
$sign = ($rknum & 0x80000000) >> 31;
$exp = ($rknum & 0x7ff00000) >> 20;
$mantissa = (0x100000 | ($rknum & 0x000ffffc));
$value = $mantissa / pow( 2 , (20- ($exp - 1023)));
if ($sign) {
$value = -1* $value;
}
//end of changes by mmp
}
if (($rknum & 0x01) != 0) {
$value /= 100;
}
return $value;
}
function _encodeUTF16($string) {
$result = $string;
if ($this->_defaultEncoding){
switch ($this->_encoderFunction){
case 'iconv' : $result = @iconv('UTF-16LE', $this->_defaultEncoding, $string);
break;
case 'mb_convert_encoding' : $result = @mb_convert_encoding($string, $this->_defaultEncoding, 'UTF-16LE' );
break;
}
}
return $result;
}
function _GetInt4d($data, $pos) {
$value = ord($data[$pos]) | (ord($data[$pos+1]) << 8) | (ord($data[$pos+2]) << 16) | (ord($data[$pos+3]) << 24);
if ($value>=4294967294) {
$value=-2;
}
return $value;
}
}
?>
PK >\oV!k !k helpers/file/import/xml.phpnu W+A _getXmlFields() == true) {
$jinput = JFactory::getApplication()->input;
$jinput->set('columnheaders', $this->_xml_fields);
return true;
}
else {
/**
* Note: clearing the value when no fields found causes a problem when processing
* XML files with the 'use headers' option set because the function is called after the
* end of file has been reached. When an empty set of fields is returned, the program
* fails to terminate properly and loops endlessly through the import continuation page.
*/
return false;
}
}
/**
* Get the file position
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return int current position in the file
* @since 3.0
*/
public function getFilePos() {
return $this->linepointer;
}
/**
* Set the file position
*
* To be able to set the file position correctly, the XML reader needs to be at the start of the file
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param int $pos the position to move to
* @return int current position in the file
* @since 3.0
*/
public function setFilePos($pos) {
// Close the XML reader
$this->closeFile(false);
// Open a new XML reader
$this->processFile();
// Move the pointer to the specified position
return $this->_skipXmlRecords($pos);
}
/**
* Close the file
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return
* @since 3.0
*/
public function closeFile($removefolder=true) {
$this->data->close();
$this->_xml_cache = false;
$this->_closed = true;
parent::closeFile($removefolder);
}
/**
* Read the next line in the file
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array with the line of data read | false if data cannot be read
* @since 3.0
*/
public function readNextLine() {
$jinput = JFactory::getApplication()->input;
$csvilog = $jinput->get('csvilog', null, null);
$csvilog->addDebug('Reading next line');
if ($this->_getXmlData() == true) {
$this->linepointer++;
return $this->_xml_data;
}
else {
return false;
}
}
/**
* Process the file to import
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return
* @since 3.0
*/
public function processFile() {
$jinput = JFactory::getApplication()->input;
$csvilog = $jinput->get('csvilog', null, null);
// Use a streaming approach to support large files
$this->data = new XMLReader();
$this->fp = $this->data->open($this->filename);
if ($this->fp == false) {
$csvilog->AddStats('incorrect', JText::_('COM_CSVI_ERROR_XML_READING_FILE'));
return false;
}
// File opened successfully - Prepare the arrays needed to read data from the XML file
$this->fp = $this->_getXmlSchema();
if ($this->fp == false) {
$this->closeFile();
$csvilog->AddStats('incorrect', JText::_('COM_CSVI_XML_INVALID_TABLE'));
return false;
}
return true;
}
/**
* Searches an XML file for a series of nodes representing a complete record. The name(s) of the nodes representing records
* must be supplied (via the 'xml_nodes_map' field) but the list of fields can be supplied in three ways:
* 1 No fields defined in the 'xml_nodes_map' field and the 'use headers' option set to 'off'. Despite the 'use headers' being set
* to 'off', the field nodes in the first record are used to configure the whole run. This requires that all fields be present in
* every record, the node names match the field names and that all of the 'field' nodes are one level below the 'record' node in
* the XML hierarchy.
* 2 No fields defined in the 'xml_nodes_map' field and the 'use headers' option set to 'on'. This causes the 'headers to be read
* from the XML nodes for every record. This is suitable if not all of the fields are populated for every record in the XML file
* but is slower than option 1.
* 3 Fields defined in the 'xml_nodes_map' field. The 'use headers' option is ignored. This gives the flexibility to set up a map
* so that an XML hierarchy can be modelled, node names to be mapped to field names and also allows fields to be extracted from
* node attributes.
*
* It is possible that the current node when the function is called is the start of the next record.
* Valid 'record' node names are held in the $this->_xml_records array.
* Valid 'field' node and attribute names are held in the $this->_xml_schema array.
* The arrays $this->_xml_data and $this->_xml_fields are populated with data and field names respectively. To prevent SQL errors
* when writing the data to the table, only fields found in the array $this->_supported_fields are included. This function could be
* extended.
*
* @copyright
* @author doorknob
* @todo
* @see
* @access private
* @param
* @return bool - indicates whether the array $this->_xml_data was populated.
* @since 3.0
*/
private function _getXmlFieldsAndData() {
$jinput = JFactory::getApplication()->input;
$csvilog = $jinput->get('csvilog', null, null);
// Initialise the arrays that will receive the data and field list from the next record
$this->_xml_data = array();
$this->_xml_fields = array();
// Validation checking disabled because a DTD (or RELAX NG) schema is required and is usually not available
$validate_xml = false;
if( $validate_xml == true ) {
// Note: When the DTD is external, this must be done before the first read()
$this->data->setParserProperty(XMLReader::VALIDATE, true);
}
/**
* Search for the start of the next record but only read the file if the next record is not already current
* Must be the correct element type (start of node) and in the list of valid record nodes.
* Note: Self closing notes are accepted because they may contain data in the attributes
*/
if (!$this->_isXmlRecordNode($this->data->nodeType, $this->data->name)) {
// Either no current node or the current node is not the start of a record
while( $this->data->read() ) {
if( $validate_xml == true ) {
$this->fp = $this->data->isValid();
if( $this->fp == false ){
$this->closeFile();
$csvilog->AddStats('incorrect', JText::_('COM_CSVI_XML_FILE_INVALID'));
return false;
}
}
if( $this->_isXmlRecordNode( $this->data->nodeType, $this->data->name ) ) {
// Record node found
break;
}
}
}
// Check whether a record was found
if ($this->_isXmlRecordNode($this->data->nodeType, $this->data->name)) {
// Start of a valid record
$self_closing = $this->data->isEmptyElement;
$record_name = strtolower($this->data->name);
// Extract any attributes, if defined
if (isset($this->_xml_schema[$record_name]['attrs']) ) {
// Record level attributes are defined as fields
while( $this->data->moveToNextAttribute() ) {
// Check each attribute to determine whether the value should be extracted
if( isset($this->_xml_schema[$record_name]['attrs'][strtolower($this->data->name)]) ) {
$this->_xml_fields[] = $this->_xml_schema[$record_name]['attrs'][strtolower($this->data->name)];
$this->_xml_data[] = $this->data->value;
}
}
}
if ($self_closing == false) {
// Now search for group/field nodes
$xml_path = array();
/**
* Note: $this->data->next() is used rather than $this->data->read() when the readInnerXML() function has been used
* to extract the contents of a node. Because the contect extracted may contain other nodes,$this->data->next() is
* used to skip to the closing node.
* readInnerXML() is used in case the data contains html tags but it doesn't move the file pointer.
* Subsequently using $this->data->next() forces the pointer to skip past any HTML tags that have already been read.
* The value does not need to be maintained between between calls to this function because readInnerXML() is
* never used immediately before exiting the function.
*/
$use_read = true;
while ($use_read == true ? $this->data->read() : $this->data->next() ) {
// XML error detection
if ($validate_xml == true) {
$this->fp = $this->data->isValid();
if( $this->fp == false ){
$this->closeFile();
$csvilog->AddStats('incorrect', JText::_('COM_CSVI_XML_FILE_INVALID'));
return false;
}
}
// Default to a reading a single node in the next loop
$use_read = true;
// Searching for a group or field node
if ($this->data->nodeType == XMLReader::ELEMENT) {
// New node found
$self_closing = $this->data->isEmptyElement;
if (empty($this->_xml_schema)) {
// Template fields being used to control the data extraction
if ($this->_isXmlFieldNameValid($this->data->name)) {
// Node corresponding to a supported field found - extract the data
$this->_xml_fields[] = strtolower($this->data->name);
$xmldata = $this->data->readInnerXML();
$xmldata = str_ireplace(array(''), '', $xmldata);
$this->_xml_data[] = $xmldata;
// At the next read, skip to the next node at this level
$use_read = false;
}
else {
// A node has been found that does not match the available fields list
$csvilog->addDebug(JText::sprintf('COM_CSVI_XML_NODE_NOT_MATCH_FIELD', $this->data->name));
}
}
else {
// The user defined map is being used to control the data extraction
$current_path = $this->_getXmlNodePath($xml_path, strtolower($this->data->name));
// The node may have attributes that map to fields, regardless of the type of node
if (isset($this->_xml_schema[$record_name]['nodes'][$current_path]['attrs'])) {
// Node has attributes that are defined as fields
while ($this->data->moveToNextAttribute()) {
// Check each attribute to determine whether the value should be extracted
if( isset($this->_xml_schema[$record_name]['nodes'][$current_path]['attrs'][strtolower($this->data->name)]) ) {
$this->_xml_fields[] = $this->_xml_schema[$record_name]['nodes'][$current_path]['attrs'][strtolower($this->data->name)];
$xmldata = $this->data->readInnerXML();
$xmldata = str_ireplace(array(''), '', $xmldata);
$this->_xml_data[] = $xmldata;
// At the next read, skip to the next node at this level
$use_read = false;
}
}
}
if (empty($this->_xml_schema[$record_name]['nodes'][$current_path]['field'])) {
// This node is not defined as a field
if (isset($this->_xml_schema[$record_name]['nodes'][$current_path]['field'])) {
// This is a 'group' node - add it to the path unless it is self closing
if( $self_closing == false ) {
$this->_pushXmlNodePath( $xml_path, $this->data->name );
}
}
else {
// Unknown node found - The file is not mapped correctly and the run cannot continue
$csvilog->addDebug(JText::sprintf('COM_CSVI_XML_UNMAPPED_NODE', $this->data->name));
$csvilog->AddStats('incorrect', JText::sprintf('COM_CSVI_XML_UNDEFINED_NODE', $this->data->name));
return false;
}
}
else {
// This node is defined as a field - extract the data
$this->_xml_fields[] = $this->_xml_schema[$record_name]['nodes'][$current_path]['field'];
$xmldata = $this->data->readInnerXML();
$xmldata = str_ireplace(array(''), '', $xmldata);
$this->_xml_data[] = $xmldata;
// At the next read, skip to the next node at this level
$use_read = false;
}
}
}
else if ($this->data->nodeType == XMLReader::END_ELEMENT) {
// Searching for the end of the record or the end of a group node
if( strtolower($this->data->name) == $record_name ) {
// End of record found
break;
} else {
// End of node - Only valid case is the end of a group node
if( !empty($this->_xml_schema) && !empty($xml_path) && $xml_path[count($xml_path)-1] == strtolower($this->data->name) ) {
// End of group node found - pop it from the stack
$this->_popXmlNodePath( $xml_path );
} else {
// Unknown end of node - error
$csvilog->addDebug(JText::sprintf('COM_CSVI_XML_UNEXPECTED_END_NODE', $this->data->name));
}
}
}
}
}
}
$this->_xml_cache = !empty($this->_xml_data);
return $this->_xml_cache;
}
/**
* Returns a boolean value to indicate whether the specified node is a new XML record type.
*
* @copyright
* @author doorknob
* @todo
* @see
* @access private
* @param
* @return bool true if record is a node | false if record is not a node
* @since 3.0
*/
private function _isXmlRecordNode( $node_type, $node_name ) {
return ($node_type == XMLReader::ELEMENT && in_array(strtolower($node_name), $this->_xml_records));
}
/**
* Returns the list of data values found in the most recently read XML record. If the getXmlFields() function has been
* called since the last call of this function, the cache may be full and the data can be returned without reading the file.
*
* @return array - The list of data values from the most recently read XML record (empty when end of file is reached)
*/
private function _getXmlData() {
$return = !empty($this->_xml_data);
if( $this->_xml_cache == false ) {
$return = $this->_getXmlFieldsAndData();
}
// Indicate that a new record will be required the next time this function is called
$this->_xml_cache = false;
return $return;
}
/**
* Returns the list of fields found in the most recently read XML record. If the cache is empty, the next record is
* read from the input file to ensure that the headers correspond with the data (in XML files, each record can have a
* different set of 'headers'). Checking the status of the cache indicator also prevents records being skipped if this
* function is called multiple times between records.
*
* @return array - The list of fields from the most recently read XML record (empty when end of file is reached)
*/
private function _getXmlFields() {
$return = !empty($this->_xml_fields);
if ($this->_xml_cache == false) {
$return = $this->_getXmlFieldsAndData();
}
return $return;
}
/**
* Skips through the XML file until the the required number 'record' nodes has been read
* Assume the file pointer is at the start of file
*
* @copyright
* @author doorknob, RolandD
* @todo
* @see
* @access private
* @param
* @return boolean true if records are skipped | false if records are not skipped
* @since 3.0
*/
private function _skipXmlRecords($pos) {
$jinput = JFactory::getApplication()->input;
$csvilog = $jinput->get('csvilog', null, null);
// Check whether the pointer needs to be moved
if ($pos <= 0) return true;
$count = 0;
/**
* Note: When the DTD is external, this must be done before the first read()
* Validation not used because invalid files generate php errors when validated
*/
$validate_xml = false;
if( $validate_xml == true ) {
$this->data->setParserProperty(XMLReader::VALIDATE, true);
}
while ($this->data->read()) {
// Validation checking disabled because a DTD (or RELAX NG) schema is required and is usually not available
if( $validate_xml == true ) {
$this->fp = $this->data->isValid();
if( $this->fp == false ){
$this->closeFile();
$csvilog->AddStats('incorrect', JText::_('COM_CSVI_XML_INVALID'));
return false;
}
}
// Searching for a valid record - must be the start of a node and in the list of valid record types
if( !$this->_isXmlRecordNode( $this->data->nodeType, $this->data->name ) ) {
// Not found - try again
continue;
}
else {
// Found a valid record
while( $this->_isXmlRecordNode( $this->data->nodeType, $this->data->name ) ) {
// Node is a valid record type - skip to the end of the record
$this->data->next();
$count++;
if( $count == $pos) {
return true;
}
}
}
}
// Hit EOF before skipping the required number of records
return false;
}
/**
* Build an array of xml nodes from the user defined map:
*
* $this->_xml_schema[record_node]['attrs'][attr_name] => field name
* $this->_xml_schema[record_node]['nodes'][field_node_path]['attrs'][attr_name] => field name
* $this->_xml_schema[record_node]['nodes'][field_node_path]['field'] => field name
* Note: field_node_path is a comma separated list of node names below the record node
*
* @return bool returns true if all fine else false
*/
private function _getXmlSchema() {
$jinput = JFactory::getApplication()->input;
$template = $jinput->get('template', null, null);
$xml_nodes_map = $template->get('xml_nodes_map', 'general', '', 'string', JREQUEST_ALLOWRAW);
$xml_node_path = array(); // Single copy of this array that is passed by reference only
$current_record = ''; // Single copy of this variable that is passed by reference only
return $this->_getXmlNode($xml_nodes_map, $current_record, $xml_node_path);
}
/**
* Process a node from the XML Map
* It is permitted for the XML to just define one or more tables without fields (when the 'use headers' option is used)
*
* Note: Calls itself recursively to process a tree
*
* @return bool returns true if all fine else false
*/
private function _getXmlNode($node_content, $current_record, $xml_path) {
$jinput = JFactory::getApplication()->input;
$csvilog = $jinput->get('csvilog', null, null);
$current_node = '';
$xml_schema = new XMLReader();
/**
* Add a wrapper to make the XML viable and ensure that self closing tags contain a space before the '/>'
* The XML may still be invalid but that's down to what the user entered
*/
$node_content = "\n".$node_content.'';
$xml_schema->XML($node_content);
// XML file to table map is valid XML - construct the arrays used in file extraction
$use_read = true;
// The XML could only be validated against a DTD if the syntax of the XML used for the map is made more complex
$validate_xml = false;
if ($validate_xml == true) {
// Note: When the DTD is external, the property value must be set before the first read()
$xml_schema->setParserProperty(XMLReader::VALIDATE, true);
}
while($use_read ? $xml_schema->read() : $xml_schema->next()) {
// Validation checking disabled because a DTD (or RELAX NG) schema is required.
if ($validate_xml == true) {
if( $xml_schema->isValid() == false ){
$xml_schema->close();
return false;
}
}
// Default to a reading a single node in the next loop
$use_read = true;
// Ignore any node associated with the root
if ($xml_schema->name == 'da_root' ) {
continue;
}
// Process start elements
if ($xml_schema->nodeType == XMLReader::ELEMENT) {
$self_closing = $xml_schema->isEmptyElement;
// Ready to add a new node - but only if the last node was closed
if (!empty($current_node)) {
$csvilog->AddStats('incorrect', JText::sprintf('COM_CSVI_XML_NODE_UNCLOSED', $current_node));
return false;
}
// A new node was found - Check whether this is a new record type
if (empty($current_record)) {
// New record type
// Check for a self-closing node
$self_closing = $xml_schema->isEmptyElement;
$current_record = strtolower($xml_schema->name);
$this->_xml_records[] = strtolower($current_record);
// Store any attributes
while ($xml_schema->moveToNextAttribute()) {
// Note1: $xml_schema->hasValue only indicates whether the element can have a value, not whether it does
// Note2: empty($xml_schema->value) always return true, regardless of the actual value
$value = $xml_schema->value;
if( !empty($value) ) {
if( $this->_isXmlFieldNameValid($xml_schema->value) ) {
$this->_xml_schema[$current_record]['attrs'][strtolower($xml_schema->name)] = trim($xml_schema->value);
}
else {
$csvilog->AddStats('incorrect', JText::sprintf('COM_CSVI_XML_FILE_MAP_NO_REFERENCE', $xml_schema->value));
$xml_schema->close();
return false;
}
}
}
// Check for a self-closing node
if( $self_closing == true ) {
$current_record = '';
}
}
else {
// New field type
$current_node = strtolower($xml_schema->name);
$current_path = $this->_getXmlNodePath($xml_path, $current_node);
// Store any attributes
while ($xml_schema->moveToNextAttribute()) {
// Note1: $xml_schema->hasValue only indicates whether the element can have a value, not whether it does
// Note2: empty($xml_schema->value) always return true, regardless of the actual value
$value = $xml_schema->value;
if( !empty($value) ) {
if( $this->_isXmlFieldNameValid( $xml_schema->value ) ) {
$this->_xml_schema[$current_record]['nodes'][$current_path]['attrs'][strtolower($xml_schema->name)] = trim($xml_schema->value);
}
else {
$csvilog->AddStats('incorrect', JText::_('COM_CSVI_XML_FILE_MAP_NO_REFERENCE', $xml_schema->value));
$xml_schema->close();
return false;
}
}
}
$sub_node_content = $xml_schema->readInnerXML();
// Check whether there are any lower level nodes
if (strstr($sub_node_content, '<') === false) {
/**
* Content has no embedded nodes - Assume a field name
* Note: An empty node gives a blank field name which indicates an unwanted node
* that is being mapped to prevent errors when processing the file
*/
if ($this->_isXmlFieldNameValid($sub_node_content)) {
$this->_xml_schema[$current_record]['nodes'][$current_path]['field'] = trim($sub_node_content);
}
else {
$this->_xml_schema[$current_record]['nodes'][$current_path]['field'] = '';
}
}
else {
// There are embedded nodes - go down another level
// Indicate a 'group' node by storing an empty field name
$this->_xml_schema[$current_record]['nodes'][$current_path]['field'] = '';
// Push the node name to the path stack
$this->_pushXmlNodePath($xml_path, $current_node);
if( $this->_getXmlNode($sub_node_content, $current_record, $xml_path) == false ) {
$xml_schema->close();
return false;
}
// At the next read, skip to the next node at this level
$use_read = false;
// Close the node
$current_node = '';
// Pop the last item off the path stack
$this->_popXmlNodePath($xml_path);
}
// Check for a self-closing node
if ($self_closing == true) {
$current_node = '';
}
}
}
// Process end elements
else if( $xml_schema->nodeType == XMLReader::END_ELEMENT ) {
// End of node found
// Check for end of record
if( !empty($current_record) && strtolower($xml_schema->name) == $current_record ) {
// End of record detected
$current_record = '';
} // Check that the expected node was closed
else if( !empty($current_node) && strtolower($xml_schema->name) == $current_node ) {
// End of current node detected
$current_node = '';
}
}
}
$xml_schema->close();
// Node not terminated
if (!empty($current_node) ) {
$csvilog->AddStats('incorrect', JText::sprintf('COM_CSVI_XML_NODE_NOT_CLOSED', $current_node));
return false;
}
if (empty($this->_xml_records) ) {
$csvilog->AddStats('incorrect', JText::_('COM_CSVI_XML_NO_RECORDS_DEFINED'));
return false;
}
return true;
}
/**
* Create a string to represent the XML node hierarchy from the 'record' node to a 'field' node
*
* @return string
*/
private function _getXmlNodePath($xml_path, $node_name) {
return implode(',', $xml_path).(empty($xml_path) ? '' : ',').$node_name;
}
/**
* Determines whether a specific field name is included in the list of
*
* @return boolean
*/
private function _isXmlFieldNameValid($field_name) {
return in_array(strtolower($field_name), $this->_supported_fields);
}
/**
* Add a new entry to the XML node stack
*/
private function _pushXmlNodePath($xml_path, $node_name) {
/**
* Note: The array index is made explicit because when a new row is added, the index value
* assigned is one greater than that previously assigned. When enries are being continuously
* added and removed, the automatically assigned index number becomes unpredictable
*/
$xml_path[count($xml_path)] = strtolower($node_name);
}
/**
* Remove the last entry from the XML node stack
*
* @copyright
* @author doorknob
* @todo
* @see
* @access private
* @param
* @return
* @since 3.0
*/
private function _popXmlNodePath($xml_path) {
if( count($xml_path) > 1 ) {
unset($xml_path[count($xml_path)-1]);
} else {
$xml_path = array();
}
}
/**
* Sets the file pointer back to beginning
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return
* @since 3.0
*/
public function rewind() {
$this->linepointer = 0;
}
/**
* Advances the file pointer 1 forward
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param bool $preview True if called from the preview
* @return
* @since 3.0
*/
public function next($preview=false) {
if (!$preview) $discard = $this->readNextLine();
}
}
?>
PK >\ helpers/file/import/index.htmlnu W+A PK >\FXʖ " helpers/file/import/ods_reader.phpnu W+A
*/
public function read($filename) {
$this->_file = $filename;
list($this->_xml_parser, $fp) = $this->new_xml_parser($this->_file);
if (!$this->_xml_parser) {
die("could not open XML input");
}
$data = '';
while (!feof($fp)) {
$data .= fread($fp, 4096);
}
fclose($fp);
if (!xml_parse($this->_xml_parser, $data, true)) {
die(sprintf("XML error: %s at line %d\n",
xml_error_string(xml_get_error_code($this->_xml_parser)),
xml_get_current_line_number($this->_xml_parser)));
}
xml_parser_free($this->_xml_parser);
$this->cols = count($this->_data[1]);
$this->rows = count($this->_data);
return true;
}
/**
* Handle the opening element
*/
private function startElement($parser, $tagname, $attribs) {
switch ($tagname) {
case 'TABLE:TABLE-ROW':
$this->_linecount++;
break;
case 'TABLE:TABLE-CELL':
$styles = array_keys($attribs);
if (empty($styles)) {
$this->_data[$this->_linecount]['options']['repeat'] = 1;
}
else {
foreach ($styles as $stylekey => $style) {
switch ($style) {
case 'TABLE:NUMBER-COLUMNS-REPEATED':
$this->_data[$this->_linecount]['options']['repeat'] = $attribs[$style];
break;
case 'OFFICE:VALUE-TYPE':
$this->_data[$this->_linecount]['options']['type'] = $attribs[$style];
break;
}
}
}
break;
case 'TEXT:P':
$this->_data[$this->_linecount];
break;
}
}
/**
* Handle the closing element
*/
private function endElement($parser, $name) {
if (array_key_exists($this->_linecount, $this->_data)) {
if (!array_key_exists('data', $this->_data[$this->_linecount])
&& array_key_exists('options', $this->_data[$this->_linecount])) {
foreach ($this->_data[$this->_linecount]['options'] as $option => $value) {
switch ($option) {
case 'type':
break;
case 'repeat':
for ($r=0; $r < $value; $r++) {
$this->_data[$this->_linecount][] = '';
}
break;
}
}
}
else unset($this->_data[$this->_linecount]['data']);
if (array_key_exists('options', $this->_data[$this->_linecount])) unset($this->_data[$this->_linecount]['options']);
}
}
/**
* Handle the data
*
* @todo parse
*/
private function characterData($parser, $data) {
foreach ($this->_data[$this->_linecount]['options'] as $option => $value) {
switch ($option) {
case 'type':
break;
case 'repeat':
for ($r=1; $r < $value; $r++) {
$this->_data[$this->_linecount][] = $data;
}
break;
}
}
$this->_data[$this->_linecount][] = $data;
unset($this->_data[$this->_linecount]['options']);
$this->_data[$this->_linecount]['data'] = true;
}
private function new_xml_parser($file) {
$this->_xml_parser = xml_parser_create("UTF-8");
xml_parser_set_option($this->_xml_parser, XML_OPTION_CASE_FOLDING, 1);
xml_set_object($this->_xml_parser, $this);
xml_set_element_handler($this->_xml_parser, "startElement", "endElement");
xml_set_character_data_handler($this->_xml_parser, "characterData");
$fp = fopen($file, "rb");
if (!$fp) return false;
else return array($this->_xml_parser, $fp);
}
}
?>
PK >\) helpers/file/import/.htaccessnu W+A
Order allow,deny
Deny from all
PK >\ helpers/file/index.htmlnu W+A PK >\ helpers/file/export/index.htmlnu W+A PK >\ # helpers/file/export/html/index.htmlnu W+A PK >\) " helpers/file/export/html/.htaccessnu W+A
Order allow,deny
Deny from all
PK >\F{E
( helpers/file/export/html/csvimproved.phpnu W+A contents = ''.chr(10);
$this->contents .= '
';
$topmenu = preg_replace("/(\s\s+)/", ' ', $topmenu);
?>
PK >\) helpers/.htaccessnu W+A
Order allow,deny
Deny from all
PK >\fU,
,
! helpers/com_virtuemart_config.phpnu W+A _vmcfgfile = JPATH_ADMINISTRATOR.'/components/com_virtuemart/virtuemart.cfg';
$this->_parse();
// Load the version information
if (file_exists(JPATH_ADMINISTRATOR.'/components/com_virtuemart/version.php')) {
require_once JPATH_ADMINISTRATOR.'/components/com_virtuemart/version.php';
$this->_vmcfg['release'] = vmVersion::$RELEASE;
}
else $this->_vncfg['release'] = null;
}
/**
* Finds a given VirtueMart setting
*
* @copyright
* @author RolandD
* @todo
* @see
* @access
* @param string $setting The config value to find
* @return mixed value if found | false if not found
* @since 4.0
*/
public function get($setting) {
if (isset($this->_vmcfg[$setting])) {
return $this->_vmcfg[$setting];
}
else return false;
}
/**
* Parse the VirtueMart configuration
*
* Here is a PHP 5.3 requirement and work-around
*
* @copyright
* @author RolandD
* @todo
* @see http://www.php.net/parse_ini_string
* @access private
* @param
* @return
* @since 4.0
*/
private function _parse() {
// Parse the configuration file
if (file_exists($this->_vmcfgfile)) {
$config = file_get_contents($this->_vmcfgfile);
// Do some cleanup
$config = str_replace('#', ';', $config);
// Check if the command is available
if (!function_exists('parse_ini_string') ) {
$array = array();
$lines = explode("\n", $config );
foreach( $lines as $line ) {
$statement = preg_match(
"/^(?!;)(?P[\w+\.\-]+?)\s*=\s*(?P.+?)\s*$/", $line, $match );
if( $statement) {
$key = $match[ 'key' ];
$value = $match[ 'value' ];
# Remove quote
if( preg_match( "/^\".*\"$/", $value ) || preg_match( "/^'.*'$/", $value ) ) {
$value = mb_substr( $value, 1, mb_strlen( $value ) - 2 );
}
$array[ $key ] = $value;
}
}
$this->_vmcfg = $array;
}
else $this->_vmcfg = parse_ini_string($config);
}
}
}PK >\D(5& & helpers/csvidb.phpnu W+A _database = JFactory::getDbo();
}
public function setQuery($sql, $offset = 0, $limit = 0) {
$this->_database->setQuery($sql, $offset, $limit);
if (!$this->cur = $this->_database->query()) {
$this->_error = $this->_database->getErrorMsg();
}
}
public function getRow() {
if (!is_object($this->cur)) $array = mysql_fetch_object($this->cur);
else $array = $this->cur->fetch_object();
if ($array) {
return $array;
}
else {
if (!is_object($this->cur)) mysql_free_result( $this->cur );
else $this->cur->free_result();
return false;
}
}
public function getErrorMsg() {
return $this->_error;
}
public function getNumRows() {
return $this->_database->getNumRows($this->cur);
}
public function getQuery() {
return $this->_database->getQuery();
}
}PK >\0* * helpers/template.phpnu W+A _settings = $data;
}
}
/**
* Find a value in the template
*
* @copyright
* @author RolandD
* @todo JRequest::_cleanVar
* @see JFilterInput
* @access public
* @param string $name the name of the parameter to find
* @param string $group the group in which to find the parameter
* @param string $default the default value to use when not found
* @param string $filter the filter to apply
* @param int $mask Filter bit mask. 1=no trim: If this flag is cleared and the
* input is a string, the string will have leading and trailing whitespace
* trimmed. 2=allow_raw: If set, no more filtering is performed, higher bits
* are ignored. 4=allow_html: HTML is allowed, but passed through a safe
* HTML filter first. If set, no more filtering is performed. If no bits
* other than the 1 bit is set, a strict filter is applied.
* @param bool $special if the field should require special processing
* @return mixed the value found
* @since 3.0
*/
public function get($name, $group='', $default = '', $filter=null, $mask=0, $special=true) {
// Set the initial value
$value = '';
// Find the value
if (empty($group)) {
if (array_key_exists($name, $this->_settings)) $value = $this->_settings[$name];
}
else {
if (array_key_exists($group, $this->_settings)) {
if (array_key_exists($name, $this->_settings[$group])) {
$value = $this->_settings[$group][$name];
}
}
}
// Return the found value
if (is_array($value) && empty($value)) $value = $default;
else if ('' === $value) $value = $default;
// Special processing
if ($special) {
switch ($name) {
case 'language':
case 'target_language':
$value = strtolower(str_replace('-', '_', $value));
break;
case 'field_delimiter':
if (strtolower($value) == 't') $value = "\t";
break;
}
}
// Clean up and return
if (is_null($filter) && $mask == 0) return $value;
else return JRequest::_cleanVar($value, $mask, $filter);
}
/**
* Set a value in the template
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param string $name the name of the parameter to find
* @param string $group the group in which to find the parameter
* @param string $value the value to set
* @return void
* @since 3.0
*/
public function set($name, $group='', $value = '') {
// Set the value
if (empty($group)) {
$this->_settings[$name] = $value;
}
else {
$this->_settings[$group][$name] = $value;
}
}
/**
* Load a template
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param int $id the ID of the template to load
* @return
* @since 4.0
*/
public function load($id) {
if ($id > 0) {
// Load the data
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select($db->quoteName('settings').', '.$db->quoteName('name'));
$query->from($db->quoteName('#__csvi_template_settings'));
$query->where($db->quoteName('id').' = '.$db->quote($id));
$db->setQuery($query);
$data = $db->loadObject();
// Fill the settings
$settings = json_decode($data->settings, true);
if (!is_array($settings)) $settings = array();
$this->_settings = $settings;
// Set the name
if (!empty($data)) $this->setName($data->name);
}
}
/**
* Set the template name
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param string $name the name of the template
* @return
* @since 4.0
*/
public function setName($name) {
// Set the template name
$this->_name = $name;
}
/**
* Get the name of the template
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return
* @since 4.0
*/
public function getName() {
return $this->_name;
}
/**
* Return all settings
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return
* @since 4.0
*/
public function getSettings() {
return $this->_settings;
}
}
?>
PK >\ helpers/com_akeebasubs.phpnu W+A input;
$this->_csvidata = $jinput->get('csvi_data', null, null);
}
/**
* Get a user ID
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param string $username the username to find the ID for
* @return int the ID of the user
* @since 4.0
*/
public function getUser($username) {
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select($db->quoteName('id'));
$query->from($db->quoteName('#__users'));
$query->where($db->quoteName('username').' = '.$db->quote($username));
$db->setQuery($query);
return $db->loadResult();
}
/**
* Get a subscription ID
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param string $subscription_title the name(s) of the subscription
* @return
* @since 4.0
*/
public function getSubscription($subscription_title) {
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select($db->quoteName('akeebasubs_level_id'));
$query->from($db->quoteName('#__akeebasubs_levels'));
$titles = explode(',', $subscription_title);
$newtitles = array();
foreach ($titles as $title) {
$newtitles[] = $db->quote(trim($title));
}
if (!empty($newtitles)) {
$query->where($db->quoteName('title').' IN ('.implode(',', $newtitles).')');
$db->setQuery($query);
$ids = $db->loadColumn();
if (!empty($ids)) {
return implode(',', $ids);
}
}
else return '';
}
/**
* Get the list of order users
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array of objects
* @since 4.0
*/
public function getOrderUser() {
$jinput = JFactory::getApplication()->input;
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$filter = $jinput->get('filter');
$query->select($db->quoteName('user_id'));
$query->select($db->quoteName('name', 'user_name'));
$query->from($db->quoteName('#__akeebasubs_subscriptions', 's'));
$query->leftJoin($db->quoteName('#__users', 'u').' ON '.$db->quoteName('s').'.'.$db->quoteName('user_id').' = '.$db->quoteName('u').'.'.$db->quoteName('id'));
$query->where($db->quoteName('u').'.'.$db->quoteName('name').' LIKE '.$db->quote('%'.$filter.'%'));
$query->order($db->quoteName('name'));
$query->group($db->quoteName('user_id'));
$db->setQuery($query, 0, 10);
$users = $db->loadObjectList();
if ($users) return $users;
else return array();
}
/**
* Get the list of order products
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array of objects
* @since 4.0
*/
public function getOrderProduct() {
$jinput = JFactory::getApplication()->input;
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$filter = $jinput->get('filter');
$query->select($db->quoteName('s').'.'.$db->quoteName('akeebasubs_level_id', 'product_sku'));
$query->select($db->quoteName('title', 'product_name'));
$query->from($db->quoteName('#__akeebasubs_subscriptions', 's'));
$query->leftJoin($db->quoteName('#__akeebasubs_levels', 'l').' ON '.$db->quoteName('s').'.'.$db->quoteName('akeebasubs_level_id').' = '.$db->quoteName('l').'.'.$db->quoteName('akeebasubs_level_id'));
$query->where($db->quoteName('l').'.'.$db->quoteName('title').' LIKE '.$db->quote('%'.$filter.'%'));
$query->order($db->quoteName('title'));
$query->group($db->quoteName('s').'.'.$db->quoteName('akeebasubs_level_id'));
$db->setQuery($query, 0, 10);
$products = $db->loadObjectList();
if ($products) return $products;
else return array();
}
}
?>PK >\-, -, helpers/cron.phpnu W+A initialise();
// Load the language file
$language = JFactory::getLanguage();
$language->load('com_csvi', JPATH_BASE.'/administrator');
// Load the plugin system
JPluginHelper::importPlugin('system');
// trigger the onAfterInitialise events
$mainframe->triggerEvent('onAfterInitialise');
// Run the cron job
$csvicron->runCron();
/**
* Handles all cron requests
*
* @package CSVI
*/
class CsviCron {
/** @var $basepath string the base of the installation */
var $basepath = '';
/** @var $_variables array of user set variables to override template settins */
var $_variables = '';
/**
* Initialise the cron
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return
* @since 3.5
*/
public function __construct() {
// Merge the default translation with the current translation
$jlang = JFactory::getLanguage();
$jlang->load('com_csvi', JPATH_ADMINISTRATOR, 'en-GB', true);
$jlang->load('com_csvi', JPATH_ADMINISTRATOR, $jlang->getDefault(), true);
$jlang->load('com_csvi', JPATH_ADMINISTRATOR, null, true);
// Get the domain name
require_once(JPATH_COMPONENT_ADMINISTRATOR.'/helpers/settings.php');
$settings = new CsviSettings();
$domainname = $settings->get('site.hostname', 'www.example.com');
// Check for the trailing slash at the domain name
if (substr($domainname, -1) == '/') $domainname = substr($domainname, 0, -1);
// Load the posted variables
$this->CollectVariables();
// Fill the server global with necessary information
$_SERVER['REQUEST_METHOD'] = 'post';
$_SERVER['HTTP_HOST'] = $domainname;
$_SERVER['REMOTE_ADDR'] = gethostbyname('localhost');
$_SERVER['SERVER_PORT'] = '';
$_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0) Gecko/20100101 Firefox/4.0';
$_SERVER['REQUEST_URI'] = '/administrator/index.php';
$_SERVER['QUERY_STRING'] = '';
$_SERVER['PHP_SELF'] = '/index.php';
$_SERVER['SCRIPT_NAME'] = '/index.php';
if (isset($this->_variables['adminpw'])) {
$_SERVER['QUERY_STRING'] = $this->_variables['adminpw'];
$_SERVER['REQUEST_URI'] .= '?'.$this->_variables['adminpw'];
}
}
/**
* Initialise some settings
*/
public function runCron() {
// Buffer all output to prevent conflicts with external software
ob_start();
// Start the clock
$starttime = time();
$db = JFactory::getDbo();
// First check if we deal with a valid user
if ($this->Login()) {
// Set some global values
$jinput = JFactory::getApplication()->input;
$jfilter = new JFilterInput();
// Get the parameters
require_once(JPATH_COMPONENT_ADMINISTRATOR.'/helpers/settings.php');
$settings = new CsviSettings();
// Check if we are running cron mode and set some necessary variables
$_SERVER['SERVER_ADDR'] = $_SERVER['HTTP_HOST'] = $settings->get('site.hostname');
$_SERVER['SCRIPT_NAME'] = '/index.php';
$_SERVER['REQUEST_URI'] = '/';
$_SERVER['PHP_SELF'] = '/index.php';
// Get the task to do
if (isset($this->_variables['task'])) $task = $jfilter->clean($this->_variables['task']);
else $task = '';
// Perform the requested task
switch ($task) {
case 'maintenance':
$jinput->set('task', 'maintenance.'.$this->_variables['operation']);
// Fire CSVI VirtueMart
$this->ExecuteJob();
break;
default:
// Second check if any template is set to process
if (array_key_exists('template_id', $this->_variables)) $template_id = $jfilter->clean($this->_variables['template_id'], 'int');
else $template_id = false;
if (array_key_exists('template_name', $this->_variables)) $template_name = $jfilter->clean($this->_variables['template_name']);
else $template_name = false;
if ($template_id || $template_name) {
// There is a template_id or template name, get some details to streamline processing
$where = empty($template_id) ? 'name='.$db->q($template_name) : 'id='.$template_id;
// There is a template name, get some details to streamline processing
$q = "SELECT id AS template_id, name AS template_name, settings
FROM #__csvi_template_settings
WHERE ".$where;
$db->setQuery($q);
$row = $db->loadObject();
if (is_object($row)) {
echo JText::sprintf('COM_CSVI_PROCESSING_STARTED', date('jS F Y, g:i a'))."\n";
echo JText::sprintf('COM_CSVI_TEMPLATE', $row->template_name)."\n";
// Set the template ID
$jinput->set('select_template', $row->template_id);
$jinput->set('template_id', $row->template_id);
$jinput->set('template_name', $row->template_name);
// Set the settings
if (array_key_exists('jform', $this->_variables)) $settings = CsviHelper::arrayExtend(json_decode($row->settings, true), $this->_variables['jform']);
else $settings = json_decode($row->settings, true);
// Set some export settings
if ($settings['options']['action'] == 'export') {
// Export settings
$jinput->set('task', 'exportfile.process');
// Set export to
if ($settings['general']['exportto'] == 'todownload') $settings['general']['exportto'] = 'tofile';
}
// Set some import settings
else if ($settings['options']['action'] == 'import') {
// Import settings
$jinput->set('task', 'importfile.doimport');
// Turn off preview
$settings['general']['show_preview'] = 0;
}
// Set a view so VirtueMart is happy
$jinput->set('view', 'products');
// Post the settings
$jinput->set('jform', $settings, 'post');
// Fire CSVI
$this->ExecuteJob();
}
else {
if ($template_name) echo JText::sprintf('COM_CSVI_NO_TEMPLATE_FOUND', $template_name)."\n";
else if ($template_id) echo JText::sprintf('COM_CSVI_NO_TEMPLATE_FOUND', $template_id)."\n";
}
}
else echo JText::_('COM_CSVI_NO_TEMPLATE_SPECIFIED')."\n";
break;
}
}
else {
$error = JError::getError();
echo $error->message."\n";
}
echo sprintf(JText::_('COM_CSVI_PROCESSING_FINISHED'), date('jS F Y, g:i a'))."\n";
$duration = time() - $starttime;
if ($duration < 60) echo sprintf(JText::_('COM_CSVI_PROCESSING_SECONDS'), $duration)."\n";
else echo sprintf(JText::_('COM_CSVI_PROCESSING_MINUTES'), (number_format($duration/60, 2)))."\n";
// Done, lets log the user out
$this->UserLogout();
// Display any generated messages
$messages = ob_get_contents();
@ob_end_clean();
echo $messages;
}
/**
* Collect the variables
*
* Running from the command line, the variables are stored in $argc and $argv.
* Here we put them in $_REQUEST so that they are available to the script
*/
private function CollectVariables() {
$arguments = false;
// Take the argument values and put them in $_REQUEST
if (isset($_SERVER['argv'])) {
foreach ($_SERVER['argv'] as $key => $argument) {
if ($key > 0) {
list($name, $value) = explode("=", $argument);
if (strpos($value, '|')) $value = explode('|', $value);
if (strpos($name, ':')) {
$names = explode(':', $name);
if (count($names) == 3 && $names[0] == 'jform') {
$this->_variables['jform'][$names[1]][$names[2]] = $value;
}
}
else $this->_variables[$name] = $value;
}
}
$arguments = true;
}
// Get the _GET
if (!empty($_GET)) {
$this->_storeVariables($_GET);
$arguments = true;
}
// Get the _POST
if (!empty($_POST)) {
$this->_storeVariables($_POST);
$arguments = true;
}
if (!$arguments) echo JText::_('COM_CSVI_NO_ARGUMENTS')."\n";
}
/**
* Store the variables
*
* @copyright
* @author RolandD
* @todo
* @see
* @access private
* @param $vars array the variables to store
* @return
* @since 3.2
*/
private function _storeVariables($vars) {
foreach ($vars as $name => $value) {
if (!empty($value)) {
if (strpos($value, '|')) $value = explode('|', $value);
if (substr($name, 0, 5) == 'jform') {
if (strpos($name, ':')) $names = explode(':', $name);
else $names = explode('_', $name);
if (count($names) == 3 && $names[0] == 'jform') {
$this->_variables['jform'][$names[1]][$names[2]] = $value;
}
}
else $this->_variables[$name] = $value;
}
}
}
/**
* Check if the user exists
*/
private function Login() {
$mainframe = JFactory::getApplication();
$jfilter = new JFilterInput();
$credentials['username'] = $jfilter->clean($this->_variables['username'], 'username');
$credentials['password'] = $jfilter->clean($this->_variables['passwd']);
$result = $mainframe->login($credentials, array('entry_url' => ''));
if (!JError::isError($result)) {
return true;
}
else return false;
}
/**
* Process the requested job
*/
function ExecuteJob() {
$jinput = JFactory::getApplication()->input;
$jinput->set('cron', true);
require(JPATH_COMPONENT_ADMINISTRATOR.'/csvi.php');
}
/**
* Log the user out
*/
private function UserLogout() {
global $mainframe;
ob_start();
$error = $mainframe->logout();
if(JError::isError($error)) {
ob_end_clean();
echo JText::_('COM_CSVI_PROBLEM_LOGOUT_USER')."\n";
}
else {
ob_end_clean();
echo JText::_('COM_CSVI_USER_LOGGED_OUT')."\n";
}
}
}
?>PK >\w w helpers/csvisef.phpnu W+A _domainname = CsviHelper::getDomainName();
}
/**
* Create a SEF URL
*
* @copyright
* @author RolandD
* @todo Change exportsef to template
* @see
* @access private
* @param string $url The url to change to SEF
* @return string the new url
* @since 3.0
*/
public function getSiteRoute($url) {
$jinput = JFactory::getApplication()->input;
$template = $jinput->get('template', null, null);
$csvilog = $jinput->get('csvilog', null, null);
$parsed_url = null;
// Check which SEF component is installed
if (empty($this->_sef)) {
if ($template->get('exportsef', 'product', false)) {
// Joomla SEF
if (JPluginHelper::isEnabled('system', 'sef')) $this->_sef = 'joomla';
// sh404SEF check
if (JPluginHelper::isEnabled('system', 'shsef')) $this->_sef = 'sh404sef';
// JoomSEF check
if (JPluginHelper::isEnabled('system', 'joomsef')) $this->_sef = 'joomsef';
// AceSEF check
if (JPluginHelper::isEnabled('system', 'acesef')) $this->_sef = 'acesef';
// There is no SEF enabled
if (empty($this->_sef)) $this->_sef = 'nosef';
}
else $this->_sef = 'nosef';
}
switch ($this->_sef) {
case 'sh404sef':
$parsed_url = $this->_sh404Sef($url);
break;
case 'joomsef':
$parsed_url = $this->_joomSef($url);
break;
case 'joomla':
$parsed_url = $this->_joomlaSef($url);
break;
case 'acesef':
$parsed_url = $this->_aceSef($url);
break;
case 'nosef':
default:
// No SEF router found, returning regular URL
return $this->_domainname.JRoute::_($url);
break;
}
// Clean up the parsed SEF URL
if (!empty($parsed_url)) {
// Clean up the parsed SEF URL
if (substr($parsed_url, 4) == 'http') return $parsed_url;
else {
// Check for administrator in the domain
$adminpos = strpos($parsed_url,'/administrator/');
if ($adminpos !== false) $parsed_url = substr($parsed_url,$adminpos+15);
// Check if we have a domain name in the URL
if (!empty($this->_domainname)) {
$check_domain = str_replace('https', 'http', $this->_domainname);
$domain = strpos($parsed_url, $check_domain);
if ($domain === false) {
if (substr($parsed_url, 0, 1) == '/') $parsed_url = $this->_domainname.$parsed_url;
else $parsed_url = $this->_domainname.'/'.$parsed_url;
}
return $parsed_url;
}
else {
$csvilog->addDebug(JText::_('COM_CSVI_NO_DOMAINNAME_SET'));
return $url;
}
}
}
}
/**
* Create sh404SEF URLs
*
* @copyright
* @author RolandD
* @todo
* @see http://dev.anything-digital.com/sh404SEF/
* @see getSiteRoute()
* @access private
* @param string $url the original URL to turn into SEF
* @return string SEF URL
* @since 3.0
*/
private function _sh404Sef($url) {
// Load sh404SEF
require_once(JPATH_ADMINISTRATOR.'/components/com_sh404sef/sh404sef.class.php');
$sefConfig = shRouter::shGetConfig();
// Turn off any security and flooding setting
$sefConfig->shSecEnableSecurity = 0;
$sefConfig->shSecActivateAntiFlood = 0;
// Require some necessary files
require_once(JPATH_ROOT.'/components/com_sh404sef/shCache.php');
require_once(JPATH_ROOT.'/components/com_sh404sef/shSec.php');
// Start the sh404sef Router
if (class_exists('shRouter')) $shRouter = new shRouter();
else return $this->_domainname.'/'.$url;
// Force the domain name
$GLOBALS['shConfigLiveSite'] = $this->_domainname;
// Initialize sh404sef
include_once(JPATH_ROOT.'/components/com_sh404sef/shInit.php');
// Build the SEF URL
$uri = $shRouter->build($url);
$sefurl = $uri->toString();
if (strpos($sefurl, 'http://') === false) {
$sefurl = str_ireplace('http:/', 'http://', $sefurl);
}
return $sefurl;
}
/**
* Create JoomSEF URLs
*
* @copyright
* @author RolandD
* @todo
* @see http://www.artio.net/joomla-extensions/joomsef
* @see _getSiteRoute()
* @access private
* @param string $url the original URL to turn into SEF
* @return string SEF URL
* @since 3.0
*/
private function _joomSef($url) {
// Include Joomla files
jimport('joomla.application.router');
require_once(JPATH_ROOT.'/includes/application.php');
// Include JoomSEF
require_once(JPATH_ROOT.'/components/com_sef/sef.router.php');
$shRouter = new JRouterJoomSef();
// Build the SEF URL
$uri = $shRouter->build($url);
return $uri->toString();
}
/**
* Create Joomla SEF URLs
*
* @copyright
* @author RolandD
* @todo
* @see http://www.joomla.org/
* @see _getSiteRoute()
* @access private
* @param string $url the original URL to turn into SEF
* @return string SEF URL
* @since 3.0
*/
private function _joomlaSef($url) {
// Load Joomla core files for SEF
jimport('joomla.application.router');
require_once(JPATH_ROOT.'/includes/application.php');
require_once(JPATH_ROOT.'/includes/router.php');
$router = new JRouterSite(array('mode' => 1));
$uri = $router->build($url);
return $uri->toString();
}
/**
* Create aceSEF URLs
*
* @copyright
* @author RolandD
* @todo
* @see http://www.joomace.net/joomla-extensions/acesef
* @see _getSiteRoute()
* @access private
* @param string $url the original URL to turn into SEF
* @return string SEF URL
* @since 3.0
*/
private function _aceSef($url) {
jimport('joomla.application.router');
require_once(JPATH_ROOT.'/includes/application.php');
require_once(JPATH_ADMINISTRATOR.'/components/com_acesef/library/router.php');
require_once(JPATH_ADMINISTRATOR.'/components/com_acesef/library/loader.php');
$router = new JRouterAcesef();
$uri = $router->build($url);
return $uri->toString();
}
}
?>
PK >\c(, (, helpers/csvi.phpnu W+A $v) {
if( is_array($v) ) {
if( !isset($a[$k]) ) {
$a[$k] = $v;
} else {
$a[$k] = self::arrayExtend($a[$k], $v);
}
} else {
$a[$k] = $v;
}
}
return $a;
}
/**
* Recursive array diff
*
* @copyright
* @author Amund, RolandD
* @todo
* @see http://www.php.net/manual/en/function.array-merge.php#91756
* @access private
* @param array $aArray1 The array to update
* @param array $aArray2 The array with new values
* @return array with all new values
* @since 3.0
*/
public function recurseArrayDiff($aArray1, $aArray2) {
$aReturn = array();
if (is_array($aArray1) && is_array($aArray2)) {
foreach ($aArray1 as $mKey => $mValue) {
if (array_key_exists($mKey, $aArray2)) {
if (is_array($mValue)) {
$aRecursiveDiff = self::recurseArrayDiff($mValue, $aArray2[$mKey]);
if (count($aRecursiveDiff)) { $aReturn[$mKey] = $aRecursiveDiff; }
}
else {
if ($mValue != $aArray2[$mKey]) $aReturn[$mKey] = $mValue;
}
}
else {
$aReturn[$mKey] = $mValue;
}
}
}
return $aReturn;
}
/**
* Perform replacement on a value
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param int $id the id of the replacement rule
* @param string $value the text to replace
* @return string the replaced text
* @since 3.0
*/
public function replaceValue($id, $value) {
static $replacements;
if ($id > 0) {
if (!isset($this->replacements[$id])) {
// Get the replace details
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select($db->quoteName('findtext'));
$query->select($db->quoteName('replacetext'));
$query->select($db->quoteName('method'));
$query->from('#__csvi_replacements');
$query->where('id = '.$db->Quote($id));
$db->setQuery($query);
$replace = $db->loadObject();
$this->replacements[$id] = $replace;
}
else {
$replace = $this->replacements[$id];
}
// Perform the replacement
if (empty($replace)) return $value;
else {
switch ($replace->method) {
case 'text':
$fieldvalue = str_ireplace($replace->findtext, $replace->replacetext, $value);
break;
case 'regex':
$fieldvalue = preg_replace($replace->findtext, $replace->replacetext, $value);
break;
}
}
return $fieldvalue;
}
else return $value;
}
/**
* Get the list of custom tables
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array list of order item product objects
* @since 3.0
*/
public function getCustomTables() {
$db = JFactory::getDbo();
$q = "SELECT component_table
FROM #__csvi_available_fields
WHERE core = 0
GROUP BY component_table";
$db->setQuery($q);
return $db->loadColumn();
}
/**
* Check whether a file referenced by a URL exists
*
* Note: The time taken to check a valid format url: 0.10 secs, regardless of whether the file exists
*
* @copyright
* @author doorknob, RolandD
* @todo
* @see
* @access public
* @param string $file The URL to be checked
* @return boolean true if file exists | false if file does not exist
* @since 2.17
*/
public function fileExistsRemote($file) {
// If it is an SSL file we cannot validate its existence
if (substr($file, 0, 5) == 'https') return true;
$jinput = JFactory::getApplication()->input;
$csvilog = $jinput->get('csvilog', null, null);
$url_parts = @parse_url($file);
$csvilog->addDebug('URL:'.$file);
if (!isset($url_parts['host']) || empty($url_parts['host'])) {
return false;
}
if (!isset($url_parts['path']) || empty($url_parts['path'])) {
$documentpath = '/';
}
else {
$documentpath = $url_parts['path'];
}
if (isset($url_parts['query']) && !empty($url_parts['query'])) {
$documentpath .= '?'.$url_parts['query'];
}
$host = $url_parts['host'];
if (!isset($url_parts['port']) || empty($url_parts['port'])) {
if ($url_parts['scheme'] == 'https') $port = '443';
else $port = '80';
}
else {
$port = $url_parts['port'];
}
if ($url_parts['scheme'] == 'https') {
$sslhost = 'ssl://'.$host;
}
else $sslhost = $host;
$errno = null;
$errstr = null;
$documentpath = str_replace(' ', '%20', $documentpath);
$socket = @fsockopen($sslhost, $port, $errno, $errstr, 30);
if ($socket) {
fwrite($socket, "HEAD $documentpath HTTP/1.1\r\nUser-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11\r\nHost: $host\r\n\r\n");
$http_response = fgets($socket, 25);
fclose($socket);
// Parse the result
$csvilog->addDebug('HTTP response:'.$http_response);
if (stripos($http_response, '200 OK') === false && stripos($http_response, '302 Found') === false) {
return false;
}
else return true;
}
return false;
}
/**
* Find the primary key of a given table
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param $table string the name of the table to find the primary key
* @return string the fieldname that is the primary key
* @since 3.0
*/
public function getPrimaryKey($tablename) {
$db = JFactory::getDbo();
$q = "SHOW KEYS FROM ".$db->quoteName('#__'.$tablename)."
WHERE ".$db->quoteName('Key_name')." = ".$db->quote('PRIMARY');
$db->setQuery($q);
$key = $db->loadObject();
if (!is_object($key)) return '';
else return $key->Column_name;
}
/**
* Get the domainname
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return string domain name
* @since 3.4
*/
public function getDomainName() {
$jinput = JFactory::getApplication()->input;
$settings = $jinput->get('settings', null, null);
// Get the domainname
$domainname = $settings->get('site.hostname');
// Check for the trailing slash at the domain name
if (substr($domainname, -1) == '/') $domainname = substr($domainname, 0, -1);
// Assign the domainname
return $domainname;
}
/**
* Get supported components
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array of supported components
* @since 4.0
*/
public function getComponents() {
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select('component AS value, component AS text');
$query->from($db->quoteName('#__csvi_template_types'));
$query->leftJoin('#__extensions ON #__csvi_template_types.component = #__extensions.element');
$query->where($db->quoteName('#__extensions.type').' = '.$db->Quote('component'));
$query->group('component');
$db->setQuery($query);
return $db->loadObjectList();
}
/**
* Get the buttons for the control panel
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return object with the button HTML data
* @since 3.0
*/
public function getButtons() {
// Get the Cpanel images
$cpanel_images = new stdClass();
$cpanel_images->process = $this->CpanelButton('csvi_process_48.png', 'index.php?option=com_csvi&view=process', 'COM_CSVI_PROCESS');
$cpanel_images->replacements = $this->CpanelButton('csvi_replace_48.png', 'index.php?option=com_csvi&view=replacements', 'COM_CSVI_REPLACEMENTS');
$cpanel_images->maintenance = $this->CpanelButton('csvi_maintenance_48.png', 'index.php?option=com_csvi&view=maintenance', 'COM_CSVI_MAINTENANCE');
$cpanel_images->help = $this->CpanelButton('csvi_help_48.png', 'http://www.csvimproved.com/csv-improved-documentation/', 'COM_CSVI_HELP');
$cpanel_images->about = $this->CpanelButton('csvi_about_48.png', 'index.php?option=com_csvi&view=about', 'COM_CSVI_ABOUT');
$cpanel_images->log = $this->CpanelButton('csvi_log_48.png', 'index.php?option=com_csvi&view=log', 'COM_CSVI_LOG');
$cpanel_images->availablefields = $this->CpanelButton('csvi_av_fields_48.png', 'index.php?option=com_csvi&view=availablefields', 'COM_CSVI_AVAILABLE_FIELDS');
$cpanel_images->settings = $this->CpanelButton('csvi_settings_48.png', 'index.php?option=com_csvi&view=settings', 'COM_CSVI_SETTINGS');
$cpanel_images->install = $this->CpanelButton('csvi_install_48.png', 'index.php?option=com_csvi&view=install', 'COM_CSVI_INSTALL');
return $cpanel_images;
}
/**
* Creates a button for the control panel
*
* @copyright
* @author RolandD
* @todo
* @see
* @access private
* @param string $image contains the name of the image
* @param string $link contains the target link for the image when clicked
* @param string $title contains the title of the button
* @return string returns a complete button for the control panel
* @since 3.0
*/
private function CpanelButton($image, $link, $title) {
if (substr($link, 0, 4) == "http") $attribs = ' target="_new"';
else $attribs = '';
$cpanelbutton = '
';
return $cpanelbutton;
}
/**
* Get a Yes/No dropdown list
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param string $name the name of the dropdown
* @param string $selected pre-selected entry
* @param string $attribs attributes to add to the dropdown
* @param string $idtag the id to give to the dropdown
* @return string that contains the dropdown with options
* @since 4.0
*/
public function getYesNo($name, $selected=null, $attribs=null, $idtag=null) {
$options = array();
$options[] = JHtml::_('select.option', '0', JText::_('COM_CSVI_NO'));
$options[] = JHtml::_('select.option', '1', JText::_('COM_CSVI_YES'));
return JHtml::_('select.genericlist', $options, $name, $attribs, 'value', 'text', $selected, $idtag);
}
}
?>
PK >\F]E helpers/com_redshop_config.phpnu W+A _redshopcfgfile = JPATH_ADMINISTRATOR.'/components/com_redshop/helpers/redshop.cfg.php';
$this->_redshopcfg = file($this->_redshopcfgfile);
}
/**
* Finds a given redSHOP setting
* @var string $setting The config value to find
* @return string the value of the config setting
*/
public function get($setting) {
$key = $this->array_find($setting, $this->_redshopcfg);
if ($key) {
$find_setting = explode('\', \'', $this->_redshopcfg[$key]);
return substr(trim($find_setting[1]), 0, -3);
}
else return false;
}
/**
* Searched the array for a partial value
* @return mixed Array key if found otherwise false
*/
private function array_find($needle, $haystack) {
foreach ($haystack as $key => $item) {
if (stripos($item, $needle) !== FALSE) {
return $key;
break;
}
}
// Nothing found return false
return false;
}
}
?>PK >\=!na a models/logdetails.phpnu W+A setState('filter.action', $app->getUserStateFromRequest($this->_context.'.filter.action', 'filter_action', false, 'word'));
$this->setState('filter.result', $app->getUserStateFromRequest($this->_context.'.filter.result', 'filter_result', false, 'word'));
// List state information.
// Controls the query ORDER BY
parent::populateState('d.line', 'asc');
}
/**
* Build an SQL query to load the list data.
*
* @copyright
* @author RolandD
* @todo
* @see
* @access protected
* @param
* @return object the query to execute
* @since 4.0
*/
protected function getListQuery() {
// Create a new query object.
$jinput = JFactory::getApplication()->input;
$db = $this->getDbo();
$query = $db->getQuery(true);
// Get the Run ID
$run_id = $jinput->get('run_id', 0, 'int');
// Select the required fields from the table.
$query->select('d.line, d.description, d.status, d.log_id, d.result');
$query->from('#__csvi_log_details AS d');
// Add all the filters
$filters = array();
if ($run_id) {
$query->leftJoin('#__csvi_logs AS l ON l.id = d.log_id');
$query->where('l.run_id = '.$run_id);
}
if ($this->getState('filter.action')) $filters[] = $db->quoteName('status').' = '.$db->Quote($this->getState('filter.action'));
if ($this->getState('filter.result')) $filters[] = $db->quoteName('result').' = '.$db->Quote($this->getState('filter.result'));
if (!empty($filters)) {
// Add the clauses to the query.
$query->where('('.implode(' AND ', $filters).')');
}
// Add the list ordering clause.
$orderCol = $this->state->get('list.ordering');
$orderDirn = $this->state->get('list.direction');
$query->order($db->getEscaped($orderCol.' '.$orderDirn));
return $query;
}
/**
* Get the actions available for the current log
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array of available actions
* @since 3.0
*/
public function getActions() {
$jinput = JFactory::getApplication()->input;
$db = JFactory::getDbo();
$run_id = $jinput->get('run_id', 0, 'int');
$q = "SELECT CONCAT('COM_CSVI_', UPPER(".$db->quoteName('status').")) AS ".$db->Quote('text').", ".$db->quoteName('status')." as ".$db->Quote('value')."
FROM ".$db->quoteName('#__csvi_log_details')."
WHERE log_id IN (SELECT id FROM #__csvi_logs WHERE run_id = ".$run_id.")
GROUP by ".$db->quoteName('value');
$db->setQuery($q);
$actions = $db->loadObjectList();
$showall = JHtml::_('select.option', '', JText::_('COM_CSVI_SELECT_ACTION'), 'value', 'text');
array_unshift($actions, $showall);
return JHtml::_('select.genericlist', $actions, 'filter_action', '', 'value', 'text', $jinput->get('filter_action'), false, true);
}
/**
* Get the results available for the current log
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array of available results
* @since 3.0
*/
public function getResults() {
$jinput = JFactory::getApplication()->input;
$db = JFactory::getDbo();
$run_id = $jinput->get('run_id', 0, 'int');
$q = "SELECT CONCAT('COM_CSVI_', UPPER(".$db->quoteName('result').")) AS ".$db->Quote('text').", ".$db->quoteName('result')." as ".$db->Quote('value')."
FROM ".$db->quoteName('#__csvi_log_details')."
WHERE log_id IN (SELECT id FROM #__csvi_logs WHERE run_id = ".$run_id.")
GROUP by ".$db->quoteName('result');
$db->setQuery($q);
$results = $db->loadObjectList();
$showall = JHtml::_('select.option', '', JText::_('COM_CSVI_SELECT_RESULT'), 'value', 'text');
array_unshift($results, $showall);
return JHtml::_('select.genericlist', $results, 'filter_result', '', 'value', 'text', $jinput->get('filter_result'), false, true);
}
}
?>PK >\<9( models/replacement.phpnu W+A loadForm($this->context, 'replacement', array('control' => 'jform', 'load_data' => $loadData));
if (empty($form)) return false;
return $form;
}
/**
* Method to get the data that should be injected in the form.
*
* @return mixed The data for the form.
* @since 1.6
*/
protected function loadFormData() {
// Check the session for previously entered form data.
$data = JFactory::getApplication()->getUserState('com_csvi.edit.replacement.data', array());
if (empty($data)) {
$data = $this->getItem();
}
return $data;
}
}
?>
PK >\ models/process.phpnu W+A input;
$jform = $jinput->get('jform', array(), 'array');
if (!isset($jform['options'])) $action = 'import';
else $action = $jform['options']['action'];
// Construct the super XML
$xml = '
';
// Load the form
$form = $this->loadForm($this->context, $xml, array('control' => 'jform', 'load_data' => $loadData));
if (empty($form)) return false;
return $form;
}
/**
* Method to get the data that should be injected in the form.
*
* @copyright
* @author RolandD
* @todo
* @see getForm()
* @access protected
* @param
* @return mixed The data for the form
* @since 4.0
*/
protected function loadFormData() {
$jinput = JFactory::getApplication()->input;
$data = $jinput->get('jform', array(), 'array');
return $data;
}
/**
* Load the option templates
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return
* @since 4.0
*/
public function getOptions() {
$jinput = JFactory::getApplication()->input;
$jform = $jinput->get('jform', array(), 'array');
$options = array();
if (!empty($jform) && isset($jform['options']) && isset($jform['options']['component']) && isset($jform['options']['operation'])) {
// Get the operation the user wants to perform
$component = $jform['options']['component'];
$operation = $jform['options']['operation'];
// Get the option templates needed for the operation
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select('options');
$query->from('#__csvi_template_types');
$query->where('template_type_name = '.$db->Quote($operation));
$query->where('component = '.$db->Quote($component));
$db->setQuery($query);
$result = $db->loadResult();
$options = explode(',', $result);
}
return $options;
}
/**
* Get the list of order statussen
*/
public function getOrderStatus() {
$db = JFactory::getDBO();
$q = "SELECT order_status_code, order_status_name
FROM #__virtuemart_orderstates
ORDER BY ordering";
$db->setQuery($q);
return $db->loadObjectList();
}
/**
* Get the list of order products
*/
public function getOrderCurrency() {
$db = JFactory::getDBO();
$q = "SELECT order_currency, currency_name
FROM #__vm_orders o, #__vm_currency c
WHERE o.order_currency = c.currency_code
GROUP BY currency_name
ORDER BY currency_name;";
$db->setQuery($q);
return $db->loadObjectList();
}
/**
* Get the list of exchange rate currencies
*/
public function getExchangeRateCurrency() {
$db = JFactory::getDBO();
$q = "SELECT #__csvi_currency.currency_code AS currency_code,
IF (#__vm_currency.currency_name IS NULL, #__csvi_currency.currency_code, #__vm_currency.currency_name) AS currency_name
FROM #__csvi_currency
LEFT JOIN #__vm_currency
on #__vm_currency.currency_code = #__csvi_currency.currency_code;";
$db->setQuery($q);
return $db->loadObjectList();
}
/**
* Check if there are any templates with fields
*/
public function getCountTemplateFields() {
$db = JFactory::getDBO();
$q = "SELECT field_template_id, COUNT(field_template_id) AS total
FROM #__csvi_template_fields
WHERE field_template_id in (
SELECT template_id
FROM #__csvi_templates
WHERE template_type
LIKE '%export')
GROUP BY field_template_id";
$db->setQuery($q);
$nrfields = $db->loadResultArray();
if ($db->getErrorNum() > 0) {
JError::raiseWarning(0, $db->getErrorMsg());
return false;
}
else {
/* Check if there are any templates with more than 0 fields */
foreach ($nrfields as $key => $nr) {
if ($nr > 0) return true;
}
}
}
/**
* Get a list of possible VM Item IDs
*/
public function getVmItemids() {
$db = JFactory::getDBO();
$q = "SELECT id AS value, name AS text
FROM #__menu
WHERE link LIKE '%com_virtuemart%'";
$db->setQuery($q);
return $db->loadObjectList();
}
/**
* Get the list of selected order item products
*
* @copyright
* @author RolandD
* @todo Do not use INFORMATION_SCHEMA
* @see
* @access public
* @param
* @return array list of order item product objects
* @since 3.0
*/
public function getJoomFishLanguages() {
$db = JFactory::getDBO();
$conf = JFactory::getConfig();
$q = "SELECT table_name FROM information_schema.tables WHERE table_schema = ".$db->Quote($conf->getValue('config.db'))." AND table_name = ".$db->Quote($conf->getValue('config.dbprefix').'languages');
$db->setQuery($q);
$total = $db->loadResult();
if (!empty($total)) {
$q = "SELECT ".$db->quoteName('name')." AS ".$db->quoteName('text').",
".$db->quoteName('id')." AS ".$db->quoteName('value')."
FROM #__languages
ORDER BY name";
$db->setQuery($q);
return $db->loadObjectList();
}
else return array();
}
/**
* Get a list of XML sites
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param string $type the type of files to find (XML or HTML)
* @return array list of XML sites
* @since 3.0
*/
public function getExportSites($type) {
jimport('joomla.filesystem.folder');
$files = array();
$path = JPATH_COMPONENT_ADMINISTRATOR.'/helpers/file/export/'.$type;
if (JFolder::exists($path)) {
$files = JFolder::files($path, '.php');
if (!empty($files)) {
foreach ($files as $fkey => $file) {
$files[$fkey] = basename($file, '.php');
}
}
else $files = array();
}
return $files;
}
/**
* Get a dropdown list of replacements
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param
* @return array of replacements
* @since 4.0
*/
public function getReplacements() {
$replacements = array();
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select('id AS value, name AS text');
$query->from('#__csvi_replacements');
$db->setQuery($query);
$replacements = $db->loadObjectList();
// Add a make choice option
$option = new StdClass();
$option->value = '';
$option->text = JText::_('COM_CSVI_NOT_USED');
if (!empty($replacements)) array_unshift($replacements, $option);
else $replacements[] = $option;
return $replacements;
}
}
?>PK >\{ { models/templatetypes.phpnu W+A getDbo();
$query = $db->getQuery(true);
// Select the required fields from the table.
$query->select('*');
$query->from('#__csvi_template_types');
// Add the list ordering clause.
$orderCol = $this->state->get('list.ordering');
$orderDirn = $this->state->get('list.direction');
$query->order($db->getEscaped($orderCol.' '.$orderDirn));
return $query;
}
/**
* Load the template types for a given selection
*
* @copyright
* @author RolandD
* @todo
* @see
* @access public
* @param $action the import or export option
* @param $component the component
* @return array of available template types
* @since 3.5
*/
public function loadTemplateTypes($action, $component) {
$db = JFactory::getDbo();
$q = "SELECT t.template_type_name
FROM `#__csvi_template_types` AS t
WHERE t.template_type = ".$db->Quote($action)."
AND t.component = ".$db->Quote($component);
$db->setQuery($q);
$types = $db->loadResultArray();
// Get translations
$trans = array();
foreach ($types as $type) {
$trans[$type] = JText::_('COM_CSVI_'.strtoupper($type));
}
return $trans;
}
}
?>PK >\J;v v models/fields/csviform.phpnu W+A
PK >\) models/fields/.htaccessnu W+A
Order allow,deny
Deny from all
PK >\_ , models/fields/csvivirtuemartorderproduct.phpnu W+A input;
$template = $jinput->get('template', null, null);
$db = JFactory::getDbo();
$products = $template->get('orderproduct', 'order', array(), null);
$skus = implode(',', $products);
if (!empty($skus)) {
foreach ($products as $pkey => $product) {
$products[$pkey] = $db->Quote($product);
}
$q = "SELECT DISTINCT product_sku, product_name
FROM #__virtuemart_products p, #__virtuemart_order_items o
WHERE p.virtuemart_product_id = o.virtuemart_product_id
AND p.product_sku IN (".$skus.")
ORDER BY product_name;";
$db->setQuery($q);
$orderproducts = $db->loadObjectList();
if (empty($orderproducts)) $orderproducts = array();
return array_merge(parent::getOptions(), $orderproducts);
}
else return parent::getOptions();
}
}
?>
PK >\9q q ) models/fields/csvivirtuemartorderuser.phpnu W+A input;
$template = $jinput->get('template', null, null);
$db = JFactory::getDbo();
$orderuser = $template->get('orderuser', 'order', array(), null);
$userids = implode(',', $orderuser);
if (!empty($userids)) {
$q = "SELECT DISTINCT user_id,
IF (LENGTH(TRIM(CONCAT(first_name, ' ', middle_name, ' ', last_name))) = 0, '".JText::_('COM_CSVI_EXPORT_ORDER_USER_EMPTY')."',
IF (TRIM(CONCAT(first_name, ' ', middle_name, ' ', last_name)) is NULL, '".JText::_('COM_CSVI_EXPORT_ORDER_USER_EMPTY')."', CONCAT(first_name, ' ', middle_name, ' ', last_name))) AS user_name
FROM #__virtuemart_order_userinfos
WHERE user_id IN (".$userids.")
ORDER BY user_name;";
$db->setQuery($q);
$customers = $db->loadObjectList();
if (empty($customers)) $customers = array();
return array_merge(parent::getOptions(), $customers);
}
else return parent::getOptions();
}
}
?>
PK >\Ƹ , models/fields/csviakeebasubsorderpayment.phpnu W+A getQuery(true);
$query->select($db->quoteName('processor', 'value'));
$query->select($db->quoteName('processor', 'text'));
$query->from($db->quoteName('#__akeebasubs_subscriptions'));
$query->group($db->quoteName('processor'));
$db->setQuery($query);
$methods = $db->loadObjectList();
if (empty($methods)) $methods = array();
return array_merge(parent::getOptions(), $methods);
}
}
?>
PK >\% &