Scalr\Upgrade\Updates\Update20151030083847::run1 PHP Method

run1() protected method

protected run1 ( $stage )
    protected function run1($stage)
    {
        $updated = 0;
        $tableKeys = ['variables' => '', 'account_variables' => 'account_id', 'client_environment_variables' => 'env_id', 'role_variables' => 'role_id', 'farm_variables' => 'farm_id', 'farm_role_variables' => 'farm_role_id', 'server_variables' => 'server_id'];
        $this->db->BeginTrans();
        try {
            foreach ($tableKeys as $table => $key) {
                $srs = $this->db->Execute("SELECT * FROM `{$table}` WHERE `validator` != ''");
                while ($variable = $srs->FetchRow()) {
                    if ($variable['validator'][0] != '/') {
                        $validator = "/{$variable['validator']}/";
                        $sql = "UPDATE `{$table}` SET `validator` = ? WHERE `name` = ?";
                        $args = [$validator, $variable['name']];
                        if ($key) {
                            $sql .= " AND `{$key}` = ?";
                            $args[] = $variable[$key];
                        }
                        $this->db->Execute($sql, $args);
                        $updated++;
                    }
                }
            }
            $this->db->CommitTrans();
        } catch (\Exception $e) {
            $this->db->RollbackTrans();
            throw $e;
        }
        $this->console->out("Updated variables: %d", $updated);
    }
Update20151030083847