ScanController.php 1.58 KB
<?php

namespace app\commands;

use yii;
use yii\console\Controller;
use yii\db\Expression;
use yii\helpers\Console;
use app\components\Collection;
use app\jobs\HostJob;

/**
 * Парсинг запрещенных ресурсов в РФ.
 */
class ScanController extends Controller
{
    public $file = '';

    public function beforeAction($action)
    {
        if (!parent::beforeAction($action)) {
            return false;
        }
        return true;
    }

    public function options($actionID)
    {
        return ['file'];
    }

    public function optionAliases()
    {
        return ['f' => 'file'];
    }

    /**
     * Парсинг запрещенных ресурсов в РФ.
     */
    public function actionIndex()
    {
        $hosts = Collection::getHostsByCsv(Yii::$app->params['csv_url']);
        $grabUrls = Yii::$app->params['registrators_urls'];
        foreach ($hosts['data'] as $host) {
            $res =  Yii::$app->db->createCommand()->insert('{{%host}}', [
                'domain' =>utf8($host),
                'created_at' => new Expression('NOW()'),
                'csv_date' => date("Y-m-d H:i:s",strtotime($hosts['csv_date'])),
            ])->execute();
           /* $ids[] = (int)Yii::$app->queue->push(new HostJob([
                'host' => $host,
                'grabSource' => $grabUrls[array_rand($grabUrls)]
            ]));*/
        }

        echo "\n".$this->ansiFormat('Количество полученных хостов', Console::FG_CYAN) . ' => ' . $this->ansiFormat(count($hosts['data']), Console::BOLD, Console::FG_GREEN) . "\n";
    }

}