Blame view

app/Queries/Vote/VoteQueryHandler.php 1.72 KB
e77200db5   nologostudio.ru   Initial commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  <?php
  
  namespace FootyRoom\Queries\Vote;
  
  use FootyRoom\Support\MongoClient;
  use MongoDB\BSON\UTCDateTime;
  
  class VoteQueryHandler
  {
      /**
       * @var \FootyRoom\Support\MongoClient
       */
      protected $mongo;
  
      /**
       * Constructor.
       *
       * @param \FootyRoom\Support\MongoClient $mongo
       */
      public function __construct(MongoClient $mongo)
      {
          $this->mongo = $mongo->footyroom;
      }
  
      /**
       * Query handler.
       *
       * @param \FootyRoom\Queries\Vote\VoteCountQuery $query
       *
       * @return int
       */
      public function voteCount(VoteCountQuery $query)
      {
          $queryParams = [
              'createdAt' => ['$gte' => new UTCDateTime($query->getSinceDate()->getTimestamp() * 1000)],
          ];
  
          if ($query->getGuestId()) {
              $queryParams['tracker'] = $query->getGuestId();
              $queryParams['userId'] = ['$exists' => false];
          } elseif ($query->getUserId()) {
              $queryParams['userId'] = $query->getUserId();
          }
  
          if ($query->getPollRef()) {
              $queryParams['pollRef'] = $query->getPollRef();
          }
  
          return $this->mongo->votes->count($queryParams);
      }
  
      /**
       * Query handler.
       *
       * @param \FootyRoom\Queries\Vote\HasVotedQuery $query
       *
       * @return int
       */
      public function hasVoted(HasVotedQuery $query)
      {
          $queryParams['pollRef'] = $query->getPollRef();
  
          if ($query->getGuestId()) {
              $queryParams['tracker'] = $query->getGuestId();
              $queryParams['userId'] = ['$exists' => false];
          } elseif ($query->getUserId()) {
              $queryParams['userId'] = $query->getUserId();
          }
  
          return $this->mongo->votes->count($queryParams) > 0;
      }
  }