Skip to content

feat: Add checkpoint loading for Contentstack sync initialization #75

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

Merged
merged 5 commits into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@contentstack/datasync-manager",
"author": "Contentstack LLC <support@contentstack.com>",
"version": "2.0.11",
"version": "2.1.0",
"description": "The primary module of Contentstack DataSync. Syncs Contentstack data with your server using Contentstack Sync API",
"main": "dist/index.js",
"dependencies": {
Expand Down
5 changes: 5 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,9 @@ export const config = {
saveFailedItems: true,
saveFilteredItems: true,
},
checkpoint: {
enabled: false, // Set to true if you want to enable checkpoint
filePath: ".checkpoint",
preserve: false // Set to true if you want to preserve the checkpoint file during clean operation
},
}
49 changes: 48 additions & 1 deletion src/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
* Copyright (c) 2019 Contentstack LLC
* MIT Licensed
*/

import * as fs from 'fs'
import * as path from 'path'
import Debug from 'debug'
import { EventEmitter } from 'events'
import { cloneDeep, remove } from 'lodash'
Expand All @@ -16,6 +17,7 @@ import { map } from '../util/promise.map'
import { netConnectivityIssues } from './inet'
import { Q as Queue } from './q'
import { getToken, saveCheckpoint } from './token-management'
import { sanitizePath } from '../plugins/helper'

interface IQueryString {
init?: true,
Expand Down Expand Up @@ -46,6 +48,11 @@ interface IToken {
name: string
token: string
}
interface ICheckpoint {
enabled: boolean,
filePath: string,
preserve:boolean
}

const debug = Debug('sync-core')
const emitter = new EventEmitter()
Expand Down Expand Up @@ -74,6 +81,7 @@ export const init = (contentStore, assetStore) => {
return new Promise((resolve, reject) => {
try {
Contentstack = config.contentstack
const checkPointConfig: ICheckpoint = config.checkpoint
const paths = config.paths
const environment = Contentstack.environment || process.env.NODE_ENV || 'development'
debug(`Environment: ${environment}`)
Expand All @@ -83,6 +91,7 @@ export const init = (contentStore, assetStore) => {
limit: config.syncManager.limit,
},
}
loadCheckpoint(checkPointConfig, paths);
if (typeof Contentstack.sync_token === 'string' && Contentstack.sync_token.length !== 0) {
request.qs.sync_token = Contentstack.sync_token
} else if (typeof Contentstack.pagination_token === 'string' && Contentstack.pagination_token.length !== 0) {
Expand Down Expand Up @@ -110,6 +119,44 @@ export const init = (contentStore, assetStore) => {
})
}

const loadCheckpoint = (checkPointConfig: ICheckpoint, paths: any): void => {
if (!checkPointConfig?.enabled) return;

// Try reading checkpoint from primary path
let checkpoint = readHiddenFile(paths.checkpoint);

// Fallback to filePath in config if not found
if (!checkpoint) {
const fallbackPath = path.join(
sanitizePath(__dirname),
sanitizePath(checkPointConfig.filePath || ".checkpoint")
);
checkpoint = readHiddenFile(fallbackPath);
}

// Set sync token if checkpoint is found
if (checkpoint) {
debug("Found sync token in checkpoint file:", checkpoint);
Contentstack.sync_token = checkpoint.token;
debug("Using sync token:", Contentstack.sync_token);
}
};


function readHiddenFile(filePath: string) {
try {
if (!fs.existsSync(filePath)) {
logger.error("File does not exist:", filePath);
return;
}
const data = fs.readFileSync(filePath, "utf8");
return JSON.parse(data);
} catch (err) {
logger.error("Error reading file:", err);
return undefined;
}
}

export const push = (data) => {
Q.emit('push', data)
}
Expand Down
81 changes: 43 additions & 38 deletions src/core/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,47 +19,52 @@ const pluginMethods = ['beforeSync', 'afterSync']
*/
export const load = (config) => {
debug('Plugins load called')
const pluginInstances = {
external: {},
internal: {},
}
const plugins = config.plugins || []
pluginMethods.forEach((pluginMethod) => {
pluginInstances.external[pluginMethod] = pluginInstances[pluginMethod] || []
pluginInstances.internal[pluginMethod] = pluginInstances[pluginMethod] || []
})

plugins.forEach((plugin) => {
validatePlugin(plugin)

const pluginName = plugin.name
const slicedName = pluginName.slice(0, 13)
let isInternal = false
if (slicedName === '_cs_internal_') {
isInternal = true
try {
const pluginInstances = {
external: {},
internal: {},
}

const pluginPath = normalizePluginPath(config, plugin, isInternal)
const Plugin = require(pluginPath)
Plugin.options = plugin.options || {}
// execute/initiate plugin
Plugin()
const plugins = config.plugins || []
pluginMethods.forEach((pluginMethod) => {
if (hasIn(Plugin, pluginMethod)) {
if (plugin.disabled) {
// do nothing
} else if (isInternal) {
pluginInstances.internal[pluginMethod].push(Plugin[pluginMethod])
pluginInstances.external[pluginMethod] = pluginInstances[pluginMethod] || []
pluginInstances.internal[pluginMethod] = pluginInstances[pluginMethod] || []
})

plugins.forEach((plugin) => {
validatePlugin(plugin)

const pluginName = plugin.name
const slicedName = pluginName.slice(0, 13)
let isInternal = false
if (slicedName === '_cs_internal_') {
isInternal = true
}

const pluginPath = normalizePluginPath(config, plugin, isInternal)
const Plugin = require(pluginPath)
Plugin.options = plugin.options || {}
// execute/initiate plugin
Plugin()
pluginMethods.forEach((pluginMethod) => {
if (hasIn(Plugin, pluginMethod)) {
if (plugin.disabled) {
// do nothing
} else if (isInternal) {
pluginInstances.internal[pluginMethod].push(Plugin[pluginMethod])
} else {
pluginInstances.external[pluginMethod].push(Plugin[pluginMethod])
}
debug(`${pluginMethod} loaded from ${pluginName} successfully!`)
} else {
pluginInstances.external[pluginMethod].push(Plugin[pluginMethod])
debug(`${pluginMethod} not found in ${pluginName}`)
}
debug(`${pluginMethod} loaded from ${pluginName} successfully!`)
} else {
debug(`${pluginMethod} not found in ${pluginName}`)
}
})
})
})
debug('Plugins loaded successfully!')

return pluginInstances
debug('Plugins loaded successfully!')

return pluginInstances
} catch (error) {
debug('Error while loading plugins:', error)
throw new Error(`Failed to load plugins: ${error?.message}`)
}
}
Loading