with('lang')
->with('product.lang')
->batch(10000);
}
public function getSeoLinks()
{
return Seo::find()
->where([ 'meta' => '' ])
->all();
}
public function getStaticPages()
{
return Page::find()
->with('lang')
->all();
}
public function getCategories()
{
return Category::find()
->with('lang')
->all();
}
public function getCategoriesWithFilters()
{
return Category::find()
->with('lang')
->joinWith('taxGroups.lang')
->with('taxGroups.taxOptions.lang')
->where([ 'tax_group.meta_robots' => '', ])
->all();
}
public function getBrands()
{
return Brand::find()
->joinWith('lang')
->all();
}
public function checkUrl($url)
{
if (!in_array($url, $this->urlList)) {
$this->urlList[] = $url;
return true;
} else {
return false;
}
}
public function createRow($url, $priority, &$content)
{
if ($this->checkUrl($url)) {
$this->stdout($this->count . " : ", Console::BOLD);
$this->stdout($url . "\n", Console::FG_YELLOW);
$content .= '' . '' . $url . '' . '' . date(
'Y-m-d'
) . '' . 'Weekly' . '' . $priority . '' . '';
$this->count++;
if ($this->count % 40000 == 0) {
$content .= '';
fwrite($this->handle, $content);
fclose($this->handle);
unset($content);
$this->mapNumber++;
$this->mainMap .= ''.
'https://dev.extremstyle.ua/ru/' . $this->fileName . ''.
'' . date('Y-m-d') . ''.
'';
$this->fileName = 'sitemap' . $this->mapNumber . '.xml';
$this->handle = fopen(Yii::getAlias('@frontend') . '/web' . '/' . $this->fileName, "w");
$content = '';
}
}
}
public function actionProcess()
{
$config = ArrayHelper::merge(
require( \Yii::getAlias('@frontend/config/') . 'main.php' ),
require( \Yii::getAlias('@common/config/') . 'main.php' )
);
Yii::$app->urlManager->addRules($config[ 'components' ][ 'urlManager' ][ 'rules' ]);
$this->mainMap = '';
$this->mainMap .= '';
$this->fileName = 'test_sitemap' . $this->mapNumber . '.xml';
setlocale(LC_ALL, 'ru_RU.CP1251');
$this->handle = fopen(Yii::getAlias('@frontend') . '/web' . '/' . $this->fileName, "w");
$content = '';
foreach ($this->getAddStatic() as $page) {
$this->createRow($page, 1, $content);
}
foreach ($this->getStaticPages() as $page) {
$url = Url::to(
[
'site/page',
'slug' => $page->lang->alias,
]
);
$this->createRow($url, 1, $content);
}
foreach ($this->getCategories() as $category) {
$url = Url::to(
[
'catalog/category',
'category' => $category->lang->alias,
]
);
$this->createRow($url, 0.8, $content);
}
foreach ($this->getVariants() as $rows) {
foreach ($rows as $row) {
$url = Url::to(
[
'catalog/product',
'product' => $row->product->lang->alias,
'variant' => $row->sku,
]
);
$this->createRow($url, 0.9, $content);
}
}
foreach ($this->getBrands() as $brand) {
$url = Url::to(
[
'brand/view',
'slug' => $brand->lang->alias,
]
);
$this->createRow($url, 0.7, $content);
}
foreach ($this->getCategoriesWithFilters() as $category) {
foreach ($category->taxGroups as $group) {
foreach ($group->taxOptions as $option) {
$url = Url::to(
[
'catalog/category',
'category' => $category,
'filters' => [ $group->lang->alias => [ $option->lang->alias ] ],
]
);
$this->createRow($url, 0.8, $content);
}
}
}
foreach ($this->getSeoLinks() as $link) {
$url = Yii::$app->urlManager->baseUrl . $link->url;
$this->createRow($url, 0.7, $content);
}
$content .= '';
fwrite($this->handle, $content);
fclose($this->handle);
$this->mainMap .= ''.
'https://dev.extremstyle.ua/ru/' . $this->fileName . ''.
'' . date('Y-m-d') . ''.
''.
'';
$mainHandle = fopen(Yii::getAlias('@frontend') . '/web/sitemap.xml', "w");
fwrite($mainHandle, $this->mainMap);
fclose($mainHandle);
print Yii::getAlias('@frontend') . '/web' . '/' . $this->fileName;
}
}