-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add cart-cleanup implementation * import cart cleanup job and call its function * update cart cleanup job to remove stale cart for anonymous user * update registry schema to hold cart cleanup schedule and reminder * add cart cleanup schedule and email reminder fields to view * update reminder and cleanup field in shops settings to hold default values * update select dropdown values and placeholder in view * update cart cleanup job for users with account * remove unnecessary field * remove unnecessary field and fix indent issue * refactor cart cleanup job * remove dropdown and style fix * proper naming field * update job to cleanup anonymous user cart and account * export session collection * update cart cleanup job to clear anonymous user's session * add cart cleanupDurationDays to reaction.json.example * update job to run after settings has been loaded from reaction.json * correct misleading placeholder * refactor job to purge anonymous user stale carts/account/sessions * add JSDoc for purge function * add function that fetches stale carts * implement review
- Loading branch information
1 parent
f5c3511
commit 03e63e4
Showing
6 changed files
with
101 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import "./jobs/exchangerates"; | ||
import "./jobs/cleanup"; | ||
import "./jobs/cart"; | ||
import cleanupJob from "./jobs/cleanup"; | ||
import fetchRateJobs from "./jobs/exchangerates"; | ||
import cartCleanupJob from "./jobs/cart"; | ||
import "./i18n"; | ||
|
||
cleanupJob(); | ||
fetchRateJobs(); | ||
cartCleanupJob(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import later from "later"; | ||
import moment from "moment"; | ||
import { Accounts, Cart, Jobs } from "/lib/collections"; | ||
import { Hooks, Logger, Reaction } from "/server/api"; | ||
import { ServerSessions } from "/server/publications/collections/sessions"; | ||
|
||
|
||
Hooks.Events.add("afterCoreInit", () => { | ||
Logger.debug("Adding Job removeStaleCart and Accounts to jobControl"); | ||
const settings = Reaction.getShopSettings(); | ||
if (settings.cart) { | ||
new Job(Jobs, "cart/removeFromCart", {}) | ||
.priority("normal") | ||
.retry({ | ||
retries: 5, | ||
wait: 60000, | ||
backoff: "exponential" // delay by twice as long for each subsequent retry | ||
}) | ||
.repeat({ | ||
schedule: later.parse.text("every day") | ||
}) | ||
.save({ | ||
cancelRepeats: true | ||
}); | ||
} else { | ||
Logger.warn("No cart cleanup schedule"); | ||
} | ||
}); | ||
|
||
/** | ||
* {Function} that fetches stale carts | ||
* @param {Object} olderThan older than date | ||
* @return {Object} stale carts | ||
*/ | ||
const getstaleCarts = (olderThan) => { | ||
return Cart.find({ updatedAt: { $lte: olderThan } }).fetch(); | ||
}; | ||
|
||
export default () => { | ||
const removeStaleCart = Jobs.processJobs("cart/removeFromCart", { | ||
pollInterval: 60 * 60 * 1000, // backup polling, see observer below | ||
workTimeout: 180 * 1000 | ||
}, (job, callback) => { | ||
Logger.debug("Processing cart/removeFromCart"); | ||
const settings = Reaction.getShopSettings(); | ||
if (settings.cart) { | ||
const schedule = (settings.cart.cleanupDurationDays).match(/\d/);// configurable in shop settings | ||
const olderThan = moment().subtract(Number(schedule[0]), "days")._d; | ||
const carts = getstaleCarts(olderThan); | ||
carts.forEach(cart => { | ||
const user = Accounts.findOne({ _id: cart.userId }); | ||
if (!user.emails.length) { | ||
const removeCart = Cart.remove({ userId: user._id }); | ||
const removeAccount = Accounts.remove( | ||
{ | ||
_id: cart.userId, | ||
emails: [] | ||
} | ||
); | ||
const destroySession = ServerSessions.remove({ _id: cart.sessionId }); | ||
Meteor.users.remove({ _id: user._id, emails: [] }); // clears out anonymous user | ||
if (removeCart && removeAccount && destroySession) { | ||
const success = "Stale anonymous user cart and account successfully cleaned"; | ||
Logger.debug(success); | ||
job.done(success, { repeatId: true }); | ||
} | ||
} else { | ||
Cart.remove({ userId: user._id }); | ||
const success = "Stale user cart successfully cleaned"; | ||
Logger.debug(success); | ||
job.done(success, { repeatId: true }); | ||
} | ||
}); | ||
} else { | ||
Logger.warn("No cart cleanup schedule"); | ||
} | ||
callback(); | ||
}); | ||
Jobs.find({ | ||
type: "cart/removeFromCart", | ||
status: "ready" | ||
}).observe({ | ||
added() { | ||
return removeStaleCart.trigger(); | ||
} | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters