@line/bot-sdk
Version:
Node.js SDK for LINE Messaging API
90 lines (89 loc) • 4.07 kB
JavaScript
;
/**
* LINE Messaging API
* This document describes LINE Messaging API.
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.LineModuleClient = void 0;
const Types = require("../../types");
const utils_1 = require("../../utils");
const http_1 = require("../../http");
class LineModuleClient {
constructor(config) {
if (!config.baseURL) {
config.baseURL = "https://api.line.me";
}
this.httpClient = new http_1.default({
defaultHeaders: {
Authorization: "Bearer " + config.channelAccessToken,
},
responseParser: this.parseHTTPResponse.bind(this),
baseURL: config.baseURL,
});
}
parseHTTPResponse(response) {
const { LINE_REQUEST_ID_HTTP_HEADER_NAME } = Types;
let resBody = Object.assign({}, response.data);
if (response.headers[LINE_REQUEST_ID_HTTP_HEADER_NAME]) {
resBody[LINE_REQUEST_ID_HTTP_HEADER_NAME] =
response.headers[LINE_REQUEST_ID_HTTP_HEADER_NAME];
}
return resBody;
}
/**
* If the Standby Channel wants to take the initiative (Chat Control), it calls the Acquire Control API. The channel that was previously an Active Channel will automatically switch to a Standby Channel.
* @param chatId The `userId`, `roomId`, or `groupId`
* @param acquireChatControlRequest
*
* @see <a href="https://developers.line.biz/en/reference/partner-docs/#acquire-control-api"> Documentation</a>
*/
async acquireChatControl(chatId, acquireChatControlRequest) {
const params = acquireChatControlRequest;
const res = this.httpClient.post("/v2/bot/chat/{chatId}/control/acquire".replace("{chatId}", String(chatId)), params);
return (0, utils_1.ensureJSON)(res);
}
/**
* The module channel admin calls the Detach API to detach the module channel from a LINE Official Account.
* @param detachModuleRequest
*
* @see <a href="https://developers.line.biz/en/reference/partner-docs/#unlink-detach-module-channel-by-operation-mc-admin"> Documentation</a>
*/
async detachModule(detachModuleRequest) {
const params = detachModuleRequest;
const res = this.httpClient.post("/v2/bot/channel/detach", params);
return (0, utils_1.ensureJSON)(res);
}
/**
* Gets a list of basic information about the bots of multiple LINE Official Accounts that have attached module channels.
* @param start Value of the continuation token found in the next property of the JSON object returned in the response. If you can\'t get all basic information about the bots in one request, include this parameter to get the remaining array.
* @param limit Specify the maximum number of bots that you get basic information from. The default value is 100. Max value: 100
*
* @see <a href="https://developers.line.biz/en/reference/partner-docs/#get-multiple-bot-info-api"> Documentation</a>
*/
async getModules(start, limit) {
const queryParams = {
start: start,
limit: limit,
};
const res = this.httpClient.get("/v2/bot/list", queryParams);
return (0, utils_1.ensureJSON)(res);
}
/**
* To return the initiative (Chat Control) of Active Channel to Primary Channel, call the Release Control API.
* @param chatId The `userId`, `roomId`, or `groupId`
*
* @see <a href="https://developers.line.biz/en/reference/partner-docs/#release-control-api"> Documentation</a>
*/
async releaseChatControl(chatId) {
const res = this.httpClient.post("/v2/bot/chat/{chatId}/control/release".replace("{chatId}", String(chatId)));
return (0, utils_1.ensureJSON)(res);
}
}
exports.LineModuleClient = LineModuleClient;