-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
168 lines (168 loc) · 6.24 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
"use strict";
/**
* The Classr MLaaS SDK.
*
* @author Saul Johnson <[email protected]>
* @since 15/01/2023
*/
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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Classr = exports.getInfo = exports.classify = void 0;
const axios_1 = __importStar(require("axios"));
/**
* The default base API URL (the URL of the official Classr API).
*/
const DEFAULT_BASE_URL = 'https://www.classr.dev/';
/**
* Validates that a UUID is well-formed.
*
* @param uuid the UUID to validate
* @returns true if the UUID is well-formed, otherwise false
*/
function validateUuid(uuid) {
return /^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(uuid);
}
/**
* Classifies an unseen document using the classifier with the specified UUID.
*
* @param classifierUuid the UUID of the classifier
* @param document the document to classify
* @param baseUrl the base URL of the API to use (optional, defaults to the official API)
* @returns the predicted class of the document
*/
function classify(classifierUuid, document, baseUrl = DEFAULT_BASE_URL) {
return __awaiter(this, void 0, void 0, function* () {
// Check validity of UUID.
if (!validateUuid(classifierUuid)) {
throw new Error('The UUID provided is not valid.');
}
// Send off API request.
try {
const response = yield axios_1.default.post(`/api/classifier/${classifierUuid}`, { document }, {
baseURL: baseUrl,
});
// Return info.
return response.data.class;
}
catch (e) {
if (e instanceof axios_1.AxiosError) { // Narrow type.
switch (e.status) {
case 404:
throw new Error(`A classifier with UUID ${classifierUuid} could not be found.`);
case 413:
throw new Error('The document provided was too large.');
case 429:
throw new Error(`You are making too many calls to the Classr API. Please wait a while and try again.`);
default:
throw e;
}
}
else {
throw e;
}
}
});
}
exports.classify = classify;
/**
* Gets information about the classifier with the specified UUID.
*
* @param classifierUuid the UUID of the classifier
* @param baseUrl the base URL of the API to use (optional, defaults to the official API)
* @returns information about the classifier.
*/
function getInfo(classifierUuid, document, baseUrl = DEFAULT_BASE_URL) {
return __awaiter(this, void 0, void 0, function* () {
// Check validity of UUID.
if (!validateUuid(classifierUuid)) {
throw new Error('The UUID provided is not valid.');
}
// Send off API request.
try {
const response = yield axios_1.default.get(`/api/classifier/${classifierUuid}`, {
baseURL: baseUrl,
headers: {
'accept': 'application/json',
},
});
// Return info.
return response.data;
}
catch (e) {
if (e instanceof axios_1.AxiosError) { // Narrow type.
switch (e.status) {
case 404:
throw new Error(`A classifier with UUID ${classifierUuid} could not be found.`);
case 429:
throw new Error(`You are making too many calls to the Classr API. Please wait a while and try again.`);
default:
throw e;
}
}
else {
throw e;
}
}
});
}
exports.getInfo = getInfo;
/**
* Represents a cloud-based classifier on the Classr platform.
*/
class Classr {
/**
* Initializes a new instance of a cloud-based classifier on the Classr platform.
*
* @param classifierUuid the UUID of the classifier
* @param baseUrl the base URL of the API to use (optional, defaults to the official API)
*/
constructor(classifierUuid, baseUrl = DEFAULT_BASE_URL) {
this.classifierUuid = classifierUuid;
this.baseUrl = baseUrl;
}
/**
* Classifies an unseen document using the classifier.
*
* @param document the document to classify
* @returns the predicted class of the document
*/
classify(document) {
return classify(this.classifierUuid, document, this.baseUrl);
}
/**
* Gets information about the classifier.
*
* @returns information about the classifier
*/
getInfo() {
return getInfo(this.classifierUuid, this.baseUrl);
}
}
exports.Classr = Classr;