src/api/challenges/speech/index.js
/**
* This file contains the readily availbile functions which interact with the
* ITSLanguage speech challenge API.
*/
import {authorisedRequest} from '../../communication';
// The URL for the speech challenge handler(s).
const url = '/challenges/speech';
/**
* Create a new speech challenge.
*
* @param {Object} challenge - The challenge to create.
*
* @returns {Promise} - The challenge creation promise.
*/
export function createSpeechChallenge(challenge) {
return authorisedRequest('POST', url, challenge);
}
/**
* Get a single speech challenge by its ID.
*
* @param {string} id - The ID of the desired speech challenge.
*
* @returns {Promise} - The promise for the speech challenge.
*/
export function getSpeechChallengeByID(id) {
return authorisedRequest('GET', `${url}/${id}`);
}
/**
* Get a all speech challenges.
*
* By default all speech challenges are fetched though it is allowed to pass
* filters as a `URLSearchParams` object.
*
* @param {URLSearchParams} [filters] - The filters to apply to the category
* list.
*
* @throws {Promise.<string>} - If the given optional filters are not an
* instance of `URLSearchParams`.
*
* @returns {Promise} - The promise for the speech challenges.
*/
export function getAllSpeechChallenges(filters) {
let urlWithFilters = url;
if (filters) {
if (!(filters instanceof URLSearchParams)) {
return Promise.reject('The filters should be a `URLSearchParams` object.');
}
urlWithFilters += `?${filters.toString()}`;
}
return authorisedRequest('GET', urlWithFilters);
}