oxford-dictionary-nodejs
Version:
A modern tiny nodeJS wrapper for the oxforddictionary.com V2 REST API.
171 lines (170 loc) • 8.48 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __asyncValues = (this && this.__asyncValues) || function (o) {
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
var m = o[Symbol.asyncIterator], i;
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.generatePath = exports.Dictionary = void 0;
var https = __importStar(require("https"));
var v2 = "/api/v2";
var defaultOptions = {
fields: undefined,
strictMatch: false,
};
var Dictionary = /** @class */ (function () {
function Dictionary(options) {
this.options = options;
}
/**
* /api/v2/entries/{source_lang}/{word_id}:
*
* Use this to retrieve definitions, pronunciations, example sentences, grammatical information and word origins.
*
* @param wordId
* @param options
*/
Dictionary.prototype.entries = function (wordId, opt) {
var path = exports.generatePath(wordId, opt);
return this.request(path);
};
Dictionary.prototype.request = function (path) {
var _this = this;
var options = {
host: "od-api.oxforddictionaries.com",
port: 443,
path: path,
method: "GET",
headers: {
app_id: this.options.appId,
app_key: this.options.appKey,
},
};
return new Promise(function (resolve, reject) {
https.get(options, function (res) { var res_1, res_1_1; return __awaiter(_this, void 0, void 0, function () {
var _body, data, e_1_1, body, isErrorHappend;
var e_1, _a;
var _b;
return __generator(this, function (_c) {
switch (_c.label) {
case 0:
_body = "";
_c.label = 1;
case 1:
_c.trys.push([1, 6, 7, 12]);
res_1 = __asyncValues(res);
_c.label = 2;
case 2: return [4 /*yield*/, res_1.next()];
case 3:
if (!(res_1_1 = _c.sent(), !res_1_1.done)) return [3 /*break*/, 5];
data = res_1_1.value;
_body += data;
_c.label = 4;
case 4: return [3 /*break*/, 2];
case 5: return [3 /*break*/, 12];
case 6:
e_1_1 = _c.sent();
e_1 = { error: e_1_1 };
return [3 /*break*/, 12];
case 7:
_c.trys.push([7, , 10, 11]);
if (!(res_1_1 && !res_1_1.done && (_a = res_1.return))) return [3 /*break*/, 9];
return [4 /*yield*/, _a.call(res_1)];
case 8:
_c.sent();
_c.label = 9;
case 9: return [3 /*break*/, 11];
case 10:
if (e_1) throw e_1.error;
return [7 /*endfinally*/];
case 11: return [7 /*endfinally*/];
case 12:
body = JSON.parse(_body);
isErrorHappend = !!body.error || res.statusCode !== 200;
if (isErrorHappend) {
reject(new Error((_b = body.error) !== null && _b !== void 0 ? _b : "Something error happend"));
}
resolve(body);
return [2 /*return*/];
}
});
}); });
});
};
return Dictionary;
}());
exports.Dictionary = Dictionary;
exports.generatePath = function (wordId, _a) {
var _b = _a === void 0 ? defaultOptions : _a, fields = _b.fields, strictMatch = _b.strictMatch;
// source_lang
var path = v2 + "/entries/en-gb/" + wordId;
var conjection = "?";
if (fields && fields.length > 0) {
var fields_q = separateWithComma(fields);
path += conjection + "fields=" + fields_q;
conjection = "&";
}
var strictMatch_q = strictMatch ? "true" : "false";
path += conjection + "strictMatch=" + strictMatch_q;
return encodeURI(path);
};
var separateWithComma = function (tokens) {
return tokens.reduce(function (prev, token) { return (prev === "" ? token : prev + "," + token); }, "");
};