lib/Endpoints/MatchEndpoint/MatchlistEndpoint.js
import MatchSuperclass from './MatchSuperclass'
import Request from 'RequestClient/Request'
import METHOD_NAMES from 'Enums/method-names'
class MatchlistEndpoint extends MatchSuperclass {
constructor(config, limiter) {
super()
this.config = config
this.by = {
accountID: this.accountID.bind(this),
}
this.Recent = {
by: {
accountID: this.getRecentMatchlistByAccountID.bind(this),
},
}
this.limiter = limiter
}
/**
* Get matchlist for games played on given account ID and platform ID and filtered using given filter parameters, if any.
*
* Implements GET `/lol/match/v3/matchlists/by-account/{accountId}`.
*
* @param {number} accountID - The account ID of the summoner.
*/
accountID(accountID) {
return new Request(
this.config,
this.serviceName,
`matchlists/by-account/${accountID}`,
METHOD_NAMES.MATCH.GET_MATCHLIST,
'GET',
this.limiter,
)
}
/**
* Get matchlist for last 20 matches played on given account ID and platform ID.
*
* Implements GET `/lol/match/v3/matchlists/by-account/{accountId}/recent`.
*
* @param {number} accountID - The account ID of the summoner.
*/
getRecentMatchlistByAccountID(accountID) {
console.log(`
[kayn] Riot will deprecate this API endpoint (getRecentMatchlistByAccountID) on April 27th, 2018.
However, this function can still be implemented via the regular matchlist endpoint (above).
The library will simply return the first 20 elements of that response, effectively
preserving this endpoint's nature. On the next (after this is released the first time) release,
I'll change the code below.
`)
return new Request(
this.config,
this.serviceName,
`matchlists/by-account/${accountID}/recent`,
METHOD_NAMES.MATCH.GET_RECENT_MATCHLIST,
'GET',
this.limiter,
)
}
}
export default MatchlistEndpoint