This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2019-09-08 21:10:55.987 INFO 15916 --- [ main] c.m.o.datapipeline.common.HTTPClient : Making GET request to https://na1.api.riotgames.com/lol/summoner/v4/summoners/by-name/fastboyz | |
2019-09-08 21:10:56.743 INFO 15916 --- [ main] c.m.o.datapipeline.common.HTTPClient : Making GET request to https://na1.api.riotgames.com/lol/match/v4/matchlists/by-account/S1rEWEMQPr4TKy4xEfbeaSvlFAq7YKlnORaZH9G7tuVmrA?beginTime=1473383456742&queue=1000&queue=470&queue=450&queue=430&queue=310&queue=610&queue=313&queue=317&queue=96&queue=75&queue=76&queue=98&queue=78&queue=14&queue=460&queue=0&queue=440&queue=420&queue=400&queue=940&queue=600&queue=1100&queue=920&queue=8&queue=900&queue=61 | |
2019-09-08 21:10:56.915 INFO 15916 --- [ main] c.m.o.datapipeline.common.HTTPClient : Making GET request to https://na1.api.riotgames.com/lol/match/v4/matchlists/by-account/S1rEWEMQPr4TKy4xEfbeaSvlFAq7YKlnORaZH9G7tuVmrA?endIndex=200&beginIndex=100&beginTime=1473383456915&queue=1000&queue=470&queue=450& |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ca.softwarespace.qiyanna.dataaggregator.services; | |
import ca.softwarespace.qiyanna.dataaggregator.models.CommunityPatch; | |
import ca.softwarespace.qiyanna.dataaggregator.models.DTO.MatchDto; | |
import ca.softwarespace.qiyanna.dataaggregator.models.generated.tables.AggregatorInfo; | |
import ca.softwarespace.qiyanna.dataaggregator.models.generated.tables.DefaultSummonerName; | |
import ca.softwarespace.qiyanna.dataaggregator.models.generated.tables.LeagueEntry; | |
import ca.softwarespace.qiyanna.dataaggregator.models.generated.tables.Rank; | |
import ca.softwarespace.qiyanna.dataaggregator.models.generated.tables.Tier; | |
import ca.softwarespace.qiyanna.dataaggregator.models.generated.tables.records.AggregatorInfoRecord; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": "5d251b8ada27b4e254e99f4c", | |
"gameCreation": "1561522711315", | |
"gameDuration": "1463", | |
"gameId": "3075133259", | |
"gameMode": "ARAM", | |
"gameType": "MATCHED_GAME", | |
"gameVersion": "9.12.277.6038", | |
"mapId": 12, | |
"participantIdentities": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"currentPlatform" : "NA1", | |
"summonerName" : "Olaf", | |
"matchHistoryURI" : "/v1/stats/player_history//0", | |
"version" : "9.9.272.4950", | |
"lane" : "BOTTOM", | |
"role" : "DUO", | |
"currentAccountId" : "0", | |
"accountId" : "0", | |
"items" : [ 1054, 1001, 3133, 3044, 1029, 3340 ], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ca.softwarespace.qiyanna.dataaggregator.services; | |
import com.merakianalytics.orianna.Orianna; | |
import com.merakianalytics.orianna.types.common.Region; | |
import com.merakianalytics.orianna.types.common.Season; | |
import com.merakianalytics.orianna.types.core.match.Match; | |
import com.merakianalytics.orianna.types.core.match.MatchHistory; | |
import com.merakianalytics.orianna.types.core.match.Participant; | |
import com.merakianalytics.orianna.types.core.summoner.Summoner; | |
import org.slf4j.Logger; |