All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bselzer.gw2.v2.client.instance.SkillClient.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.client.instance

import com.bselzer.gw2.v2.client.extension.language
import com.bselzer.gw2.v2.client.model.Language
import com.bselzer.gw2.v2.model.skill.Skill
import com.bselzer.gw2.v2.model.skill.SkillId
import io.ktor.client.*

/**
 * The skill client.
 * @see the wiki
 */
class SkillClient(httpClient: HttpClient, configuration: Gw2ClientConfiguration) : BaseClient(httpClient, configuration) {
    private companion object {
        const val SKILLS = "skills"
    }

    /**
     * @return the ids of the available skills
     * @see the wiki
     */
    suspend fun ids(): List = getIds(path = SKILLS)

    /**
     * @return the skill associated with the [id]
     * @see the wiki
     */
    suspend fun skill(id: SkillId, language: Language? = null): Skill = getSingleById(id, SKILLS, instance = { Skill(id = it) }) {
        language(language)
    }

    /**
     * @return the skills associated with the [ids]
     * @see the wiki
     */
    suspend fun skills(ids: Collection, language: Language? = null): List = chunkedIds(ids, SKILLS, instance = { Skill(id = it) }) {
        language(language)
    }

    /**
     * @return all the skills
     * @see the wiki
     */
    suspend fun skills(language: Language? = null): List = allIds(SKILLS) {
        language(language)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy