Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add transaction hook #339

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions hooks/sequelize-transaction-hook.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/* eslint-disable require-atomic-updates */
const start = (options = {}) => {
return async hook => {
if (
hook.params.transaction ||
(hook.params.sequelize && options.params.sequelize.transaction)
) {
// already in transaction probably in diffrent hook or service
// so we dont create or commit the transaction in this service
return hook;
}

const sequelize = await hook.app.get("sequelizeClient");
const transaction = await sequelize.transaction();

hook.params.transaction = transaction;
hook.params.transactionOwner = hook.path;
hook.params.sequelize = hook.params.sequelize || {};
hook.params.sequelize.transaction = transaction;

return hook;
};
};

const end = () => {
return hook => {
const { params } = hook.params;
if (
!params ||
!params.transactionOwner ||
params.transactionOwner !== hook.path
) {
// transaction probably from diffrent hook or service
// so we dont commit or rollback the transaction in this service
return hook;
}
const trx = params.sequelize.transaction || params.transaction;
return trx.then(t => t.commit()).then(() => hook);
};
};

const rollback = () => {
return hook => {
const { params } = hook.params;
if (
!params ||
!params.transactionOwner ||
params.transactionOwner !== hook.path
) {
// transaction probably from diffrent hook or service
// so we dont commit or rollback the transaction in this service
return hook;
}
const trx = params.sequelize.transaction || params.transaction;
return trx.then(t => t.rollback()).then(() => hook);
};
};

module.exports = {
transaction: {
start,
end,
rollback
}
};