|
5 | 5 | use Illuminate\Support\Collection;
|
6 | 6 | use Psr\Http\Client\ClientInterface;
|
7 | 7 | use Reflex\Challonge\DTO\Match;
|
8 |
| -use Reflex\Challonge\Helpers\Guzzle; |
9 | 8 | use Reflex\Challonge\DTO\Tournament;
|
10 | 9 | use Reflex\Challonge\DTO\Participant;
|
11 | 10 |
|
@@ -96,95 +95,96 @@ public function fetchTournament(string $tournament): Tournament
|
96 | 95 |
|
97 | 96 | /**
|
98 | 97 | * Retrieve a tournament's participant list.
|
99 |
| - * |
100 |
| - * @param string $tournament |
101 |
| - * @return array |
| 98 | + * @param string $tournament |
| 99 | + * @return Collection |
| 100 | + * @throws Exceptions\InvalidFormatException |
| 101 | + * @throws Exceptions\NotFoundException |
| 102 | + * @throws Exceptions\ServerException |
| 103 | + * @throws Exceptions\UnauthorizedException |
| 104 | + * @throws Exceptions\UnexpectedErrorException |
| 105 | + * @throws Exceptions\ValidationException |
| 106 | + * @throws \JsonException |
102 | 107 | */
|
103 |
| - public function getParticipants($tournament) |
| 108 | + public function getParticipants(string $tournament): Collection |
104 | 109 | {
|
105 |
| - $response = Guzzle::get("tournaments/{$tournament}/participants"); |
106 |
| - |
107 |
| - $participants = []; |
108 |
| - foreach ($response as $team) { |
109 |
| - $participant = new Participant($team->participant); |
110 |
| - $participant->tournament_slug = $tournament; |
111 |
| - $participants[] = $participant; |
112 |
| - } |
113 |
| - |
114 |
| - return $participants; |
| 110 | + $response = $this->client->request('get', "tournaments/{$tournament}/participants"); |
| 111 | + return Collection::make($response) |
| 112 | + ->map(fn (array $participant) => Participant::fromResponse($this->client, $participant['participant'])); |
115 | 113 | }
|
116 | 114 |
|
117 | 115 | /**
|
118 | 116 | * Randomize seeds among participants.
|
119 |
| - * |
120 |
| - * @param string $tournament |
121 |
| - * @return array |
| 117 | + * @param string $tournament |
| 118 | + * @return Collection |
| 119 | + * @throws Exceptions\InvalidFormatException |
| 120 | + * @throws Exceptions\NotFoundException |
| 121 | + * @throws Exceptions\ServerException |
| 122 | + * @throws Exceptions\UnauthorizedException |
| 123 | + * @throws Exceptions\UnexpectedErrorException |
| 124 | + * @throws Exceptions\ValidationException |
| 125 | + * @throws \JsonException |
122 | 126 | */
|
123 |
| - public function randomizeParticipants($tournament) |
| 127 | + public function randomizeParticipants(string $tournament): Collection |
124 | 128 | {
|
125 |
| - $response = Guzzle::post("tournaments/{$tournament}/participants/randomize"); |
126 |
| - |
127 |
| - $participants = []; |
128 |
| - foreach ($response as $team) { |
129 |
| - $participant = new Participant($team->participant); |
130 |
| - $participant->tournament_slug = $tournament; |
131 |
| - $participants[] = $participant; |
132 |
| - } |
133 |
| - |
134 |
| - return $participants; |
| 129 | + $response = $this->client->request('post', "tournaments/{$tournament}/participants/randomize"); |
| 130 | + return Collection::make($response) |
| 131 | + ->map(fn (array $participant) => Participant::fromResponse($this->client, $participant['participant'])); |
135 | 132 | }
|
136 | 133 |
|
137 | 134 | /**
|
138 | 135 | * Retrieve a single participant record for a tournament.
|
139 |
| - * |
140 |
| - * @param string $tournament |
141 |
| - * @param string $participant |
142 |
| - * @return array |
| 136 | + * @param string $tournament |
| 137 | + * @param int $participant |
| 138 | + * @return Participant |
| 139 | + * @throws Exceptions\InvalidFormatException |
| 140 | + * @throws Exceptions\NotFoundException |
| 141 | + * @throws Exceptions\ServerException |
| 142 | + * @throws Exceptions\UnauthorizedException |
| 143 | + * @throws Exceptions\UnexpectedErrorException |
| 144 | + * @throws Exceptions\ValidationException |
| 145 | + * @throws \JsonException |
143 | 146 | */
|
144 |
| - public function getParticipant($tournament, $participant) |
| 147 | + public function getParticipant(string $tournament, int $participant): Participant |
145 | 148 | {
|
146 |
| - $response = Guzzle::get("tournaments/{$tournament}/participants/{$participant}"); |
147 |
| - |
148 |
| - $participant = new Participant($response->participant); |
149 |
| - $participant->tournament_slug = $tournament; |
150 |
| - |
151 |
| - return $participant; |
| 149 | + $response = $this->client->request('post', "tournaments/{$tournament}/participants/{$participant}"); |
| 150 | + return Participant::fromResponse($this->client, $response['participant']); |
152 | 151 | }
|
153 | 152 |
|
154 | 153 | /**
|
155 | 154 | * Retrieve a tournament's match list.
|
156 |
| - * |
157 |
| - * @param string $tournament |
158 |
| - * @return array |
| 155 | + * @param string $tournament |
| 156 | + * @return Collection |
| 157 | + * @throws Exceptions\InvalidFormatException |
| 158 | + * @throws Exceptions\NotFoundException |
| 159 | + * @throws Exceptions\ServerException |
| 160 | + * @throws Exceptions\UnauthorizedException |
| 161 | + * @throws Exceptions\UnexpectedErrorException |
| 162 | + * @throws Exceptions\ValidationException |
| 163 | + * @throws \JsonException |
159 | 164 | */
|
160 |
| - public function getMatches($tournament) |
| 165 | + public function getMatches(string $tournament): Collection |
161 | 166 | {
|
162 |
| - $response = Guzzle::get("tournaments/{$tournament}/matches"); |
163 |
| - |
164 |
| - $matches = []; |
165 |
| - foreach ($response as $match) { |
166 |
| - $matchModel = new Match($match->match); |
167 |
| - $matchModel->tournament_slug = $tournament; |
168 |
| - $matches[] = $matchModel; |
169 |
| - } |
170 |
| - |
171 |
| - return $matches; |
| 167 | + $response = $this->client->request('get', "tournaments/{$tournament}/matches"); |
| 168 | + return Collection::make($response) |
| 169 | + ->map(fn (array $match) => Match::fromResponse($this->client, $match['match'])); |
172 | 170 | }
|
173 | 171 |
|
174 | 172 | /**
|
175 | 173 | * Retrieve a single match record for a tournament.
|
176 |
| - * |
177 |
| - * @param string $tournament |
178 |
| - * @param string $match |
179 |
| - * @return array |
| 174 | + * @param string $tournament |
| 175 | + * @param int $match |
| 176 | + * @return Match |
| 177 | + * @throws Exceptions\InvalidFormatException |
| 178 | + * @throws Exceptions\NotFoundException |
| 179 | + * @throws Exceptions\ServerException |
| 180 | + * @throws Exceptions\UnauthorizedException |
| 181 | + * @throws Exceptions\UnexpectedErrorException |
| 182 | + * @throws Exceptions\ValidationException |
| 183 | + * @throws \JsonException |
180 | 184 | */
|
181 |
| - public function getMatch($tournament, $match) |
| 185 | + public function getMatch(string $tournament, int $match): Match |
182 | 186 | {
|
183 |
| - $response = Guzzle::get("tournaments/{$tournament}/matches/{$match}"); |
184 |
| - |
185 |
| - $match = new Match($response->match); |
186 |
| - $match->tournament_slug = $tournament; |
187 |
| - |
188 |
| - return $match; |
| 187 | + $response = $this->client->request('get', "tournaments/{$tournament}/matches/{$match}"); |
| 188 | + return Match::fromResponse($this->client, $response['match']); |
189 | 189 | }
|
190 | 190 | }
|
0 commit comments