Commit dc49f98d by san58

+

1 parent bf528dec
...@@ -4,6 +4,8 @@ namespace app\controllers; ...@@ -4,6 +4,8 @@ namespace app\controllers;
use app\models\Host; use app\models\Host;
use app\models\Filter;
use app\components\Collection;
use Yii; use Yii;
use yii\db\Query; use yii\db\Query;
use yii\filters\AccessControl; use yii\filters\AccessControl;
...@@ -11,6 +13,7 @@ use yii\web\Controller; ...@@ -11,6 +13,7 @@ use yii\web\Controller;
use yii\web\Response; use yii\web\Response;
use yii\filters\VerbFilter; use yii\filters\VerbFilter;
class AjaxController extends Controller class AjaxController extends Controller
{ {
/** /**
...@@ -51,23 +54,29 @@ class AjaxController extends Controller ...@@ -51,23 +54,29 @@ class AjaxController extends Controller
*/ */
public function actionCalcStatus() public function actionCalcStatus()
{ {
$update = [ $count_update = [Host::STATUS_OFF => 0, Host::STATUS_ON => 0];
Host::STATUS_OFF => [], $update = [Host::STATUS_OFF => [], Host::STATUS_ON => []];
Host::STATUS_ON => []
];
$filters = Collection::get_filter(Filter::TYPE_AFTER); $filters = Collection::get_filter(Filter::TYPE_AFTER);
$query = (new Query())->select('id, domain')->from('{{%host}}'); $query = (new Query())->select('id, domain')->from('{{%host}}');
if ($query) if ($query)
{
foreach ($query->batch(1000) as $hosts) foreach ($query->batch(1000) as $hosts)
{ {
foreach ($hosts as $host) foreach ($hosts as $host)
$update[(Collection::apply_filter($host['domain'], $filters) === false ? Host::STATUS_OFF : Host::STATUS_ON)][] = $host['id']; $update[
(
Collection::apply_filter($host['domain'], $filters) === false ?
Host::STATUS_OFF :
Host::STATUS_ON
)
][] = $host['id'];
unset($host); unset($host);
if (count($update[Filter::STATUS_OFF])>0) if (count($update[Host::STATUS_OFF])>0)
{ {
Yii::$app->db->createCommand() Yii::$app->db->createCommand()
->update('{{%host}}', ['status' => Host::STATUS_OFF], ['in', 'id', $update[Host::STATUS_OFF]]) ->update('{{%host}}', ['status' => Host::STATUS_OFF], ['in', 'id', $update[Host::STATUS_OFF]])
->execute(); ->execute();
$count_update[Host::STATUS_OFF]+=count($update[Host::STATUS_OFF]);
$update[Host::STATUS_OFF] = []; $update[Host::STATUS_OFF] = [];
} }
if (count($update[Host::STATUS_ON])>0) if (count($update[Host::STATUS_ON])>0)
...@@ -75,17 +84,20 @@ class AjaxController extends Controller ...@@ -75,17 +84,20 @@ class AjaxController extends Controller
Yii::$app->db->createCommand() Yii::$app->db->createCommand()
->update('{{%host}}', ['status' => Host::STATUS_ON], ['in', 'id', $update[Host::STATUS_ON]]) ->update('{{%host}}', ['status' => Host::STATUS_ON], ['in', 'id', $update[Host::STATUS_ON]])
->execute(); ->execute();
$count_update[Host::STATUS_ON]+=count($update[Host::STATUS_ON]);
$update[Host::STATUS_ON] = []; $update[Host::STATUS_ON] = [];
} }
} }
unset($hosts); unset($hosts);
}
unset($query); unset($query);
unset($filters); unset($filters);
unset($update); unset($update);
return [ return [
'controller' => 'ajax', 'controller' => 'ajax',
'is_guest' => Yii::$app->user->isGuest, 'is_guest' => Yii::$app->user->isGuest,
'user_id' => Yii::$app->user->getId() 'user_id' => Yii::$app->user->getId(),
'domains' => $count_update
]; ];
} }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!