JEMBOT MAWOT Bypass Shell
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShopBundle\Entity\Repository;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Query\QueryBuilder;
use PrestaShop\PrestaShop\Core\Grid\Query\DoctrineQueryBuilderInterface;
use PrestaShop\PrestaShop\Core\Grid\Query\RequestSqlQueryBuilder;
use PrestaShop\PrestaShop\Core\Grid\Search\SearchCriteriaInterface;
use PrestaShop\PrestaShop\Core\Repository\RepositoryInterface;
/**
* Class RequestSqlRepository is responsible for retrieving RequestSql data from database.
*/
class RequestSqlRepository implements RepositoryInterface, DoctrineQueryBuilderInterface
{
/**
* @var Connection
*/
private $connection;
/**
* @var string
*/
private $requestSqlTable;
/**
* @param Connection $connection
* @param string $dbPrefix
*/
public function __construct(Connection $connection, $dbPrefix)
{
$this->connection = $connection;
$this->requestSqlTable = $dbPrefix . 'request_sql';
}
/**
* {@inheritdoc}
*/
public function findAll()
{
$statement = $this->connection->query("SELECT rs.* FROM $this->requestSqlTable rs");
return $statement->fetchAll();
}
/**
* Get count of all request sql's.
*
* @return int Number of request sql rows
*/
public function getCount()
{
$statement = $this->connection->query("SELECT COUNT(rs.id_request_sql) AS c FROM $this->requestSqlTable rs");
$row = $statement->fetch();
return (int) $row['c'];
}
/**
* Get query that searches grid rows.
*
* @param SearchCriteriaInterface $searchCriteria
*
* @deprecated since 1.7.8.0
* @see RequestSqlQueryBuilder::getSearchQueryBuilder()
*
* @return QueryBuilder
*/
public function getSearchQueryBuilder(SearchCriteriaInterface $searchCriteria = null)
{
@trigger_error(
sprintf(
'The "%s()" method is deprecated since 1.7.8.0. Use %s instead.',
__METHOD__,
RequestSqlQueryBuilder::class . '::getSearchQueryBuilder()'
),
E_USER_DEPRECATED
);
$searchQueryBuilder = $this->buildQueryBySearchCriteria($searchCriteria);
return $searchQueryBuilder
->select('rs.*')
->orderBy(sprintf('`%s`', $searchCriteria->getOrderBy()), $searchCriteria->getOrderWay())
->setFirstResult($searchCriteria->getOffset())
->setMaxResults($searchCriteria->getLimit());
}
/**
* Get query that counts grid rows.
*
* @param SearchCriteriaInterface $searchCriteria
*
* @deprecated since 1.7.8.0
* @see RequestSqlQueryBuilder::getCountQueryBuilder()
*
* @return QueryBuilder
*/
public function getCountQueryBuilder(SearchCriteriaInterface $searchCriteria = null)
{
@trigger_error(
sprintf(
'The "%s()" method is deprecated since 1.7.8.0. Use %s instead.',
__METHOD__,
RequestSqlQueryBuilder::class . '::getCountQueryBuilder()'
),
E_USER_DEPRECATED
);
$countQueryBuilder = $this->buildQueryBySearchCriteria($searchCriteria);
$countQueryBuilder->select('COUNT(rs.id_request_sql)');
return $countQueryBuilder;
}
/**
* Build partial query by search criteria.
*
* @param SearchCriteriaInterface $criteria
*
* @deprecated since 1.7.8.0
* @see RequestSqlQueryBuilder::buildQueryBySearchCriteria()
*
* @return QueryBuilder
*/
private function buildQueryBySearchCriteria(SearchCriteriaInterface $criteria)
{
@trigger_error(
sprintf(
'The "%s()" method is deprecated since 1.7.8.0. Use %s instead.',
__METHOD__,
RequestSqlQueryBuilder::class . '::buildQueryBySearchCriteria()'
),
E_USER_DEPRECATED
);
$qb = $this->connection->createQueryBuilder();
$qb->from($this->requestSqlTable, 'rs');
foreach ($criteria->getFilters() as $filterName => $value) {
if (empty($value)) {
continue;
}
if ('id_request_sql' === $filterName) {
$qb->andWhere('rs.id_request_sql = :id_request_sql');
$qb->setParameter('id_request_sql', $value);
continue;
}
$qb->andWhere("`$filterName` LIKE :$filterName");
$qb->setParameter($filterName, '%' . $value . '%');
}
return $qb;
}
}
xxxxx1.0, XXX xxxx