Прайслист — различия между версиями
Материал из Umicms
Mad grant (обсуждение | вклад) |
Mad grant (обсуждение | вклад) |
||
Строка 5: | Строка 5: | ||
<source lang="php"> | <source lang="php"> | ||
//возвращаем прайслист | //возвращаем прайслист | ||
− | public function getPriceList($asFile = '', $parent = '', $childs = 10, $expire = 0, $fileName = '', $template = 'default'){ | + | public function getPriceList($asFile = '', $parent = '', $childs = 10, $expire = 0, $fileName = '', $template = 'default'){ |
+ | //проверяем валидность параметров | ||
if(!$asFile) $asFile = 'yes'; | if(!$asFile) $asFile = 'yes'; | ||
if(!is_numeric($expire)){ | if(!is_numeric($expire)){ | ||
Строка 22: | Строка 23: | ||
throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение шестого параметра $childs<b/>'); | throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение шестого параметра $childs<b/>'); | ||
} | } | ||
+ | //получаем altname страницы, указанной во втором параметре | ||
$hierarchy = umiHierarchy::getInstance(); | $hierarchy = umiHierarchy::getInstance(); | ||
$page = $hierarchy->getElement($parentId); | $page = $hierarchy->getElement($parentId); | ||
$altName = $page->getAltName(); | $altName = $page->getAltName(); | ||
switch ($asFile) { | switch ($asFile) { | ||
+ | //возвращаем результат макроса в виде итемов с информацией о товарах | ||
case 'no': | case 'no': | ||
+ | //если xslt - кешируем результат парсинга | ||
$isXslt = def_module::isXSLTResultMode(); | $isXslt = def_module::isXSLTResultMode(); | ||
if ($isXslt){ | if ($isXslt){ | ||
$path = self::getPath('/sys-temp/price_as_page/', $altName .'-cashed-as-array.txt'); | $path = self::getPath('/sys-temp/price_as_page/', $altName .'-cashed-as-array.txt'); | ||
if(is_file($path)) $mtime = filemtime($path); | if(is_file($path)) $mtime = filemtime($path); | ||
+ | //получаем и возвращаем результат, сохраняем в кеш результат | ||
if(!is_file($path) || time() > ($mtime + $expire)){ | if(!is_file($path) || time() > ($mtime + $expire)){ | ||
$pages = self::getQuery($parentId, $childs); | $pages = self::getQuery($parentId, $childs); | ||
Строка 38: | Строка 43: | ||
return $result; | return $result; | ||
}else{ | }else{ | ||
+ | //возвращаем результат из кеша | ||
return unserialize(file_get_contents($path)); | return unserialize(file_get_contents($path)); | ||
} | } | ||
− | }else{ | + | }else{ |
+ | //если tpl - кешируем результат выборки | ||
$path = self::getPath('/sys-temp/price_as_page/', $altName .'-cashed-as-query.txt'); | $path = self::getPath('/sys-temp/price_as_page/', $altName .'-cashed-as-query.txt'); | ||
if(is_file($path)) $mtime = filemtime($path); | if(is_file($path)) $mtime = filemtime($path); | ||
+ | //получаем и возвращаем результат, сохраняем в кеш выборку | ||
if(!is_file($path) || time() > ($mtime + $expire)){ | if(!is_file($path) || time() > ($mtime + $expire)){ | ||
$pages = self::getQuery($parentId, $childs); | $pages = self::getQuery($parentId, $childs); | ||
Строка 50: | Строка 58: | ||
return $result; | return $result; | ||
}else{ | }else{ | ||
+ | //берем выборку из кеша, получаем и возвращаем результат | ||
return self::getResult(unserialize(file_get_contents($path)), $template); | return self::getResult(unserialize(file_get_contents($path)), $template); | ||
} | } | ||
} | } | ||
break; | break; | ||
+ | //возвращаем результат макроса в виде ссылки на файл с прайслистом | ||
case 'yes': | case 'yes': | ||
+ | //если имя файла не задано, оно будет равно altName страницы-родителя | ||
if(!$fileName){ | if(!$fileName){ | ||
$correctFileName = $altName; | $correctFileName = $altName; | ||
+ | //если имя файла есть прогоняем через транлит, на случай ввода русского названия файла | ||
}else{ | }else{ | ||
$correctFileName = translit::convert($fileName); | $correctFileName = translit::convert($fileName); | ||
} | } | ||
$path = self::getPath('/files/price_as_file/', $correctFileName . '.csv'); | $path = self::getPath('/files/price_as_file/', $correctFileName . '.csv'); | ||
− | if(is_file($path)) $mtime = filemtime($path); | + | if(is_file($path)) $mtime = filemtime($path); |
+ | //получаем результат, сохраняем его в csv файл и возвращаем ссылку | ||
if(!is_file($path) || time() > ($mtime + $expire)){ | if(!is_file($path) || time() > ($mtime + $expire)){ | ||
$open = fopen($path, 'w+'); | $open = fopen($path, 'w+'); | ||
+ | //задаем 'шапку' csv файла | ||
$hat = array( | $hat = array( | ||
'artikul' => 'Артикул', | 'artikul' => 'Артикул', | ||
Строка 86: | Строка 100: | ||
return '/files/price_as_file/'.$correctFileName.'.csv'; | return '/files/price_as_file/'.$correctFileName.'.csv'; | ||
}else{ | }else{ | ||
+ | //возвращаем ссылку | ||
return '/files/price_as_file/'.$correctFileName.'.csv'; | return '/files/price_as_file/'.$correctFileName.'.csv'; | ||
} | } | ||
break; | break; | ||
default: | default: | ||
+ | //валидация первого параметра | ||
throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение первого параметра $asFile</b>'); | throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение первого параметра $asFile</b>'); | ||
} | } |
Версия 10:58, 17 октября 2013
Актуально для версии 2.9.1
Содержание
Общее описание
Листинг макроса
//возвращаем прайслист
public function getPriceList($asFile = '', $parent = '', $childs = 10, $expire = 0, $fileName = '', $template = 'default'){
//проверяем валидность параметров
if(!$asFile) $asFile = 'yes';
if(!is_numeric($expire)){
throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение второго параметра $expire<b/>');
}
if(!$parent){
$parentId = cmsController::getInstance()->getCurrentElementId();
}else{
$parentId = def_module::analyzeRequiredPath($parent);
if($parentId === false && $parent != KEYWORD_GRAB_ALL) {
throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение пятого параметра $parent<b/>');
}
}
if(!$childs) $childs = 10;
if(!is_numeric($childs)){
throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение шестого параметра $childs<b/>');
}
//получаем altname страницы, указанной во втором параметре
$hierarchy = umiHierarchy::getInstance();
$page = $hierarchy->getElement($parentId);
$altName = $page->getAltName();
switch ($asFile) {
//возвращаем результат макроса в виде итемов с информацией о товарах
case 'no':
//если xslt - кешируем результат парсинга
$isXslt = def_module::isXSLTResultMode();
if ($isXslt){
$path = self::getPath('/sys-temp/price_as_page/', $altName .'-cashed-as-array.txt');
if(is_file($path)) $mtime = filemtime($path);
//получаем и возвращаем результат, сохраняем в кеш результат
if(!is_file($path) || time() > ($mtime + $expire)){
$pages = self::getQuery($parentId, $childs);
$result = self::getResult($pages, $template);
file_put_contents($path, serialize($result));
unset($path, $mtime, $pages);
return $result;
}else{
//возвращаем результат из кеша
return unserialize(file_get_contents($path));
}
}else{
//если tpl - кешируем результат выборки
$path = self::getPath('/sys-temp/price_as_page/', $altName .'-cashed-as-query.txt');
if(is_file($path)) $mtime = filemtime($path);
//получаем и возвращаем результат, сохраняем в кеш выборку
if(!is_file($path) || time() > ($mtime + $expire)){
$pages = self::getQuery($parentId, $childs);
file_put_contents($path, serialize($pages));
$result = self::getResult($pages, $template);
unset($path, $mtime, $pages);
return $result;
}else{
//берем выборку из кеша, получаем и возвращаем результат
return self::getResult(unserialize(file_get_contents($path)), $template);
}
}
break;
//возвращаем результат макроса в виде ссылки на файл с прайслистом
case 'yes':
//если имя файла не задано, оно будет равно altName страницы-родителя
if(!$fileName){
$correctFileName = $altName;
//если имя файла есть прогоняем через транлит, на случай ввода русского названия файла
}else{
$correctFileName = translit::convert($fileName);
}
$path = self::getPath('/files/price_as_file/', $correctFileName . '.csv');
if(is_file($path)) $mtime = filemtime($path);
//получаем результат, сохраняем его в csv файл и возвращаем ссылку
if(!is_file($path) || time() > ($mtime + $expire)){
$open = fopen($path, 'w+');
//задаем 'шапку' csv файла
$hat = array(
'artikul' => 'Артикул',
'name' => 'Наименование',
'price' => 'Цена'
);
fputcsv($open, $hat, ';');
$pages = self::getQuery($parentId, $childs);
try {
foreach($pages as $page){
$lines = array();
$lines['artikul'] = $page->getValue('artikul');
$lines['name'] = $page->getName();
$lines['price'] = $page->getValue('price');
fputcsv($open, $lines, ';');
}
}catch (Exception $e) {
return '<b>Файл с прайсом не смог сгенерироваться из-за ошибки:</b>'.$e->getMessage();
}
unset($pages, $page, $lines, $price, $name);
fclose($open);
return '/files/price_as_file/'.$correctFileName.'.csv';
}else{
//возвращаем ссылку
return '/files/price_as_file/'.$correctFileName.'.csv';
}
break;
default:
//валидация первого параметра
throw new publicException('<b>В макросе emarket getPriceList() необходимо указать корректное значение первого параметра $asFile</b>');
}
}
//возвращаем путь до файла
private function getPath($dirName, $file){
$folder = CURRENT_WORKING_DIR . $dirName;
$path = $folder . $file;
if(!is_dir($folder)) mkdir($folder, 0777, true);
return $path;
}
//возвращаем результат выборки
private function getQuery($parentId, $childs){
$pages = new selector('pages');
$pages->types('object-type')->name('catalog', 'object');
$pages->where('hierarchy')->page($parentId)->childs($childs);
$pages->limit(0,2000);
return $pages;
}
//возвращаем результат парсинга шаблонов
private function getResult($pages, $template){
if(!@$template) $template = 'default';
list($itemsTemplate, $itemTemplate) = def_module::loadTemplates("emarket/{$template}", "items", "item");
$item = array();
$items = array();
foreach($pages as $page){
$item['attribute:id'] = $page->id;
$item['attribute:link'] = $page->link;
$item['attribute:price'] = $page->getValue('price');
$item['attribute:artikul'] = $page->getValue('artikul');
$item['attribute:name'] = $page->getName();
$items[] = def_module::parseTemplate($itemTemplate, $item);
}
$items = array('subnodes:items' => $items);
$result = def_module::parseTemplate($itemsTemplate, $items);
return $result;
}