fog-controller
Version:
Fog Controller project @ iotracks.com
110 lines (79 loc) • 3.92 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
//{status: 400, error: 'message'};
var reportError = function reportError(res, status, error) {
res.status(status);
res.send({ message: error });
return;
};
var caughtError = function caughtError(res, error) {
if (error != null && (error instanceof BadRequestError || error instanceof InternalServerError || error instanceof NotFoundError)) {
console.log('Caught error: ' + error.message);
if (error instanceof BadRequestError) res.status(400);else if (error instanceof NotFoundError) res.status(404);else if (error instanceof InternalServerError) res.status(500);else if (error instanceof AccessDeniedError) res.status(401);
res.send({ message: error.message });
return;
} else {
console.log('Caught error: ' + error);
console.log(error.stack);
res.status(500);
res.send({ message: 'Hmm, what you have encountered is unexpected. If problem persists, contact app provider.' });
return;
}
};
var NotFoundError = function (_Error) {
_inherits(NotFoundError, _Error);
function NotFoundError(message) {
_classCallCheck(this, NotFoundError);
var _this = _possibleConstructorReturn(this, (NotFoundError.__proto__ || Object.getPrototypeOf(NotFoundError)).call(this, message));
_this.message = message;
_this.name = 'NotFoundError';
return _this;
}
return NotFoundError;
}(Error);
var BadRequestError = function (_Error2) {
_inherits(BadRequestError, _Error2);
function BadRequestError(message) {
_classCallCheck(this, BadRequestError);
var _this2 = _possibleConstructorReturn(this, (BadRequestError.__proto__ || Object.getPrototypeOf(BadRequestError)).call(this, message));
_this2.message = message;
_this2.name = 'BadRequestError';
return _this2;
}
return BadRequestError;
}(Error);
var InternalServerError = function (_Error3) {
_inherits(InternalServerError, _Error3);
function InternalServerError(message) {
_classCallCheck(this, InternalServerError);
var _this3 = _possibleConstructorReturn(this, (InternalServerError.__proto__ || Object.getPrototypeOf(InternalServerError)).call(this, message));
_this3.message = message;
_this3.name = 'InternalServerError';
return _this3;
}
return InternalServerError;
}(Error);
var AccessDeniedError = function (_Error4) {
_inherits(AccessDeniedError, _Error4);
function AccessDeniedError(message) {
_classCallCheck(this, AccessDeniedError);
var _this4 = _possibleConstructorReturn(this, (AccessDeniedError.__proto__ || Object.getPrototypeOf(AccessDeniedError)).call(this, message));
_this4.message = message;
_this4.name = 'AccessDeniedError';
return _this4;
}
return AccessDeniedError;
}(Error);
exports.default = {
reportError: reportError,
NotFoundError: NotFoundError,
AccessDeniedError: AccessDeniedError,
BadRequestError: BadRequestError,
InternalServerError: InternalServerError,
caughtError: caughtError
};