@@ -8,133 +8,133 @@ |
||
8 | 8 | class MysqlTwitterRepository implements TwitterRepositoryInterface |
9 | 9 | { |
10 | 10 | |
11 | - /** @var ConnectionLocator */ |
|
12 | - protected $connections; |
|
13 | - |
|
14 | - /** |
|
15 | - * @param ConnectonLocator $connections |
|
16 | - */ |
|
17 | - public function __construct(ConnectionLocator $connections) |
|
18 | - { |
|
19 | - $this->connections = $connections; |
|
20 | - } |
|
21 | - |
|
22 | - /** |
|
23 | - * @param integer $id |
|
24 | - * |
|
25 | - * @return array|false |
|
26 | - */ |
|
27 | - public function getTwitterById($id) |
|
28 | - { |
|
29 | - $query = " |
|
11 | + /** @var ConnectionLocator */ |
|
12 | + protected $connections; |
|
13 | + |
|
14 | + /** |
|
15 | + * @param ConnectonLocator $connections |
|
16 | + */ |
|
17 | + public function __construct(ConnectionLocator $connections) |
|
18 | + { |
|
19 | + $this->connections = $connections; |
|
20 | + } |
|
21 | + |
|
22 | + /** |
|
23 | + * @param integer $id |
|
24 | + * |
|
25 | + * @return array|false |
|
26 | + */ |
|
27 | + public function getTwitterById($id) |
|
28 | + { |
|
29 | + $query = " |
|
30 | 30 | SELECT * |
31 | 31 | FROM `jpemeric_stream`.`twitter` |
32 | 32 | WHERE `id` = :id |
33 | 33 | LIMIT 1"; |
34 | - $bindings = [ |
|
35 | - 'id' => $id, |
|
36 | - ]; |
|
37 | - |
|
38 | - return $this |
|
39 | - ->connections |
|
40 | - ->getRead() |
|
41 | - ->fetchOne($query, $bindings); |
|
42 | - } |
|
43 | - |
|
44 | - public function getTwitterByTweetId($tweetId) |
|
45 | - { |
|
46 | - $query = " |
|
34 | + $bindings = [ |
|
35 | + 'id' => $id, |
|
36 | + ]; |
|
37 | + |
|
38 | + return $this |
|
39 | + ->connections |
|
40 | + ->getRead() |
|
41 | + ->fetchOne($query, $bindings); |
|
42 | + } |
|
43 | + |
|
44 | + public function getTwitterByTweetId($tweetId) |
|
45 | + { |
|
46 | + $query = " |
|
47 | 47 | SELECT `id`, `tweet_id`, `datetime`, `metadata` |
48 | 48 | FROM `jpemeric_stream`.`twitter2` |
49 | 49 | WHERE `tweet_id` = :tweet_id |
50 | 50 | LIMIT 1"; |
51 | 51 | |
52 | - $bindings = [ |
|
53 | - 'tweet_id' => $tweetId, |
|
54 | - ]; |
|
55 | - |
|
56 | - return $this |
|
57 | - ->connections |
|
58 | - ->getRead() |
|
59 | - ->fetchOne($query, $bindings); |
|
60 | - } |
|
61 | - |
|
62 | - /** |
|
63 | - * @param DateTimeInterface $date |
|
64 | - * @param string $text |
|
65 | - * |
|
66 | - * @return array|false |
|
67 | - */ |
|
68 | - public function getTwitterByFields(DateTimeInterface $date, $text) |
|
69 | - { |
|
70 | - $query = " |
|
52 | + $bindings = [ |
|
53 | + 'tweet_id' => $tweetId, |
|
54 | + ]; |
|
55 | + |
|
56 | + return $this |
|
57 | + ->connections |
|
58 | + ->getRead() |
|
59 | + ->fetchOne($query, $bindings); |
|
60 | + } |
|
61 | + |
|
62 | + /** |
|
63 | + * @param DateTimeInterface $date |
|
64 | + * @param string $text |
|
65 | + * |
|
66 | + * @return array|false |
|
67 | + */ |
|
68 | + public function getTwitterByFields(DateTimeInterface $date, $text) |
|
69 | + { |
|
70 | + $query = " |
|
71 | 71 | SELECT * |
72 | 72 | FROM `jpemeric_stream`.`twitter` |
73 | 73 | WHERE `date` = :date AND `text` = :text |
74 | 74 | LIMIT 1"; |
75 | - $bindings = [ |
|
76 | - 'date' => $date->format('Y-m-d H:i:s'), |
|
77 | - 'text' => $text, |
|
78 | - ]; |
|
79 | - |
|
80 | - return $this |
|
81 | - ->connections |
|
82 | - ->getRead() |
|
83 | - ->fetchOne($query, $bindings); |
|
84 | - } |
|
85 | - |
|
86 | - /** |
|
87 | - * @return array|false |
|
88 | - */ |
|
89 | - public function getUnmappedTwitters() |
|
90 | - { |
|
91 | - $query = " |
|
75 | + $bindings = [ |
|
76 | + 'date' => $date->format('Y-m-d H:i:s'), |
|
77 | + 'text' => $text, |
|
78 | + ]; |
|
79 | + |
|
80 | + return $this |
|
81 | + ->connections |
|
82 | + ->getRead() |
|
83 | + ->fetchOne($query, $bindings); |
|
84 | + } |
|
85 | + |
|
86 | + /** |
|
87 | + * @return array|false |
|
88 | + */ |
|
89 | + public function getUnmappedTwitters() |
|
90 | + { |
|
91 | + $query = " |
|
92 | 92 | SELECT `id`, `date` |
93 | 93 | FROM `jpemeric_stream`.`twitter` |
94 | 94 | LEFT JOIN `jpemeric_stream`.`post` |
95 | 95 | ON `post`.`type_id` = `twitter`.`id` AND `post`.`id` IS NULL"; |
96 | 96 | |
97 | - return $this |
|
98 | - ->connections |
|
99 | - ->getRead() |
|
100 | - ->fetchAll($query); |
|
101 | - } |
|
97 | + return $this |
|
98 | + ->connections |
|
99 | + ->getRead() |
|
100 | + ->fetchAll($query); |
|
101 | + } |
|
102 | 102 | |
103 | - public function insertTweet($tweetId, DateTimeInterface $datetime, array $metadata) |
|
104 | - { |
|
105 | - $query = " |
|
103 | + public function insertTweet($tweetId, DateTimeInterface $datetime, array $metadata) |
|
104 | + { |
|
105 | + $query = " |
|
106 | 106 | INSERT INTO `jpemeric_stream`.`twitter2` |
107 | 107 | (`tweet_id`, `datetime`, `metadata`) |
108 | 108 | VALUES |
109 | 109 | (:tweet_id, :datetime, :metadata)"; |
110 | 110 | |
111 | - $bindings = [ |
|
112 | - 'tweet_id' => $tweetId, |
|
113 | - 'datetime' => $datetime->format('Y-m-d H:i:s'), |
|
114 | - 'metadata' => json_encode($metadata), |
|
115 | - ]; |
|
116 | - |
|
117 | - return $this |
|
118 | - ->connections |
|
119 | - ->getWrite() |
|
120 | - ->perform($query, $bindings); |
|
121 | - } |
|
122 | - |
|
123 | - public function updateTweetMetadata($tweetId, array $metadata) |
|
124 | - { |
|
125 | - $query = " |
|
111 | + $bindings = [ |
|
112 | + 'tweet_id' => $tweetId, |
|
113 | + 'datetime' => $datetime->format('Y-m-d H:i:s'), |
|
114 | + 'metadata' => json_encode($metadata), |
|
115 | + ]; |
|
116 | + |
|
117 | + return $this |
|
118 | + ->connections |
|
119 | + ->getWrite() |
|
120 | + ->perform($query, $bindings); |
|
121 | + } |
|
122 | + |
|
123 | + public function updateTweetMetadata($tweetId, array $metadata) |
|
124 | + { |
|
125 | + $query = " |
|
126 | 126 | UPDATE `jpemeric_stream`.`twitter2` |
127 | 127 | SET `metadata` = :metadata |
128 | 128 | WHERE `tweet_id` = :tweet_id"; |
129 | 129 | |
130 | - $bindings = [ |
|
131 | - 'metadata' => json_encode($metadata), |
|
132 | - 'tweet_id' => $tweetId, |
|
133 | - ]; |
|
130 | + $bindings = [ |
|
131 | + 'metadata' => json_encode($metadata), |
|
132 | + 'tweet_id' => $tweetId, |
|
133 | + ]; |
|
134 | 134 | |
135 | - return $this |
|
136 | - ->connections |
|
137 | - ->getWrite() |
|
138 | - ->perform($query, $bindings); |
|
139 | - } |
|
135 | + return $this |
|
136 | + ->connections |
|
137 | + ->getWrite() |
|
138 | + ->perform($query, $bindings); |
|
139 | + } |
|
140 | 140 | } |