Commit 0bfd82c
committed
feat: add PercentileService, device-code auth endpoints, adaptive DOP in shared Core
- Add PercentileService: scrapes Epic V1 leaderboard population counts and
posts results to FSTService via POST /api/leaderboard-population
- Add PercentileService.Tests: 111 tests, 99%+ coverage
- Add POST /api/auth/device-code endpoint to both services for manual
Epic device_code grant re-authentication
- Move AdaptiveConcurrencyLimiter to FortniteFestival.Core for shared use
- Fix PercentileService Dockerfile to include FortniteFestival.Core dependency
- CI workflow already builds/pushes both Docker images
- Add leaderboard-population storage and personal DB refresh in FSTService
- Add tools/v1lookup CLI utility
- 709 FSTService tests (95%+ coverage), 111 PercentileService tests1 parent 63bcb1f commit 0bfd82c
File tree
58 files changed
+6243
-170
lines changed- .github/workflows
- FSTService.Tests
- Integration
- Unit
- FSTService
- Api
- Auth
- Persistence
- Scraping
- FortniteFestival.Core
- Scraping
- PercentileService.Tests
- Helpers
- PercentileService
- deploy
- tools/v1lookup
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
58 files changed
+6243
-170
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
11 | 14 | | |
12 | 15 | | |
13 | 16 | | |
14 | 17 | | |
15 | 18 | | |
16 | 19 | | |
17 | 20 | | |
| 21 | + | |
| 22 | + | |
18 | 23 | | |
19 | 24 | | |
20 | 25 | | |
21 | 26 | | |
22 | 27 | | |
23 | | - | |
| 28 | + | |
| 29 | + | |
24 | 30 | | |
25 | 31 | | |
26 | 32 | | |
| |||
95 | 101 | | |
96 | 102 | | |
97 | 103 | | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
98 | 173 | | |
99 | 174 | | |
100 | | - | |
| 175 | + | |
101 | 176 | | |
102 | 177 | | |
103 | 178 | | |
| |||
115 | 190 | | |
116 | 191 | | |
117 | 192 | | |
118 | | - | |
119 | | - | |
| 193 | + | |
| 194 | + | |
120 | 195 | | |
121 | 196 | | |
122 | | - | |
| 197 | + | |
123 | 198 | | |
124 | 199 | | |
125 | 200 | | |
126 | 201 | | |
127 | | - | |
| 202 | + | |
128 | 203 | | |
129 | 204 | | |
130 | 205 | | |
131 | 206 | | |
132 | 207 | | |
133 | | - | |
134 | | - | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
369 | 369 | | |
370 | 370 | | |
371 | 371 | | |
372 | | - | |
| 372 | + | |
| 373 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
| |||
0 commit comments