2016-03-09 23:37:54 +00:00
|
|
|
var EventData = require('./eventData');
|
|
|
|
var results = require('./results');
|
|
|
|
|
|
|
|
const expectedVersion = {
|
|
|
|
any: -2,
|
|
|
|
noStream: -1,
|
|
|
|
emptyStream: -1
|
|
|
|
};
|
|
|
|
const positions = {
|
|
|
|
start: new results.Position(0, 0),
|
|
|
|
end: new results.Position(-1, -1)
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} eventId
|
2016-03-15 00:55:35 +00:00
|
|
|
* @param {object} event
|
2016-03-09 23:37:54 +00:00
|
|
|
* @param {object} [metadata]
|
|
|
|
* @param {string} [type]
|
|
|
|
* @returns {EventData}
|
|
|
|
*/
|
2016-03-15 00:55:35 +00:00
|
|
|
function jsonEventDataFactory(eventId, event, metadata, type) {
|
|
|
|
if (!event || typeof event !== 'object') throw new TypeError("data must be an object.");
|
2016-03-09 23:37:54 +00:00
|
|
|
|
2016-03-15 00:55:35 +00:00
|
|
|
var eventBuf = new Buffer(JSON.stringify(event));
|
|
|
|
var metaBuf = metadata ? new Buffer(JSON.stringify(metadata)) : null;
|
|
|
|
return new EventData(eventId, type || event.constructor.name, true, eventBuf, metaBuf);
|
2016-03-09 23:37:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} eventId
|
|
|
|
* @param {string} type
|
|
|
|
* @param {boolean} isJson
|
|
|
|
* @param {Buffer} data
|
|
|
|
* @param {Buffer} [metadata]
|
|
|
|
* @returns {EventData}
|
|
|
|
*/
|
|
|
|
function eventDataFactory(eventId, type, isJson, data, metadata) {
|
|
|
|
return new EventData(eventId, type, isJson, data, metadata);
|
|
|
|
}
|
|
|
|
|
2016-03-14 01:38:42 +00:00
|
|
|
// Exporting classes
|
2016-03-09 23:37:54 +00:00
|
|
|
module.exports.EventStoreConnection = require('./eventStoreConnection');
|
|
|
|
module.exports.UserCredentials = require('./systemData/userCredentials');
|
|
|
|
module.exports.EventData = EventData;
|
2016-03-11 06:57:39 +00:00
|
|
|
module.exports.PersistentSubscriptionSettings = require('./persistentSubscriptionSettings');
|
|
|
|
module.exports.SystemConsumerStrategies = require('./systemConsumerStrategies');
|
2016-03-14 01:38:42 +00:00
|
|
|
// Exporting errors
|
2016-03-11 23:55:27 +00:00
|
|
|
module.exports.WrongExpectedVersionError = require('./errors/wrongExpectedVersionError');
|
|
|
|
module.exports.StreamDeletedError = require('./errors/streamDeletedError');
|
|
|
|
module.exports.AccessDeniedError = require('./errors/accessDeniedError');
|
2016-03-14 01:38:42 +00:00
|
|
|
// Exporting enums/constants
|
2016-03-09 23:37:54 +00:00
|
|
|
module.exports.expectedVersion = expectedVersion;
|
|
|
|
module.exports.positions = positions;
|
2016-03-11 23:55:27 +00:00
|
|
|
module.exports.systemMetadata = require('./common/systemMetadata');
|
2016-03-14 01:38:42 +00:00
|
|
|
module.exports.eventReadStatus = results.EventReadStatus;
|
2016-03-15 00:55:35 +00:00
|
|
|
module.exports.sliceReadStatus = require('./sliceReadStatus');
|
2016-03-09 23:37:54 +00:00
|
|
|
// Helper functions
|
|
|
|
module.exports.createConnection = module.exports.EventStoreConnection.create;
|
|
|
|
module.exports.createEventData = eventDataFactory;
|
|
|
|
module.exports.createJsonEventData = jsonEventDataFactory;
|