Telegram InlineQueryProcessor service is now receives UserRepository directly instead of EntityManager.
This commit is contained in:
parent
170adca0f1
commit
928311dad1
|
@ -209,7 +209,7 @@ services:
|
||||||
app.telegram.inline_query_processor:
|
app.telegram.inline_query_processor:
|
||||||
class: Skobkin\Bundle\PointToolsBundle\Service\Telegram\InlineQueryProcessor
|
class: Skobkin\Bundle\PointToolsBundle\Service\Telegram\InlineQueryProcessor
|
||||||
lazy: true
|
lazy: true
|
||||||
arguments: ['@doctrine.orm.entity_manager', '@app.telegram.api_client']
|
arguments: ['@app.point.user_repository', '@app.telegram.api_client']
|
||||||
|
|
||||||
# Private message processor
|
# Private message processor
|
||||||
app.telegram.private_message_processor:
|
app.telegram.private_message_processor:
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
namespace Skobkin\Bundle\PointToolsBundle\Service\Telegram;
|
namespace Skobkin\Bundle\PointToolsBundle\Service\Telegram;
|
||||||
|
|
||||||
|
|
||||||
use Doctrine\ORM\EntityManagerInterface;
|
|
||||||
use Skobkin\Bundle\PointToolsBundle\Repository\UserRepository;
|
use Skobkin\Bundle\PointToolsBundle\Repository\UserRepository;
|
||||||
use unreal4u\TelegramAPI\Telegram\Methods\AnswerInlineQuery;
|
use unreal4u\TelegramAPI\Telegram\Methods\AnswerInlineQuery;
|
||||||
use unreal4u\TelegramAPI\Telegram\Types\Inline\Query;
|
use unreal4u\TelegramAPI\Telegram\Types\Inline\Query;
|
||||||
|
@ -12,11 +10,6 @@ use unreal4u\TelegramAPI\TgLog;
|
||||||
|
|
||||||
class InlineQueryProcessor
|
class InlineQueryProcessor
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* @var EntityManagerInterface
|
|
||||||
*/
|
|
||||||
private $em;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var UserRepository
|
* @var UserRepository
|
||||||
*/
|
*/
|
||||||
|
@ -28,12 +21,10 @@ class InlineQueryProcessor
|
||||||
private $client;
|
private $client;
|
||||||
|
|
||||||
|
|
||||||
public function __construct(EntityManagerInterface $em, TgLog $client)
|
public function __construct(UserRepository $userRepository, TgLog $client)
|
||||||
{
|
{
|
||||||
$this->em = $em;
|
$this->userRepo = $userRepository;
|
||||||
$this->client = $client;
|
$this->client = $client;
|
||||||
|
|
||||||
$this->userRepo = $em->getRepository('SkobkinPointToolsBundle:User');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function process(Query $inlineQuery)
|
public function process(Query $inlineQuery)
|
||||||
|
@ -45,7 +36,7 @@ class InlineQueryProcessor
|
||||||
$answerInlineQuery = new AnswerInlineQuery();
|
$answerInlineQuery = new AnswerInlineQuery();
|
||||||
$answerInlineQuery->inline_query_id = $inlineQuery->id;
|
$answerInlineQuery->inline_query_id = $inlineQuery->id;
|
||||||
|
|
||||||
foreach ($this->em->getRepository('SkobkinPointToolsBundle:User')->findUsersLikeLogin($inlineQuery->query) as $user) {
|
foreach ($this->userRepo->findUsersLikeLogin($inlineQuery->query) as $user) {
|
||||||
$article = new Query\Result\Article();
|
$article = new Query\Result\Article();
|
||||||
$article->title = $user->getLogin();
|
$article->title = $user->getLogin();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue