weaviate-client
Version:
JS/TS client for Weaviate
44 lines (43 loc) • 1.49 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const commandBase_js_1 = require("../validation/commandBase.js");
const string_js_1 = require("../validation/string.js");
class Validator extends commandBase_js_1.CommandBase {
constructor(client) {
super(client);
this.withClassName = (className) => {
this.className = className;
return this;
};
this.withProperties = (properties) => {
this.properties = properties;
return this;
};
this.withId = (id) => {
this.id = id;
return this;
};
this.validateClassName = () => {
if (!(0, string_js_1.isValidStringProperty)(this.className)) {
this.addError('className must be set - set with .withClassName(className)');
}
};
this.payload = () => ({
properties: this.properties,
class: this.className,
id: this.id,
});
this.validate = () => {
this.validateClassName();
};
this.do = () => {
this.validate();
if (this.errors.length > 0) {
return Promise.reject(new Error('invalid usage: ' + this.errors.join(', ')));
}
const path = `/objects/validate`;
return this.client.postEmpty(path, this.payload()).then(() => true);
};
}
}
exports.default = Validator;