@webiny/api-headless-cms-ddb-es 5.40.5 → 5.40.6-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,15 +9,15 @@ var _error = _interopRequireDefault(require("@webiny/error"));
9
9
  var _CmsEntryFilterPlugin = require("../../../../../plugins/CmsEntryFilterPlugin");
10
10
  var _apiElasticsearch = require("@webiny/api-elasticsearch");
11
11
  const createRefFilterPlugin = () => {
12
- return new _CmsEntryFilterPlugin.CmsEntryFilterPlugin({
12
+ const plugin = new _CmsEntryFilterPlugin.CmsEntryFilterPlugin({
13
13
  fieldType: "ref",
14
14
  exec: params => {
15
15
  const {
16
16
  applyFiltering,
17
- value: values,
18
17
  query,
19
18
  field
20
19
  } = params;
20
+ let values = params.value;
21
21
  /**
22
22
  * We must have an object when querying in the ref field.
23
23
  */
@@ -26,6 +26,11 @@ const createRefFilterPlugin = () => {
26
26
  value: values
27
27
  });
28
28
  }
29
+ if (values === null || values === undefined) {
30
+ values = {
31
+ entryId: null
32
+ };
33
+ }
29
34
  for (const key in values) {
30
35
  const {
31
36
  operator
@@ -44,6 +49,8 @@ const createRefFilterPlugin = () => {
44
49
  }
45
50
  }
46
51
  });
52
+ plugin.name = `${plugin.type}.default.ref`;
53
+ return plugin;
47
54
  };
48
55
  exports.createRefFilterPlugin = createRefFilterPlugin;
49
56
 
@@ -1 +1 @@
1
- {"version":3,"names":["_error","_interopRequireDefault","require","_CmsEntryFilterPlugin","_apiElasticsearch","createRefFilterPlugin","CmsEntryFilterPlugin","fieldType","exec","params","applyFiltering","value","values","query","field","WebinyError","key","operator","parseWhereKey","undefined","exports"],"sources":["refFilterPlugin.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\nimport { CmsEntryFilterPlugin } from \"~/plugins/CmsEntryFilterPlugin\";\nimport { parseWhereKey } from \"@webiny/api-elasticsearch\";\n\nexport const createRefFilterPlugin = () => {\n return new CmsEntryFilterPlugin({\n fieldType: \"ref\",\n exec: params => {\n const { applyFiltering, value: values, query, field } = params;\n /**\n * We must have an object when querying in the ref field.\n */\n if (typeof values !== \"object\") {\n throw new WebinyError(\n `When querying by ref field, value of the field must be an object.`,\n \"OBJECT_REQUIRED\",\n {\n value: values\n }\n );\n }\n\n for (const key in values) {\n const { operator } = parseWhereKey(key);\n const value = values[key];\n if (value === undefined) {\n continue;\n }\n\n applyFiltering({\n query,\n field,\n operator,\n key,\n value\n });\n }\n }\n });\n};\n"],"mappings":";;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,qBAAA,GAAAD,OAAA;AACA,IAAAE,iBAAA,GAAAF,OAAA;AAEO,MAAMG,qBAAqB,GAAGA,CAAA,KAAM;EACvC,OAAO,IAAIC,0CAAoB,CAAC;IAC5BC,SAAS,EAAE,KAAK;IAChBC,IAAI,EAAEC,MAAM,IAAI;MACZ,MAAM;QAAEC,cAAc;QAAEC,KAAK,EAAEC,MAAM;QAAEC,KAAK;QAAEC;MAAM,CAAC,GAAGL,MAAM;MAC9D;AACZ;AACA;MACY,IAAI,OAAOG,MAAM,KAAK,QAAQ,EAAE;QAC5B,MAAM,IAAIG,cAAW,CAChB,mEAAkE,EACnE,iBAAiB,EACjB;UACIJ,KAAK,EAAEC;QACX,CACJ,CAAC;MACL;MAEA,KAAK,MAAMI,GAAG,IAAIJ,MAAM,EAAE;QACtB,MAAM;UAAEK;QAAS,CAAC,GAAG,IAAAC,+BAAa,EAACF,GAAG,CAAC;QACvC,MAAML,KAAK,GAAGC,MAAM,CAACI,GAAG,CAAC;QACzB,IAAIL,KAAK,KAAKQ,SAAS,EAAE;UACrB;QACJ;QAEAT,cAAc,CAAC;UACXG,KAAK;UACLC,KAAK;UACLG,QAAQ;UACRD,GAAG;UACHL;QACJ,CAAC,CAAC;MACN;IACJ;EACJ,CAAC,CAAC;AACN,CAAC;AAACS,OAAA,CAAAf,qBAAA,GAAAA,qBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_error","_interopRequireDefault","require","_CmsEntryFilterPlugin","_apiElasticsearch","createRefFilterPlugin","plugin","CmsEntryFilterPlugin","fieldType","exec","params","applyFiltering","query","field","values","value","WebinyError","undefined","entryId","key","operator","parseWhereKey","name","type","exports"],"sources":["refFilterPlugin.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\nimport { CmsEntryFilterPlugin } from \"~/plugins/CmsEntryFilterPlugin\";\nimport { parseWhereKey } from \"@webiny/api-elasticsearch\";\n\nexport const createRefFilterPlugin = () => {\n const plugin = new CmsEntryFilterPlugin({\n fieldType: \"ref\",\n exec: params => {\n const { applyFiltering, query, field } = params;\n\n let values = params.value;\n /**\n * We must have an object when querying in the ref field.\n */\n if (typeof values !== \"object\") {\n throw new WebinyError(\n `When querying by ref field, value of the field must be an object.`,\n \"OBJECT_REQUIRED\",\n {\n value: values\n }\n );\n }\n\n if (values === null || values === undefined) {\n values = {\n entryId: null\n };\n }\n\n for (const key in values) {\n const { operator } = parseWhereKey(key);\n const value = values[key];\n if (value === undefined) {\n continue;\n }\n\n applyFiltering({\n query,\n field,\n operator,\n key,\n value\n });\n }\n }\n });\n\n plugin.name = `${plugin.type}.default.ref`;\n\n return plugin;\n};\n"],"mappings":";;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,qBAAA,GAAAD,OAAA;AACA,IAAAE,iBAAA,GAAAF,OAAA;AAEO,MAAMG,qBAAqB,GAAGA,CAAA,KAAM;EACvC,MAAMC,MAAM,GAAG,IAAIC,0CAAoB,CAAC;IACpCC,SAAS,EAAE,KAAK;IAChBC,IAAI,EAAEC,MAAM,IAAI;MACZ,MAAM;QAAEC,cAAc;QAAEC,KAAK;QAAEC;MAAM,CAAC,GAAGH,MAAM;MAE/C,IAAII,MAAM,GAAGJ,MAAM,CAACK,KAAK;MACzB;AACZ;AACA;MACY,IAAI,OAAOD,MAAM,KAAK,QAAQ,EAAE;QAC5B,MAAM,IAAIE,cAAW,CAChB,mEAAkE,EACnE,iBAAiB,EACjB;UACID,KAAK,EAAED;QACX,CACJ,CAAC;MACL;MAEA,IAAIA,MAAM,KAAK,IAAI,IAAIA,MAAM,KAAKG,SAAS,EAAE;QACzCH,MAAM,GAAG;UACLI,OAAO,EAAE;QACb,CAAC;MACL;MAEA,KAAK,MAAMC,GAAG,IAAIL,MAAM,EAAE;QACtB,MAAM;UAAEM;QAAS,CAAC,GAAG,IAAAC,+BAAa,EAACF,GAAG,CAAC;QACvC,MAAMJ,KAAK,GAAGD,MAAM,CAACK,GAAG,CAAC;QACzB,IAAIJ,KAAK,KAAKE,SAAS,EAAE;UACrB;QACJ;QAEAN,cAAc,CAAC;UACXC,KAAK;UACLC,KAAK;UACLO,QAAQ;UACRD,GAAG;UACHJ;QACJ,CAAC,CAAC;MACN;IACJ;EACJ,CAAC,CAAC;EAEFT,MAAM,CAACgB,IAAI,GAAI,GAAEhB,MAAM,CAACiB,IAAK,cAAa;EAE1C,OAAOjB,MAAM;AACjB,CAAC;AAACkB,OAAA,CAAAnB,qBAAA,GAAAA,qBAAA","ignoreList":[]}
@@ -15,7 +15,11 @@ const createElasticsearchSort = params => {
15
15
  plugins
16
16
  } = params;
17
17
  if (!sort || sort.length === 0) {
18
- return [];
18
+ return [{
19
+ ["id.keyword"]: {
20
+ order: "asc"
21
+ }
22
+ }];
19
23
  }
20
24
  const searchPlugins = (0, _search.createSearchPluginList)({
21
25
  plugins
@@ -1 +1 @@
1
- {"version":3,"names":["_apiElasticsearch","require","_keyword","_search","_path","createElasticsearchSort","params","sort","modelFields","plugins","length","searchPlugins","createSearchPluginList","createFieldPath","createFieldPathFactory","fieldIdToStorageIdIdMap","sortPlugins","Object","values","reduce","field","parents","fieldId","storageId","path","key","value","keyword","ElasticsearchFieldPlugin","unmappedType","hasKeyword","sortable","searchable","ALL","transformedSort","map","matched","match","order","filter","Boolean","createSort","fieldPlugins","exports"],"sources":["sort.ts"],"sourcesContent":["import { Sort as esSort } from \"@webiny/api-elasticsearch/types\";\nimport { createSort, ElasticsearchFieldPlugin } from \"@webiny/api-elasticsearch\";\nimport { PluginsContainer } from \"@webiny/plugins\";\nimport { CmsEntryListSort, CmsModel } from \"@webiny/api-headless-cms/types\";\nimport { ModelFields } from \"./types\";\nimport { hasKeyword } from \"~/operations/entry/elasticsearch/keyword\";\nimport { createSearchPluginList } from \"~/operations/entry/elasticsearch/plugins/search\";\nimport { createFieldPathFactory } from \"~/operations/entry/elasticsearch/filtering/path\";\n\ninterface Params {\n plugins: PluginsContainer;\n sort?: CmsEntryListSort;\n modelFields: ModelFields;\n model: CmsModel;\n}\nexport const createElasticsearchSort = (params: Params): esSort => {\n const { sort, modelFields, plugins } = params;\n\n if (!sort || sort.length === 0) {\n return [];\n }\n\n const searchPlugins = createSearchPluginList({\n plugins\n });\n\n const createFieldPath = createFieldPathFactory({\n plugins: searchPlugins\n });\n\n const fieldIdToStorageIdIdMap: Record<string, string> = {};\n\n const sortPlugins = Object.values(modelFields).reduce<Record<string, ElasticsearchFieldPlugin>>(\n (plugins, field) => {\n /**\n * We do not support sorting by nested fields.\n */\n if (field.parents.length > 0) {\n return plugins;\n }\n const { fieldId, storageId } = field.field;\n\n fieldIdToStorageIdIdMap[fieldId] = fieldId;\n\n const { path } = createFieldPath({\n key: storageId,\n field,\n value: \"\",\n keyword: false\n });\n /**\n * Plugins must be stored with fieldId as key because it is later used to find the sorting plugin.\n */\n plugins[fieldId] = new ElasticsearchFieldPlugin({\n unmappedType: field.unmappedType,\n keyword: hasKeyword(field),\n sortable: field.sortable,\n searchable: field.searchable,\n field: fieldId,\n path\n });\n return plugins;\n },\n {\n [\"*\"]: new ElasticsearchFieldPlugin({\n field: ElasticsearchFieldPlugin.ALL,\n keyword: false\n })\n }\n );\n\n const transformedSort = sort\n .map(value => {\n const matched = value.match(/^([a-zA-Z-0-9_]+)_(ASC|DESC)$/);\n if (!matched) {\n return null;\n }\n const [, fieldId, order] = matched;\n if (fieldIdToStorageIdIdMap[fieldId]) {\n return `${fieldIdToStorageIdIdMap[fieldId]}_${order}`;\n }\n\n return value;\n })\n .filter(Boolean) as string[];\n return createSort({\n fieldPlugins: sortPlugins,\n sort: transformedSort\n });\n};\n"],"mappings":";;;;;;AACA,IAAAA,iBAAA,GAAAC,OAAA;AAIA,IAAAC,QAAA,GAAAD,OAAA;AACA,IAAAE,OAAA,GAAAF,OAAA;AACA,IAAAG,KAAA,GAAAH,OAAA;AAQO,MAAMI,uBAAuB,GAAIC,MAAc,IAAa;EAC/D,MAAM;IAAEC,IAAI;IAAEC,WAAW;IAAEC;EAAQ,CAAC,GAAGH,MAAM;EAE7C,IAAI,CAACC,IAAI,IAAIA,IAAI,CAACG,MAAM,KAAK,CAAC,EAAE;IAC5B,OAAO,EAAE;EACb;EAEA,MAAMC,aAAa,GAAG,IAAAC,8BAAsB,EAAC;IACzCH;EACJ,CAAC,CAAC;EAEF,MAAMI,eAAe,GAAG,IAAAC,4BAAsB,EAAC;IAC3CL,OAAO,EAAEE;EACb,CAAC,CAAC;EAEF,MAAMI,uBAA+C,GAAG,CAAC,CAAC;EAE1D,MAAMC,WAAW,GAAGC,MAAM,CAACC,MAAM,CAACV,WAAW,CAAC,CAACW,MAAM,CACjD,CAACV,OAAO,EAAEW,KAAK,KAAK;IAChB;AACZ;AACA;IACY,IAAIA,KAAK,CAACC,OAAO,CAACX,MAAM,GAAG,CAAC,EAAE;MAC1B,OAAOD,OAAO;IAClB;IACA,MAAM;MAAEa,OAAO;MAAEC;IAAU,CAAC,GAAGH,KAAK,CAACA,KAAK;IAE1CL,uBAAuB,CAACO,OAAO,CAAC,GAAGA,OAAO;IAE1C,MAAM;MAAEE;IAAK,CAAC,GAAGX,eAAe,CAAC;MAC7BY,GAAG,EAAEF,SAAS;MACdH,KAAK;MACLM,KAAK,EAAE,EAAE;MACTC,OAAO,EAAE;IACb,CAAC,CAAC;IACF;AACZ;AACA;IACYlB,OAAO,CAACa,OAAO,CAAC,GAAG,IAAIM,0CAAwB,CAAC;MAC5CC,YAAY,EAAET,KAAK,CAACS,YAAY;MAChCF,OAAO,EAAE,IAAAG,mBAAU,EAACV,KAAK,CAAC;MAC1BW,QAAQ,EAAEX,KAAK,CAACW,QAAQ;MACxBC,UAAU,EAAEZ,KAAK,CAACY,UAAU;MAC5BZ,KAAK,EAAEE,OAAO;MACdE;IACJ,CAAC,CAAC;IACF,OAAOf,OAAO;EAClB,CAAC,EACD;IACI,CAAC,GAAG,GAAG,IAAImB,0CAAwB,CAAC;MAChCR,KAAK,EAAEQ,0CAAwB,CAACK,GAAG;MACnCN,OAAO,EAAE;IACb,CAAC;EACL,CACJ,CAAC;EAED,MAAMO,eAAe,GAAG3B,IAAI,CACvB4B,GAAG,CAACT,KAAK,IAAI;IACV,MAAMU,OAAO,GAAGV,KAAK,CAACW,KAAK,CAAC,+BAA+B,CAAC;IAC5D,IAAI,CAACD,OAAO,EAAE;MACV,OAAO,IAAI;IACf;IACA,MAAM,GAAGd,OAAO,EAAEgB,KAAK,CAAC,GAAGF,OAAO;IAClC,IAAIrB,uBAAuB,CAACO,OAAO,CAAC,EAAE;MAClC,OAAQ,GAAEP,uBAAuB,CAACO,OAAO,CAAE,IAAGgB,KAAM,EAAC;IACzD;IAEA,OAAOZ,KAAK;EAChB,CAAC,CAAC,CACDa,MAAM,CAACC,OAAO,CAAa;EAChC,OAAO,IAAAC,4BAAU,EAAC;IACdC,YAAY,EAAE1B,WAAW;IACzBT,IAAI,EAAE2B;EACV,CAAC,CAAC;AACN,CAAC;AAACS,OAAA,CAAAtC,uBAAA,GAAAA,uBAAA","ignoreList":[]}
1
+ {"version":3,"names":["_apiElasticsearch","require","_keyword","_search","_path","createElasticsearchSort","params","sort","modelFields","plugins","length","order","searchPlugins","createSearchPluginList","createFieldPath","createFieldPathFactory","fieldIdToStorageIdIdMap","sortPlugins","Object","values","reduce","field","parents","fieldId","storageId","path","key","value","keyword","ElasticsearchFieldPlugin","unmappedType","hasKeyword","sortable","searchable","ALL","transformedSort","map","matched","match","filter","Boolean","createSort","fieldPlugins","exports"],"sources":["sort.ts"],"sourcesContent":["import { Sort as esSort } from \"@webiny/api-elasticsearch/types\";\nimport { createSort, ElasticsearchFieldPlugin } from \"@webiny/api-elasticsearch\";\nimport { PluginsContainer } from \"@webiny/plugins\";\nimport { CmsEntryListSort, CmsModel } from \"@webiny/api-headless-cms/types\";\nimport { ModelFields } from \"./types\";\nimport { hasKeyword } from \"~/operations/entry/elasticsearch/keyword\";\nimport { createSearchPluginList } from \"~/operations/entry/elasticsearch/plugins/search\";\nimport { createFieldPathFactory } from \"~/operations/entry/elasticsearch/filtering/path\";\n\ninterface Params {\n plugins: PluginsContainer;\n sort?: CmsEntryListSort;\n modelFields: ModelFields;\n model: CmsModel;\n}\nexport const createElasticsearchSort = (params: Params): esSort => {\n const { sort, modelFields, plugins } = params;\n\n if (!sort || sort.length === 0) {\n return [\n {\n [\"id.keyword\"]: {\n order: \"asc\"\n }\n }\n ];\n }\n\n const searchPlugins = createSearchPluginList({\n plugins\n });\n\n const createFieldPath = createFieldPathFactory({\n plugins: searchPlugins\n });\n\n const fieldIdToStorageIdIdMap: Record<string, string> = {};\n\n const sortPlugins = Object.values(modelFields).reduce<Record<string, ElasticsearchFieldPlugin>>(\n (plugins, field) => {\n /**\n * We do not support sorting by nested fields.\n */\n if (field.parents.length > 0) {\n return plugins;\n }\n const { fieldId, storageId } = field.field;\n\n fieldIdToStorageIdIdMap[fieldId] = fieldId;\n\n const { path } = createFieldPath({\n key: storageId,\n field,\n value: \"\",\n keyword: false\n });\n /**\n * Plugins must be stored with fieldId as key because it is later used to find the sorting plugin.\n */\n plugins[fieldId] = new ElasticsearchFieldPlugin({\n unmappedType: field.unmappedType,\n keyword: hasKeyword(field),\n sortable: field.sortable,\n searchable: field.searchable,\n field: fieldId,\n path\n });\n return plugins;\n },\n {\n [\"*\"]: new ElasticsearchFieldPlugin({\n field: ElasticsearchFieldPlugin.ALL,\n keyword: false\n })\n }\n );\n\n const transformedSort = sort\n .map(value => {\n const matched = value.match(/^([a-zA-Z-0-9_]+)_(ASC|DESC)$/);\n if (!matched) {\n return null;\n }\n const [, fieldId, order] = matched;\n if (fieldIdToStorageIdIdMap[fieldId]) {\n return `${fieldIdToStorageIdIdMap[fieldId]}_${order}`;\n }\n\n return value;\n })\n .filter(Boolean) as string[];\n return createSort({\n fieldPlugins: sortPlugins,\n sort: transformedSort\n });\n};\n"],"mappings":";;;;;;AACA,IAAAA,iBAAA,GAAAC,OAAA;AAIA,IAAAC,QAAA,GAAAD,OAAA;AACA,IAAAE,OAAA,GAAAF,OAAA;AACA,IAAAG,KAAA,GAAAH,OAAA;AAQO,MAAMI,uBAAuB,GAAIC,MAAc,IAAa;EAC/D,MAAM;IAAEC,IAAI;IAAEC,WAAW;IAAEC;EAAQ,CAAC,GAAGH,MAAM;EAE7C,IAAI,CAACC,IAAI,IAAIA,IAAI,CAACG,MAAM,KAAK,CAAC,EAAE;IAC5B,OAAO,CACH;MACI,CAAC,YAAY,GAAG;QACZC,KAAK,EAAE;MACX;IACJ,CAAC,CACJ;EACL;EAEA,MAAMC,aAAa,GAAG,IAAAC,8BAAsB,EAAC;IACzCJ;EACJ,CAAC,CAAC;EAEF,MAAMK,eAAe,GAAG,IAAAC,4BAAsB,EAAC;IAC3CN,OAAO,EAAEG;EACb,CAAC,CAAC;EAEF,MAAMI,uBAA+C,GAAG,CAAC,CAAC;EAE1D,MAAMC,WAAW,GAAGC,MAAM,CAACC,MAAM,CAACX,WAAW,CAAC,CAACY,MAAM,CACjD,CAACX,OAAO,EAAEY,KAAK,KAAK;IAChB;AACZ;AACA;IACY,IAAIA,KAAK,CAACC,OAAO,CAACZ,MAAM,GAAG,CAAC,EAAE;MAC1B,OAAOD,OAAO;IAClB;IACA,MAAM;MAAEc,OAAO;MAAEC;IAAU,CAAC,GAAGH,KAAK,CAACA,KAAK;IAE1CL,uBAAuB,CAACO,OAAO,CAAC,GAAGA,OAAO;IAE1C,MAAM;MAAEE;IAAK,CAAC,GAAGX,eAAe,CAAC;MAC7BY,GAAG,EAAEF,SAAS;MACdH,KAAK;MACLM,KAAK,EAAE,EAAE;MACTC,OAAO,EAAE;IACb,CAAC,CAAC;IACF;AACZ;AACA;IACYnB,OAAO,CAACc,OAAO,CAAC,GAAG,IAAIM,0CAAwB,CAAC;MAC5CC,YAAY,EAAET,KAAK,CAACS,YAAY;MAChCF,OAAO,EAAE,IAAAG,mBAAU,EAACV,KAAK,CAAC;MAC1BW,QAAQ,EAAEX,KAAK,CAACW,QAAQ;MACxBC,UAAU,EAAEZ,KAAK,CAACY,UAAU;MAC5BZ,KAAK,EAAEE,OAAO;MACdE;IACJ,CAAC,CAAC;IACF,OAAOhB,OAAO;EAClB,CAAC,EACD;IACI,CAAC,GAAG,GAAG,IAAIoB,0CAAwB,CAAC;MAChCR,KAAK,EAAEQ,0CAAwB,CAACK,GAAG;MACnCN,OAAO,EAAE;IACb,CAAC;EACL,CACJ,CAAC;EAED,MAAMO,eAAe,GAAG5B,IAAI,CACvB6B,GAAG,CAACT,KAAK,IAAI;IACV,MAAMU,OAAO,GAAGV,KAAK,CAACW,KAAK,CAAC,+BAA+B,CAAC;IAC5D,IAAI,CAACD,OAAO,EAAE;MACV,OAAO,IAAI;IACf;IACA,MAAM,GAAGd,OAAO,EAAEZ,KAAK,CAAC,GAAG0B,OAAO;IAClC,IAAIrB,uBAAuB,CAACO,OAAO,CAAC,EAAE;MAClC,OAAQ,GAAEP,uBAAuB,CAACO,OAAO,CAAE,IAAGZ,KAAM,EAAC;IACzD;IAEA,OAAOgB,KAAK;EAChB,CAAC,CAAC,CACDY,MAAM,CAACC,OAAO,CAAa;EAChC,OAAO,IAAAC,4BAAU,EAAC;IACdC,YAAY,EAAEzB,WAAW;IACzBV,IAAI,EAAE4B;EACV,CAAC,CAAC;AACN,CAAC;AAACQ,OAAA,CAAAtC,uBAAA,GAAAA,uBAAA","ignoreList":[]}
@@ -26,6 +26,20 @@ var _dbDynamodb = require("@webiny/db-dynamodb");
26
26
  var _transformations = require("./transformations");
27
27
  var _convertEntryKeys = require("./transformations/convertEntryKeys");
28
28
  var _constants = require("@webiny/api-headless-cms/constants");
29
+ const convertToStorageEntry = params => {
30
+ const {
31
+ model,
32
+ storageEntry
33
+ } = params;
34
+ const values = model.convertValueKeyToStorage({
35
+ fields: model.fields,
36
+ values: storageEntry.values
37
+ });
38
+ return {
39
+ ...storageEntry,
40
+ values
41
+ };
42
+ };
29
43
  const createEntriesStorageOperations = params => {
30
44
  const {
31
45
  entity,
@@ -219,6 +233,25 @@ const createEntriesStorageOperations = params => {
219
233
  TYPE: (0, _recordType.createPublishedRecordType)(),
220
234
  ...publishedKeys
221
235
  }));
236
+
237
+ // Unpublish previously published revision (if any).
238
+ const [publishedRevisionStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({
239
+ model,
240
+ ids: [entry.id]
241
+ });
242
+ if (publishedRevisionStorageEntry) {
243
+ items.push(entity.putBatch({
244
+ ...publishedRevisionStorageEntry,
245
+ PK: (0, _keys.createPartitionKey)({
246
+ id: publishedRevisionStorageEntry.id,
247
+ locale: model.locale,
248
+ tenant: model.tenant
249
+ }),
250
+ SK: (0, _keys.createRevisionSortKey)(publishedRevisionStorageEntry),
251
+ TYPE: (0, _recordType.createRecordType)(),
252
+ status: _types.CONTENT_ENTRY_STATUS.UNPUBLISHED
253
+ }));
254
+ }
222
255
  }
223
256
  try {
224
257
  await (0, _batchWrite.batchWriteAll)({
@@ -945,7 +978,7 @@ const createEntriesStorageOperations = params => {
945
978
  const {
946
979
  entry,
947
980
  latestEntry,
948
- latestStorageEntry
981
+ latestStorageEntry: initialLatestStorageEntry
949
982
  } = params;
950
983
  const model = getStorageOperationsModel(initialModel);
951
984
  const partitionKey = (0, _keys.createPartitionKey)({
@@ -986,12 +1019,17 @@ const createEntriesStorageOperations = params => {
986
1019
  PK: partitionKey,
987
1020
  SK: (0, _keys.createPublishedSortKey)()
988
1021
  }));
989
- esItems.push(entity.deleteBatch({
1022
+ esItems.push(esEntity.deleteBatch({
990
1023
  PK: partitionKey,
991
1024
  SK: (0, _keys.createPublishedSortKey)()
992
1025
  }));
993
1026
  }
994
- if (latestEntry && latestStorageEntry) {
1027
+ if (latestEntry && initialLatestStorageEntry) {
1028
+ const latestStorageEntry = convertToStorageEntry({
1029
+ storageEntry: initialLatestStorageEntry,
1030
+ model
1031
+ });
1032
+
995
1033
  /**
996
1034
  * In the end we need to set the new latest entry.
997
1035
  */
@@ -1009,18 +1047,18 @@ const createEntriesStorageOperations = params => {
1009
1047
  items.push(entity.putBatch({
1010
1048
  ...latestStorageEntry,
1011
1049
  PK: (0, _keys.createPartitionKey)({
1012
- id: latestStorageEntry.id,
1050
+ id: initialLatestStorageEntry.id,
1013
1051
  locale: model.locale,
1014
1052
  tenant: model.tenant
1015
1053
  }),
1016
- SK: (0, _keys.createRevisionSortKey)(latestStorageEntry),
1054
+ SK: (0, _keys.createRevisionSortKey)(initialLatestStorageEntry),
1017
1055
  TYPE: (0, _recordType.createRecordType)()
1018
1056
  }));
1019
1057
  const latestTransformer = (0, _transformations.createTransformer)({
1020
1058
  plugins,
1021
1059
  model,
1022
1060
  entry: latestEntry,
1023
- storageEntry: latestStorageEntry
1061
+ storageEntry: initialLatestStorageEntry
1024
1062
  });
1025
1063
  const esLatestData = await latestTransformer.getElasticsearchLatestEntryData();
1026
1064
  esItems.push(esEntity.putBatch({
@@ -1043,7 +1081,7 @@ const createEntriesStorageOperations = params => {
1043
1081
  error: ex,
1044
1082
  entry,
1045
1083
  latestEntry,
1046
- latestStorageEntry
1084
+ initialLatestStorageEntry
1047
1085
  });
1048
1086
  }
1049
1087
  if (esItems.length === 0) {
@@ -1059,7 +1097,7 @@ const createEntriesStorageOperations = params => {
1059
1097
  error: ex,
1060
1098
  entry,
1061
1099
  latestEntry,
1062
- latestStorageEntry
1100
+ initialLatestStorageEntry
1063
1101
  });
1064
1102
  }
1065
1103
  };
@@ -1251,14 +1289,6 @@ const createEntriesStorageOperations = params => {
1251
1289
  entry,
1252
1290
  storageEntry
1253
1291
  } = transformer.transformEntryKeys();
1254
-
1255
- /**
1256
- * We need currently published entry to check if need to remove it.
1257
- */
1258
- const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({
1259
- model,
1260
- ids: [entry.id]
1261
- });
1262
1292
  const revisionKeys = {
1263
1293
  PK: (0, _keys.createPartitionKey)({
1264
1294
  id: entry.id,
@@ -1296,10 +1326,42 @@ const createEntriesStorageOperations = params => {
1296
1326
  publishedKeys: publishedKeys
1297
1327
  });
1298
1328
  }
1329
+ if (!latestEsEntry) {
1330
+ throw new _error.default(`Could not publish entry. Could not load latest ("L") record (ES table).`, "PUBLISH_ERROR", {
1331
+ entry
1332
+ });
1333
+ }
1334
+
1335
+ /**
1336
+ * We need the latest entry to check if it needs to be updated as well in the Elasticsearch.
1337
+ */
1338
+ const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({
1339
+ model,
1340
+ ids: [entry.id]
1341
+ });
1342
+ if (!latestStorageEntry) {
1343
+ throw new _error.default(`Could not publish entry. Could not load latest ("L") record.`, "PUBLISH_ERROR", {
1344
+ entry
1345
+ });
1346
+ }
1347
+
1348
+ /**
1349
+ * We need currently published entry to check if need to remove it.
1350
+ */
1351
+ const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({
1352
+ model,
1353
+ ids: [entry.id]
1354
+ });
1355
+
1356
+ // 1. Update REV# and P records with new data.
1299
1357
  const items = [entity.putBatch({
1300
1358
  ...storageEntry,
1301
1359
  ...revisionKeys,
1302
1360
  TYPE: (0, _recordType.createRecordType)()
1361
+ }), entity.putBatch({
1362
+ ...storageEntry,
1363
+ ...publishedKeys,
1364
+ TYPE: (0, _recordType.createPublishedRecordType)()
1303
1365
  })];
1304
1366
  const esItems = [];
1305
1367
  const {
@@ -1307,130 +1369,91 @@ const createEntriesStorageOperations = params => {
1307
1369
  } = _configurations.configurations.es({
1308
1370
  model
1309
1371
  });
1310
- if (publishedStorageEntry && publishedStorageEntry.id !== entry.id) {
1311
- /**
1312
- * If there is a `published` entry already, we need to set it to `unpublished`. We need to
1313
- * execute two updates: update the previously published entry's status and the published entry record.
1314
- * DynamoDB does not support `batchUpdate` - so here we load the previously published
1315
- * entry's data to update its status within a batch operation. If, hopefully,
1316
- * they introduce a true update batch operation, remove this `read` call.
1317
- */
1318
- const [previouslyPublishedEntry] = await dataLoaders.getRevisionById({
1319
- model,
1320
- ids: [publishedStorageEntry.id]
1321
- });
1322
- items.push(
1323
- /**
1324
- * Update currently published entry (unpublish it)
1325
- */
1326
- entity.putBatch({
1327
- ...previouslyPublishedEntry,
1328
- status: _types.CONTENT_ENTRY_STATUS.UNPUBLISHED,
1329
- TYPE: (0, _recordType.createRecordType)(),
1330
- PK: (0, _keys.createPartitionKey)(publishedStorageEntry),
1331
- SK: (0, _keys.createRevisionSortKey)(publishedStorageEntry)
1332
- }));
1333
- }
1334
- /**
1335
- * Update the helper item in DB with the new published entry
1336
- */
1337
- items.push(entity.putBatch({
1338
- ...storageEntry,
1339
- ...publishedKeys,
1340
- TYPE: (0, _recordType.createPublishedRecordType)()
1341
- }));
1342
1372
 
1343
- /**
1344
- * We need the latest entry to check if it needs to be updated as well in the Elasticsearch.
1345
- */
1346
- const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({
1347
- model,
1348
- ids: [entry.id]
1349
- });
1350
- if (latestStorageEntry?.id === entry.id) {
1373
+ // 2. When it comes to the latest record, we need to perform a couple of different
1374
+ // updates, based on whether the entry being published is the latest revision or not.
1375
+ const publishedRevisionId = publishedStorageEntry?.id;
1376
+ const publishingLatestRevision = latestStorageEntry?.id === entry.id;
1377
+ if (publishingLatestRevision) {
1378
+ // 2.1 If we're publishing the latest revision, we first need to update the L record.
1351
1379
  items.push(entity.putBatch({
1352
1380
  ...storageEntry,
1353
1381
  ...latestKeys
1354
1382
  }));
1355
- }
1356
- if (latestEsEntry) {
1357
- const publishingLatestRevision = latestStorageEntry?.id === entry.id;
1358
1383
 
1359
- /**
1360
- * Need to decompress the data from Elasticsearch DynamoDB table.
1361
- *
1362
- * No need to transform it for the storage because it was fetched
1363
- * directly from the Elasticsearch table, where it sits transformed.
1364
- */
1365
- const latestEsEntryDataDecompressed = await (0, _apiElasticsearch.decompress)(plugins, latestEsEntry.data);
1366
- if (publishingLatestRevision) {
1367
- const updatedMetaFields = (0, _constants.pickEntryMetaFields)(entry);
1368
- const latestTransformer = (0, _transformations.createTransformer)({
1369
- plugins,
1370
- model,
1371
- transformedToIndex: {
1372
- ...latestEsEntryDataDecompressed,
1373
- status: _types.CONTENT_ENTRY_STATUS.PUBLISHED,
1374
- locked: true,
1375
- ...updatedMetaFields
1376
- }
1377
- });
1378
- esItems.push(esEntity.putBatch({
1379
- index: esIndex,
1380
- PK: (0, _keys.createPartitionKey)(latestEsEntryDataDecompressed),
1381
- SK: (0, _keys.createLatestSortKey)(),
1382
- data: await latestTransformer.getElasticsearchLatestEntryData()
1383
- }));
1384
- } else {
1385
- const updatedEntryLevelMetaFields = (0, _constants.pickEntryMetaFields)(entry, _constants.isEntryLevelEntryMetaField);
1386
- const updatedLatestStorageEntry = {
1387
- ...latestStorageEntry,
1388
- ...latestKeys,
1389
- ...updatedEntryLevelMetaFields
1390
- };
1384
+ // 2.2 Additionally, if we have a previously published entry, we need to mark it as unpublished.
1385
+ // Note that we need to take re-publishing into account (same published revision being
1386
+ // published again), in which case the below code does not apply. This is because the
1387
+ // required updates were already applied above.
1388
+ if (publishedStorageEntry) {
1389
+ const isRepublishing = publishedStorageEntry.id === entry.id;
1390
+ if (!isRepublishing) {
1391
+ items.push(
1392
+ /**
1393
+ * Update currently published entry (unpublish it)
1394
+ */
1395
+ entity.putBatch({
1396
+ ...publishedStorageEntry,
1397
+ status: _types.CONTENT_ENTRY_STATUS.UNPUBLISHED,
1398
+ TYPE: (0, _recordType.createRecordType)(),
1399
+ PK: (0, _keys.createPartitionKey)(publishedStorageEntry),
1400
+ SK: (0, _keys.createRevisionSortKey)(publishedStorageEntry)
1401
+ }));
1402
+ }
1403
+ }
1404
+ } else {
1405
+ // 2.3 If the published revision is not the latest one, the situation is a bit
1406
+ // more complex. We first need to update the L and REV# records with the new
1407
+ // values of *only entry-level* meta fields.
1408
+ const updatedEntryLevelMetaFields = (0, _constants.pickEntryMetaFields)(entry, _constants.isEntryLevelEntryMetaField);
1391
1409
 
1392
- /**
1393
- * First we update the regular DynamoDB table. Two updates are needed:
1394
- * - one for the actual revision record
1395
- * - one for the latest record
1396
- */
1397
- items.push(entity.putBatch({
1398
- ...updatedLatestStorageEntry,
1399
- PK: (0, _keys.createPartitionKey)({
1400
- id: latestStorageEntry.id,
1401
- locale: model.locale,
1402
- tenant: model.tenant
1403
- }),
1404
- SK: (0, _keys.createRevisionSortKey)(latestStorageEntry),
1405
- TYPE: (0, _recordType.createRecordType)()
1406
- }));
1407
- items.push(entity.putBatch({
1408
- ...updatedLatestStorageEntry,
1409
- TYPE: (0, _recordType.createLatestRecordType)()
1410
- }));
1410
+ // 2.4 Update L record. Apart from updating the entry-level meta fields, we also need
1411
+ // to change the status from "published" to "unpublished" (if the status is set to "published").
1412
+ let latestRevisionStatus = latestStorageEntry.status;
1413
+ if (latestRevisionStatus === _types.CONTENT_ENTRY_STATUS.PUBLISHED) {
1414
+ latestRevisionStatus = _types.CONTENT_ENTRY_STATUS.UNPUBLISHED;
1415
+ }
1416
+ const latestStorageEntryFields = {
1417
+ ...latestStorageEntry,
1418
+ ...updatedEntryLevelMetaFields,
1419
+ status: latestRevisionStatus
1420
+ };
1421
+ items.push(entity.putBatch({
1422
+ ...latestStorageEntryFields,
1423
+ PK: (0, _keys.createPartitionKey)(latestStorageEntry),
1424
+ SK: (0, _keys.createLatestSortKey)(),
1425
+ TYPE: (0, _recordType.createLatestRecordType)()
1426
+ }));
1411
1427
 
1412
- /**
1413
- * Update the Elasticsearch table to propagate changes to the Elasticsearch.
1414
- */
1415
- const latestEsEntry = await (0, _get.getClean)({
1416
- entity: esEntity,
1417
- keys: latestKeys
1418
- });
1419
- if (latestEsEntry) {
1420
- const latestEsEntryDataDecompressed = await (0, _apiElasticsearch.decompress)(plugins, latestEsEntry.data);
1421
- const updatedLatestEntry = await (0, _apiElasticsearch.compress)(plugins, {
1422
- ...latestEsEntryDataDecompressed,
1423
- ...updatedEntryLevelMetaFields
1424
- });
1425
- esItems.push(esEntity.putBatch({
1426
- ...latestKeys,
1427
- index: esIndex,
1428
- data: updatedLatestEntry
1428
+ // 2.5 Update REV# record.
1429
+ items.push(entity.putBatch({
1430
+ ...latestStorageEntryFields,
1431
+ PK: (0, _keys.createPartitionKey)(latestStorageEntry),
1432
+ SK: (0, _keys.createRevisionSortKey)(latestStorageEntry),
1433
+ TYPE: (0, _recordType.createRecordType)()
1434
+ }));
1435
+
1436
+ // 2.6 Additionally, if we have a previously published entry, we need to mark it as unpublished.
1437
+ // Note that we need to take re-publishing into account (same published revision being
1438
+ // published again), in which case the below code does not apply. This is because the
1439
+ // required updates were already applied above.
1440
+ if (publishedStorageEntry) {
1441
+ const isRepublishing = publishedStorageEntry.id === entry.id;
1442
+ const publishedRevisionDifferentFromLatest = publishedRevisionId !== latestStorageEntry.id;
1443
+ if (!isRepublishing && publishedRevisionDifferentFromLatest) {
1444
+ items.push(entity.putBatch({
1445
+ ...publishedStorageEntry,
1446
+ PK: (0, _keys.createPartitionKey)(publishedStorageEntry),
1447
+ SK: (0, _keys.createRevisionSortKey)(publishedStorageEntry),
1448
+ TYPE: (0, _recordType.createRecordType)(),
1449
+ status: _types.CONTENT_ENTRY_STATUS.UNPUBLISHED
1429
1450
  }));
1430
1451
  }
1431
1452
  }
1432
1453
  }
1433
1454
 
1455
+ // 3. Update records in ES -> DDB table.
1456
+
1434
1457
  /**
1435
1458
  * Update the published revision entry in ES.
1436
1459
  */
@@ -1441,6 +1464,60 @@ const createEntriesStorageOperations = params => {
1441
1464
  data: esPublishedData
1442
1465
  }));
1443
1466
 
1467
+ /**
1468
+ * Need to decompress the data from Elasticsearch DynamoDB table.
1469
+ *
1470
+ * No need to transform it for the storage because it was fetched
1471
+ * directly from the Elasticsearch table, where it sits transformed.
1472
+ */
1473
+ const latestEsEntryDataDecompressed = await (0, _apiElasticsearch.decompress)(plugins, latestEsEntry.data);
1474
+ if (publishingLatestRevision) {
1475
+ const updatedMetaFields = (0, _constants.pickEntryMetaFields)(entry);
1476
+ const latestTransformer = (0, _transformations.createTransformer)({
1477
+ plugins,
1478
+ model,
1479
+ transformedToIndex: {
1480
+ ...latestEsEntryDataDecompressed,
1481
+ status: _types.CONTENT_ENTRY_STATUS.PUBLISHED,
1482
+ locked: true,
1483
+ ...updatedMetaFields
1484
+ }
1485
+ });
1486
+ esItems.push(esEntity.putBatch({
1487
+ index: esIndex,
1488
+ PK: (0, _keys.createPartitionKey)(latestEsEntryDataDecompressed),
1489
+ SK: (0, _keys.createLatestSortKey)(),
1490
+ data: await latestTransformer.getElasticsearchLatestEntryData()
1491
+ }));
1492
+ } else {
1493
+ const updatedEntryLevelMetaFields = (0, _constants.pickEntryMetaFields)(entry, _constants.isEntryLevelEntryMetaField);
1494
+
1495
+ /**
1496
+ * Update the Elasticsearch table to propagate changes to the Elasticsearch.
1497
+ */
1498
+ const latestEsEntry = await (0, _get.getClean)({
1499
+ entity: esEntity,
1500
+ keys: latestKeys
1501
+ });
1502
+ if (latestEsEntry) {
1503
+ const latestEsEntryDataDecompressed = await (0, _apiElasticsearch.decompress)(plugins, latestEsEntry.data);
1504
+ let latestRevisionStatus = latestEsEntryDataDecompressed.status;
1505
+ if (latestRevisionStatus === _types.CONTENT_ENTRY_STATUS.PUBLISHED) {
1506
+ latestRevisionStatus = _types.CONTENT_ENTRY_STATUS.UNPUBLISHED;
1507
+ }
1508
+ const updatedLatestEntry = await (0, _apiElasticsearch.compress)(plugins, {
1509
+ ...latestEsEntryDataDecompressed,
1510
+ ...updatedEntryLevelMetaFields,
1511
+ status: latestRevisionStatus
1512
+ });
1513
+ esItems.push(esEntity.putBatch({
1514
+ ...latestKeys,
1515
+ index: esIndex,
1516
+ data: updatedLatestEntry
1517
+ }));
1518
+ }
1519
+ }
1520
+
1444
1521
  /**
1445
1522
  * Finally, execute regular table batch.
1446
1523
  */
@@ -1 +1 @@
1
- {"version":3,"names":["_error","_interopRequireDefault","require","_types","_helpers","_configurations","_batchWrite","_dataLoaders","_keys","_query","_apiElasticsearch","_get","_utils","_cleanup","_body","_logIgnoredEsResponseError","_shouldIgnoreEsResponseError","_recordType","_apiHeadlessCms","_dbDynamodb","_transformations","_convertEntryKeys","_constants","createEntriesStorageOperations","params","entity","esEntity","elasticsearch","plugins","storageOperationsCmsModelPlugin","getStorageOperationsCmsModelPlugin","oneByType","StorageOperationsCmsModelPlugin","type","getStorageOperationsModel","model","plugin","getModel","dataLoaders","DataLoadersHandler","create","initialModel","entry","initialEntry","storageEntry","initialStorageEntry","isPublished","status","locked","transformer","createTransformer","transformEntryKeys","esEntry","transformToIndex","index","esIndex","configurations","es","revisionKeys","PK","createPartitionKey","id","locale","tenant","SK","createRevisionSortKey","latestKeys","createLatestSortKey","publishedKeys","createPublishedSortKey","items","putBatch","TYPE","createRecordType","createLatestRecordType","push","createPublishedRecordType","batchWriteAll","table","clearAll","ex","WebinyError","message","code","error","esLatestData","getElasticsearchLatestEntryData","esItems","data","esPublishedData","getElasticsearchPublishedEntryData","createRevisionFrom","update","latestStorageEntry","getLatestRevisionByEntryId","ids","publishedStorageEntry","getPublishedRevisionByEntryId","updatingLatestRevision","elasticsearchLatestData","updatedEntryLevelMetaFields","pickEntryMetaFields","isEntryLevelEntryMetaField","updatedLatestStorageEntry","latestEsEntry","getClean","keys","latestEsEntryDataDecompressed","decompress","updatedLatestEntry","compress","elasticsearchPublishedData","length","move","folderId","partitionKey","queryAllParams","options","gte","latestSortKey","publishedSortKey","records","queryAll","latestRecord","undefined","publishedRecord","record","location","esGetItems","getBatch","esRecords","batchReadAll","Promise","all","map","filter","Boolean","esUpdateItems","item","moveToBin","updatedEntryMetaFields","isDeletedEntryMetaField","wbyDeleted","binOriginalFolderId","restoreFromBin","isRestoredEntryMetaField","deleteEntry","entryId","deleteItems","deleteBatch","deleteEsItems","deleteRevision","latestEntry","latestTransformer","deleteMultipleEntries","entries","revisions","getAllEntryRevisions","revision","version","list","limit","createLimit","body","createElasticsearchBody","after","decodeCursor","response","search","shouldIgnoreEsResponseError","logIgnoredEsResponseError","indexName","hasMoreItems","totalCount","cursor","hits","total","extractEntriesFromIndex","_source","convertEntryKeysFromStorage","pop","encodeCursor","sort","value","get","shift","publish","previouslyPublishedEntry","getRevisionById","CONTENT_ENTRY_STATUS","UNPUBLISHED","publishingLatestRevision","updatedMetaFields","transformedToIndex","PUBLISHED","unpublish","getRevisions","getByIds","getLatestByIds","getPublishedByIds","getPreviousRevision","queryParams","lt","zeroPad","filters","attr","eq","reverse","result","queryOne","cleanupItem","getUniqueFieldValues","where","fieldId","initialBody","field","fields","find","f","size","aggregations","terms","storageId","buckets","file","key","count","doc_count","delete","exports"],"sources":["index.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\nimport {\n CmsEntry,\n CmsModel,\n CONTENT_ENTRY_STATUS,\n StorageOperationsCmsModel\n} from \"@webiny/api-headless-cms/types\";\nimport { extractEntriesFromIndex } from \"~/helpers\";\nimport { configurations } from \"~/configurations\";\nimport { Entity } from \"@webiny/db-dynamodb/toolbox\";\nimport { Client } from \"@elastic/elasticsearch\";\nimport { PluginsContainer } from \"@webiny/plugins\";\nimport { batchWriteAll, BatchWriteItem } from \"@webiny/db-dynamodb/utils/batchWrite\";\nimport { DataLoadersHandler } from \"./dataLoaders\";\nimport {\n createLatestSortKey,\n createPartitionKey,\n createPublishedSortKey,\n createRevisionSortKey\n} from \"./keys\";\nimport {\n queryAll,\n QueryAllParams,\n queryOne,\n QueryOneParams\n} from \"@webiny/db-dynamodb/utils/query\";\nimport {\n compress,\n createLimit,\n decodeCursor,\n decompress,\n encodeCursor\n} from \"@webiny/api-elasticsearch\";\nimport { getClean } from \"@webiny/db-dynamodb/utils/get\";\nimport { zeroPad } from \"@webiny/utils\";\nimport { cleanupItem } from \"@webiny/db-dynamodb/utils/cleanup\";\nimport {\n ElasticsearchSearchResponse,\n SearchBody as ElasticsearchSearchBody\n} from \"@webiny/api-elasticsearch/types\";\nimport { CmsEntryStorageOperations, CmsIndexEntry } from \"~/types\";\nimport { createElasticsearchBody } from \"./elasticsearch/body\";\nimport { logIgnoredEsResponseError } from \"./elasticsearch/logIgnoredEsResponseError\";\nimport { shouldIgnoreEsResponseError } from \"./elasticsearch/shouldIgnoreEsResponseError\";\nimport { createLatestRecordType, createPublishedRecordType, createRecordType } from \"./recordType\";\nimport { StorageOperationsCmsModelPlugin } from \"@webiny/api-headless-cms\";\nimport { WriteRequest } from \"@webiny/aws-sdk/client-dynamodb\";\nimport { batchReadAll, BatchReadItem } from \"@webiny/db-dynamodb\";\nimport { createTransformer } from \"./transformations\";\nimport { convertEntryKeysFromStorage } from \"./transformations/convertEntryKeys\";\nimport {\n isDeletedEntryMetaField,\n isEntryLevelEntryMetaField,\n isRestoredEntryMetaField,\n pickEntryMetaFields\n} from \"@webiny/api-headless-cms/constants\";\n\ninterface ElasticsearchDbRecord {\n index: string;\n data: Record<string, any>;\n}\n\nexport interface CreateEntriesStorageOperationsParams {\n entity: Entity<any>;\n esEntity: Entity<any>;\n elasticsearch: Client;\n plugins: PluginsContainer;\n}\n\nexport const createEntriesStorageOperations = (\n params: CreateEntriesStorageOperationsParams\n): CmsEntryStorageOperations => {\n const { entity, esEntity, elasticsearch, plugins } = params;\n\n let storageOperationsCmsModelPlugin: StorageOperationsCmsModelPlugin | undefined;\n const getStorageOperationsCmsModelPlugin = () => {\n if (storageOperationsCmsModelPlugin) {\n return storageOperationsCmsModelPlugin;\n }\n storageOperationsCmsModelPlugin = plugins.oneByType<StorageOperationsCmsModelPlugin>(\n StorageOperationsCmsModelPlugin.type\n );\n return storageOperationsCmsModelPlugin;\n };\n\n const getStorageOperationsModel = (model: CmsModel): StorageOperationsCmsModel => {\n const plugin = getStorageOperationsCmsModelPlugin();\n return plugin.getModel(model);\n };\n\n const dataLoaders = new DataLoadersHandler({\n entity\n });\n\n const create: CmsEntryStorageOperations[\"create\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n\n const model = getStorageOperationsModel(initialModel);\n\n const isPublished = initialEntry.status === \"published\";\n const locked = isPublished ? true : initialEntry.locked;\n\n initialEntry.locked = locked;\n initialStorageEntry.locked = locked;\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const esEntry = transformer.transformToIndex();\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n const items = [\n entity.putBatch({\n ...storageEntry,\n locked,\n ...revisionKeys,\n TYPE: createRecordType()\n }),\n entity.putBatch({\n ...storageEntry,\n locked,\n ...latestKeys,\n TYPE: createLatestRecordType()\n })\n ];\n\n if (isPublished) {\n items.push(\n entity.putBatch({\n ...storageEntry,\n locked,\n ...publishedKeys,\n TYPE: createPublishedRecordType()\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not insert entry data into the DynamoDB table.\",\n ex.code || \"CREATE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n const esLatestData = await transformer.getElasticsearchLatestEntryData();\n const esItems: BatchWriteItem[] = [\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: esLatestData\n })\n ];\n if (isPublished) {\n const esPublishedData = await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: esPublishedData\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not insert entry data into the Elasticsearch DynamoDB table.\",\n ex.code || \"CREATE_ES_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n esEntry\n }\n );\n }\n\n return initialStorageEntry;\n };\n\n const createRevisionFrom: CmsEntryStorageOperations[\"createRevisionFrom\"] = async (\n initialModel,\n params\n ) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n // We'll need this flag below.\n const isPublished = entry.status === \"published\";\n\n const esLatestData = await transformer.getElasticsearchLatestEntryData();\n\n const items = [\n entity.putBatch({\n ...storageEntry,\n TYPE: createRecordType(),\n ...revisionKeys\n }),\n entity.putBatch({\n ...storageEntry,\n TYPE: createLatestRecordType(),\n ...latestKeys\n })\n ];\n\n if (isPublished) {\n items.push(\n entity.putBatch({\n ...storageEntry,\n TYPE: createPublishedRecordType(),\n ...publishedKeys\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not create revision from given entry in the DynamoDB table.\",\n ex.code || \"CREATE_REVISION_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n const esItems: BatchWriteItem[] = [\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: esLatestData\n })\n ];\n\n if (isPublished) {\n const esPublishedData = await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: esPublishedData\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not update latest entry in the DynamoDB Elasticsearch table.\",\n ex.code || \"CREATE_REVISION_ERROR\",\n {\n error: ex,\n entry\n }\n );\n }\n /**\n * There are no modifications on the entry created so just return the data.\n */\n return initialStorageEntry;\n };\n\n const update: CmsEntryStorageOperations[\"update\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const isPublished = entry.status === \"published\";\n const locked = isPublished ? true : entry.locked;\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n /**\n * We need the latest entry to check if it needs to be updated.\n */\n const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n const items = [\n entity.putBatch({\n ...storageEntry,\n locked,\n ...revisionKeys,\n TYPE: createRecordType()\n })\n ];\n if (isPublished) {\n items.push(\n entity.putBatch({\n ...storageEntry,\n locked,\n ...publishedKeys,\n TYPE: createPublishedRecordType()\n })\n );\n }\n\n const esItems: BatchWriteItem[] = [];\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n /**\n * If the latest entry is the one being updated, we need to create a new latest entry records.\n */\n if (latestStorageEntry) {\n const updatingLatestRevision = latestStorageEntry.id === entry.id;\n if (updatingLatestRevision) {\n /**\n * First we update the regular DynamoDB table.\n */\n items.push(\n entity.putBatch({\n ...storageEntry,\n ...latestKeys,\n TYPE: createLatestRecordType()\n })\n );\n\n /**\n * And then update the Elasticsearch table to propagate changes to the Elasticsearch\n */\n const elasticsearchLatestData = await transformer.getElasticsearchLatestEntryData();\n\n esItems.push(\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: elasticsearchLatestData\n })\n );\n } else {\n /**\n * If not updating latest revision, we still want to update the latest revision's\n * entry-level meta fields to match the current revision's entry-level meta fields.\n */\n const updatedEntryLevelMetaFields = pickEntryMetaFields(\n entry,\n isEntryLevelEntryMetaField\n );\n\n const updatedLatestStorageEntry = {\n ...latestStorageEntry,\n ...latestKeys,\n ...updatedEntryLevelMetaFields\n };\n\n /**\n * First we update the regular DynamoDB table. Two updates are needed:\n * - one for the actual revision record\n * - one for the latest record\n */\n items.push(\n entity.putBatch({\n ...updatedLatestStorageEntry,\n PK: createPartitionKey({\n id: latestStorageEntry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(latestStorageEntry),\n TYPE: createRecordType()\n })\n );\n\n items.push(\n entity.putBatch({\n ...updatedLatestStorageEntry,\n TYPE: createLatestRecordType()\n })\n );\n\n /**\n * Update the Elasticsearch table to propagate changes to the Elasticsearch.\n */\n const latestEsEntry = await getClean<ElasticsearchDbRecord>({\n entity: esEntity,\n keys: latestKeys\n });\n\n if (latestEsEntry) {\n const latestEsEntryDataDecompressed = (await decompress(\n plugins,\n latestEsEntry.data\n )) as CmsIndexEntry;\n\n const updatedLatestEntry = await compress(plugins, {\n ...latestEsEntryDataDecompressed,\n ...updatedEntryLevelMetaFields\n });\n\n esItems.push(\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: updatedLatestEntry\n })\n );\n }\n }\n }\n\n if (isPublished && publishedStorageEntry?.id === entry.id) {\n const elasticsearchPublishedData =\n await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: elasticsearchPublishedData\n })\n );\n }\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not update entry DynamoDB records.\",\n ex.code || \"UPDATE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n if (esItems.length === 0) {\n return initialStorageEntry;\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not update entry DynamoDB Elasticsearch records.\",\n ex.code || \"UPDATE_ES_ENTRY_ERROR\",\n {\n error: ex,\n entry\n }\n );\n }\n return initialStorageEntry;\n };\n\n const move: CmsEntryStorageOperations[\"move\"] = async (initialModel, id, folderId) => {\n const model = getStorageOperationsModel(initialModel);\n\n const partitionKey = createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n });\n /**\n * First we need to fetch all the records in the regular DynamoDB table.\n */\n const queryAllParams: QueryAllParams = {\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n };\n const latestSortKey = createLatestSortKey();\n const publishedSortKey = createPublishedSortKey();\n const records = await queryAll<CmsEntry>(queryAllParams);\n /**\n * Then update the folderId in each record and prepare it to be stored.\n */\n let latestRecord: CmsEntry | undefined = undefined;\n let publishedRecord: CmsEntry | undefined = undefined;\n const items: BatchWriteItem[] = [];\n for (const record of records) {\n items.push(\n entity.putBatch({\n ...record,\n location: {\n ...record?.location,\n folderId\n }\n })\n );\n /**\n * We need to get the published and latest records, so we can update the Elasticsearch.\n */\n if (record.SK === publishedSortKey) {\n publishedRecord = record;\n } else if (record.SK === latestSortKey) {\n latestRecord = record;\n }\n }\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not move all entry records from in the DynamoDB table.\",\n ex.code || \"MOVE_ENTRY_ERROR\",\n {\n error: ex,\n id\n }\n );\n }\n const esGetItems: BatchReadItem[] = [];\n if (publishedRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: publishedSortKey\n })\n );\n }\n if (latestRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: latestSortKey\n })\n );\n }\n if (esGetItems.length === 0) {\n return;\n }\n const esRecords = await batchReadAll<ElasticsearchDbRecord>({\n table: esEntity.table,\n items: esGetItems\n });\n const esItems = (\n await Promise.all(\n esRecords.map(async record => {\n if (!record) {\n return null;\n }\n return {\n ...record,\n data: await decompress(plugins, record.data)\n };\n })\n )\n ).filter(Boolean) as ElasticsearchDbRecord[];\n\n if (esItems.length === 0) {\n return;\n }\n const esUpdateItems: BatchWriteItem[] = [];\n for (const item of esItems) {\n esUpdateItems.push(\n esEntity.putBatch({\n ...item,\n data: await compress(plugins, {\n ...item.data,\n location: {\n ...item.data?.location,\n folderId\n }\n })\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esUpdateItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not move entry DynamoDB Elasticsearch records.\",\n ex.code || \"MOVE_ES_ENTRY_ERROR\",\n {\n error: ex,\n partitionKey\n }\n );\n }\n };\n\n const moveToBin: CmsEntryStorageOperations[\"moveToBin\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n /**\n * First we need to fetch all the records in the regular DynamoDB table.\n */\n const queryAllParams: QueryAllParams = {\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n };\n\n const latestSortKey = createLatestSortKey();\n const publishedSortKey = createPublishedSortKey();\n const records = await queryAll<CmsEntry>(queryAllParams);\n\n /**\n * Let's pick the `deleted` meta fields from the entry.\n */\n const updatedEntryMetaFields = pickEntryMetaFields(entry, isDeletedEntryMetaField);\n\n /**\n * Then update all the records with data received.\n */\n let latestRecord: CmsEntry | undefined = undefined;\n let publishedRecord: CmsEntry | undefined = undefined;\n const items: BatchWriteItem[] = [];\n\n for (const record of records) {\n items.push(\n entity.putBatch({\n ...record,\n ...updatedEntryMetaFields,\n wbyDeleted: storageEntry.wbyDeleted,\n location: storageEntry.location,\n binOriginalFolderId: storageEntry.binOriginalFolderId\n })\n );\n /**\n * We need to get the published and latest records, so we can update the Elasticsearch.\n */\n if (record.SK === publishedSortKey) {\n publishedRecord = record;\n } else if (record.SK === latestSortKey) {\n latestRecord = record;\n }\n }\n\n /**\n * We write the records back to the primary DynamoDB table.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could mark as deleted all entry records from in the DynamoDB table.\",\n ex.code || \"MOVE_ENTRY_TO_BIN_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n /**\n * We need to get the published and latest records from Elasticsearch.\n */\n const esGetItems: BatchReadItem[] = [];\n if (publishedRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: publishedSortKey\n })\n );\n }\n if (latestRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: latestSortKey\n })\n );\n }\n if (esGetItems.length === 0) {\n return;\n }\n\n const esRecords = await batchReadAll<ElasticsearchDbRecord>({\n table: esEntity.table,\n items: esGetItems\n });\n\n const esItems = (\n await Promise.all(\n esRecords.map(async record => {\n if (!record) {\n return null;\n }\n return {\n ...record,\n data: await decompress(plugins, record.data)\n };\n })\n )\n ).filter(Boolean) as ElasticsearchDbRecord[];\n\n if (esItems.length === 0) {\n return;\n }\n\n /**\n * We update all ES records with data received.\n */\n const esUpdateItems: BatchWriteItem[] = [];\n for (const item of esItems) {\n esUpdateItems.push(\n esEntity.putBatch({\n ...item,\n data: await compress(plugins, {\n ...item.data,\n ...updatedEntryMetaFields,\n wbyDeleted: entry.wbyDeleted,\n location: entry.location,\n binOriginalFolderId: entry.binOriginalFolderId\n })\n })\n );\n }\n\n /**\n * We write the records back to the primary DynamoDB Elasticsearch table.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esUpdateItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not mark as deleted entry records from DynamoDB Elasticsearch table.\",\n ex.code || \"MOVE_ENTRY_TO_BIN_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n };\n\n const restoreFromBin: CmsEntryStorageOperations[\"restoreFromBin\"] = async (\n initialModel,\n params\n ) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n /**\n * Let's pick the `restored` meta fields from the storage entry.\n */\n const updatedEntryMetaFields = pickEntryMetaFields(entry, isRestoredEntryMetaField);\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n /**\n * First we need to fetch all the records in the regular DynamoDB table.\n */\n const queryAllParams: QueryAllParams = {\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n };\n\n const latestSortKey = createLatestSortKey();\n const publishedSortKey = createPublishedSortKey();\n const records = await queryAll<CmsEntry>(queryAllParams);\n\n /**\n * Then update all the records with data received.\n */\n let latestRecord: CmsEntry | undefined = undefined;\n let publishedRecord: CmsEntry | undefined = undefined;\n const items: BatchWriteItem[] = [];\n\n for (const record of records) {\n items.push(\n entity.putBatch({\n ...record,\n ...updatedEntryMetaFields,\n wbyDeleted: storageEntry.wbyDeleted,\n location: storageEntry.location,\n binOriginalFolderId: storageEntry.binOriginalFolderId\n })\n );\n /**\n * We need to get the published and latest records, so we can update the Elasticsearch.\n */\n if (record.SK === publishedSortKey) {\n publishedRecord = record;\n } else if (record.SK === latestSortKey) {\n latestRecord = record;\n }\n }\n\n /**\n * We write the records back to the primary DynamoDB table.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not restore all entry records from in the DynamoDB table.\",\n ex.code || \"RESTORE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n /**\n * We need to get the published and latest records from Elasticsearch.\n */\n const esGetItems: BatchReadItem[] = [];\n if (publishedRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: publishedSortKey\n })\n );\n }\n if (latestRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: latestSortKey\n })\n );\n }\n\n const esRecords = await batchReadAll<ElasticsearchDbRecord>({\n table: esEntity.table,\n items: esGetItems\n });\n\n const esItems = (\n await Promise.all(\n esRecords.map(async record => {\n if (!record) {\n return null;\n }\n return {\n ...record,\n data: await decompress(plugins, record.data)\n };\n })\n )\n ).filter(Boolean) as ElasticsearchDbRecord[];\n\n if (esItems.length === 0) {\n return initialStorageEntry;\n }\n\n /**\n * We update all ES records with data received.\n */\n const esUpdateItems: BatchWriteItem[] = [];\n for (const item of esItems) {\n esUpdateItems.push(\n esEntity.putBatch({\n ...item,\n data: await compress(plugins, {\n ...item.data,\n ...updatedEntryMetaFields,\n wbyDeleted: entry.wbyDeleted,\n location: entry.location,\n binOriginalFolderId: entry.binOriginalFolderId\n })\n })\n );\n }\n\n /**\n * We write the records back to the primary DynamoDB Elasticsearch table.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esUpdateItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not restore entry records from DynamoDB Elasticsearch table.\",\n ex.code || \"RESTORE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n return initialStorageEntry;\n };\n\n const deleteEntry: CmsEntryStorageOperations[\"delete\"] = async (initialModel, params) => {\n const { entry } = params;\n const id = entry.id || entry.entryId;\n const model = getStorageOperationsModel(initialModel);\n\n const partitionKey = createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n const items = await queryAll<CmsEntry>({\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n });\n\n const esItems = await queryAll<CmsEntry>({\n entity: esEntity,\n partitionKey,\n options: {\n gte: \" \"\n }\n });\n\n const deleteItems = items.map(item => {\n return entity.deleteBatch({\n PK: item.PK,\n SK: item.SK\n });\n });\n\n const deleteEsItems = esItems.map(item => {\n return esEntity.deleteBatch({\n PK: item.PK,\n SK: item.SK\n });\n });\n\n try {\n await batchWriteAll({\n table: entity.table,\n items: deleteItems\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not destroy entry records from DynamoDB table.\",\n ex.code || \"DELETE_ENTRY_ERROR\",\n {\n error: ex,\n id\n }\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: deleteEsItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not destroy entry records from DynamoDB Elasticsearch table.\",\n ex.code || \"DELETE_ENTRY_ERROR\",\n {\n error: ex,\n id\n }\n );\n }\n };\n\n const deleteRevision: CmsEntryStorageOperations[\"deleteRevision\"] = async (\n initialModel,\n params\n ) => {\n const { entry, latestEntry, latestStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n const { index } = configurations.es({\n model\n });\n /**\n * We need published entry to delete it if necessary.\n */\n const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n /**\n * We need to delete all existing records of the given entry revision.\n */\n const items = [\n /**\n * Delete records of given entry revision.\n */\n entity.deleteBatch({\n PK: partitionKey,\n SK: createRevisionSortKey(entry)\n })\n ];\n\n const esItems: BatchWriteItem[] = [];\n\n /**\n * If revision we are deleting is the published one as well, we need to delete those records as well.\n */\n if (publishedStorageEntry?.id === entry.id) {\n items.push(\n entity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n })\n );\n esItems.push(\n entity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n })\n );\n }\n\n if (latestEntry && latestStorageEntry) {\n /**\n * In the end we need to set the new latest entry.\n */\n items.push(\n entity.putBatch({\n ...latestStorageEntry,\n PK: partitionKey,\n SK: createLatestSortKey(),\n TYPE: createLatestRecordType()\n })\n );\n\n /**\n * Also perform an update on the actual revision. This is needed\n * because of updates on the entry-level meta fields.\n */\n items.push(\n entity.putBatch({\n ...latestStorageEntry,\n PK: createPartitionKey({\n id: latestStorageEntry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(latestStorageEntry),\n TYPE: createRecordType()\n })\n );\n\n const latestTransformer = createTransformer({\n plugins,\n model,\n entry: latestEntry,\n storageEntry: latestStorageEntry\n });\n\n const esLatestData = await latestTransformer.getElasticsearchLatestEntryData();\n esItems.push(\n esEntity.putBatch({\n PK: partitionKey,\n SK: createLatestSortKey(),\n index,\n data: esLatestData\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not batch write entry records to DynamoDB table.\",\n ex.code || \"DELETE_REVISION_ERROR\",\n {\n error: ex,\n entry,\n latestEntry,\n latestStorageEntry\n }\n );\n }\n\n if (esItems.length === 0) {\n return;\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not batch write entry records to DynamoDB Elasticsearch table.\",\n ex.code || \"DELETE_REVISION_ERROR\",\n {\n error: ex,\n entry,\n latestEntry,\n latestStorageEntry\n }\n );\n }\n };\n\n const deleteMultipleEntries: CmsEntryStorageOperations[\"deleteMultipleEntries\"] = async (\n initialModel,\n params\n ) => {\n const { entries } = params;\n const model = getStorageOperationsModel(initialModel);\n /**\n * First we need all the revisions of the entries we want to delete.\n */\n const revisions = await dataLoaders.getAllEntryRevisions({\n model,\n ids: entries\n });\n /**\n * Then we need to construct the queries for all the revisions and entries.\n */\n const items: Record<string, WriteRequest>[] = [];\n const esItems: Record<string, WriteRequest>[] = [];\n for (const id of entries) {\n /**\n * Latest item.\n */\n items.push(\n entity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"L\"\n })\n );\n esItems.push(\n esEntity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"L\"\n })\n );\n /**\n * Published item.\n */\n items.push(\n entity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"P\"\n })\n );\n esItems.push(\n esEntity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"P\"\n })\n );\n }\n /**\n * Exact revisions of all the entries\n */\n for (const revision of revisions) {\n items.push(\n entity.deleteBatch({\n PK: createPartitionKey({\n id: revision.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey({\n version: revision.version\n })\n })\n );\n }\n\n await batchWriteAll({\n table: entity.table,\n items\n });\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n };\n\n const list: CmsEntryStorageOperations[\"list\"] = async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const limit = createLimit(params.limit, 50);\n const { index } = configurations.es({\n model\n });\n\n const body = createElasticsearchBody({\n model,\n params: {\n ...params,\n limit,\n after: decodeCursor(params.after)\n },\n plugins\n });\n\n let response: ElasticsearchSearchResponse<CmsIndexEntry>;\n try {\n response = await elasticsearch.search({\n index,\n body\n });\n } catch (error) {\n /**\n * We will silently ignore the `index_not_found_exception` error and return an empty result set.\n * This is because the index might not exist yet, and we don't want to throw an error.\n */\n if (shouldIgnoreEsResponseError(error)) {\n logIgnoredEsResponseError({\n error,\n model,\n indexName: index\n });\n\n return {\n hasMoreItems: false,\n totalCount: 0,\n cursor: null,\n items: []\n };\n }\n\n throw new WebinyError(error.message, error.code || \"ELASTICSEARCH_ERROR\", {\n error,\n index,\n body,\n model\n });\n }\n\n const { hits, total } = response?.body?.hits || {};\n\n const items = extractEntriesFromIndex({\n plugins,\n model,\n entries: hits.map(item => item._source)\n }).map(item => {\n return convertEntryKeysFromStorage({\n model,\n entry: item\n });\n });\n\n const hasMoreItems = items.length > limit;\n if (hasMoreItems) {\n /**\n * Remove the last item from results, we don't want to include it.\n */\n items.pop();\n }\n /**\n * Cursor is the `sort` value of the last item in the array.\n * https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#search-after\n */\n const cursor = items.length > 0 ? encodeCursor(hits[items.length - 1].sort) || null : null;\n return {\n hasMoreItems,\n totalCount: total.value,\n cursor,\n items\n };\n };\n\n const get: CmsEntryStorageOperations[\"get\"] = async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const { items } = await list(model, {\n ...params,\n limit: 1\n });\n return items.shift() || null;\n };\n\n const publish: CmsEntryStorageOperations[\"publish\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n /**\n * We need currently published entry to check if need to remove it.\n */\n const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n let latestEsEntry: ElasticsearchDbRecord | null = null;\n try {\n latestEsEntry = await getClean<ElasticsearchDbRecord>({\n entity: esEntity,\n keys: latestKeys\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not read Elasticsearch latest data.\",\n ex.code || \"PUBLISH_LATEST_READ\",\n {\n error: ex,\n latestKeys: latestKeys,\n publishedKeys: publishedKeys\n }\n );\n }\n\n const items = [\n entity.putBatch({\n ...storageEntry,\n ...revisionKeys,\n TYPE: createRecordType()\n })\n ];\n const esItems: BatchWriteItem[] = [];\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n if (publishedStorageEntry && publishedStorageEntry.id !== entry.id) {\n /**\n * If there is a `published` entry already, we need to set it to `unpublished`. We need to\n * execute two updates: update the previously published entry's status and the published entry record.\n * DynamoDB does not support `batchUpdate` - so here we load the previously published\n * entry's data to update its status within a batch operation. If, hopefully,\n * they introduce a true update batch operation, remove this `read` call.\n */\n const [previouslyPublishedEntry] = await dataLoaders.getRevisionById({\n model,\n ids: [publishedStorageEntry.id]\n });\n items.push(\n /**\n * Update currently published entry (unpublish it)\n */\n entity.putBatch({\n ...previouslyPublishedEntry,\n status: CONTENT_ENTRY_STATUS.UNPUBLISHED,\n TYPE: createRecordType(),\n PK: createPartitionKey(publishedStorageEntry),\n SK: createRevisionSortKey(publishedStorageEntry)\n })\n );\n }\n /**\n * Update the helper item in DB with the new published entry\n */\n items.push(\n entity.putBatch({\n ...storageEntry,\n ...publishedKeys,\n TYPE: createPublishedRecordType()\n })\n );\n\n /**\n * We need the latest entry to check if it needs to be updated as well in the Elasticsearch.\n */\n const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n if (latestStorageEntry?.id === entry.id) {\n items.push(\n entity.putBatch({\n ...storageEntry,\n ...latestKeys\n })\n );\n }\n\n if (latestEsEntry) {\n const publishingLatestRevision = latestStorageEntry?.id === entry.id;\n\n /**\n * Need to decompress the data from Elasticsearch DynamoDB table.\n *\n * No need to transform it for the storage because it was fetched\n * directly from the Elasticsearch table, where it sits transformed.\n */\n const latestEsEntryDataDecompressed = (await decompress(\n plugins,\n latestEsEntry.data\n )) as CmsIndexEntry;\n\n if (publishingLatestRevision) {\n const updatedMetaFields = pickEntryMetaFields(entry);\n\n const latestTransformer = createTransformer({\n plugins,\n model,\n transformedToIndex: {\n ...latestEsEntryDataDecompressed,\n status: CONTENT_ENTRY_STATUS.PUBLISHED,\n locked: true,\n ...updatedMetaFields\n }\n });\n\n esItems.push(\n esEntity.putBatch({\n index: esIndex,\n PK: createPartitionKey(latestEsEntryDataDecompressed),\n SK: createLatestSortKey(),\n data: await latestTransformer.getElasticsearchLatestEntryData()\n })\n );\n } else {\n const updatedEntryLevelMetaFields = pickEntryMetaFields(\n entry,\n isEntryLevelEntryMetaField\n );\n\n const updatedLatestStorageEntry = {\n ...latestStorageEntry,\n ...latestKeys,\n ...updatedEntryLevelMetaFields\n };\n\n /**\n * First we update the regular DynamoDB table. Two updates are needed:\n * - one for the actual revision record\n * - one for the latest record\n */\n items.push(\n entity.putBatch({\n ...updatedLatestStorageEntry,\n PK: createPartitionKey({\n id: latestStorageEntry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(latestStorageEntry),\n TYPE: createRecordType()\n })\n );\n\n items.push(\n entity.putBatch({\n ...updatedLatestStorageEntry,\n TYPE: createLatestRecordType()\n })\n );\n\n /**\n * Update the Elasticsearch table to propagate changes to the Elasticsearch.\n */\n const latestEsEntry = await getClean<ElasticsearchDbRecord>({\n entity: esEntity,\n keys: latestKeys\n });\n\n if (latestEsEntry) {\n const latestEsEntryDataDecompressed = (await decompress(\n plugins,\n latestEsEntry.data\n )) as CmsIndexEntry;\n\n const updatedLatestEntry = await compress(plugins, {\n ...latestEsEntryDataDecompressed,\n ...updatedEntryLevelMetaFields\n });\n\n esItems.push(\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: updatedLatestEntry\n })\n );\n }\n }\n }\n\n /**\n * Update the published revision entry in ES.\n */\n const esPublishedData = await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: esPublishedData\n })\n );\n\n /**\n * Finally, execute regular table batch.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not store publish entry records in DynamoDB table.\",\n ex.code || \"PUBLISH_ERROR\",\n {\n error: ex,\n entry,\n latestStorageEntry,\n publishedStorageEntry\n }\n );\n }\n /**\n * And Elasticsearch table batch.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not store publish entry records in DynamoDB Elasticsearch table.\",\n ex.code || \"PUBLISH_ES_ERROR\",\n {\n error: ex,\n entry,\n latestStorageEntry,\n publishedStorageEntry\n }\n );\n }\n return initialStorageEntry;\n };\n\n const unpublish: CmsEntryStorageOperations[\"unpublish\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n const { entry, storageEntry } = await transformer.transformEntryKeys();\n\n /**\n * We need the latest entry to check if it needs to be updated.\n */\n const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n const items = [\n entity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n }),\n entity.putBatch({\n ...storageEntry,\n PK: partitionKey,\n SK: createRevisionSortKey(entry),\n TYPE: createRecordType()\n })\n ];\n\n const esItems: BatchWriteItem[] = [\n esEntity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n })\n ];\n /**\n * If we are unpublishing the latest revision, let's also update the latest revision entry's status in both DynamoDB tables.\n */\n if (latestStorageEntry?.id === entry.id) {\n const { index } = configurations.es({\n model\n });\n\n items.push(\n entity.putBatch({\n ...storageEntry,\n PK: partitionKey,\n SK: createLatestSortKey(),\n TYPE: createLatestRecordType()\n })\n );\n\n const esLatestData = await transformer.getElasticsearchLatestEntryData();\n esItems.push(\n esEntity.putBatch({\n PK: partitionKey,\n SK: createLatestSortKey(),\n index,\n data: esLatestData\n })\n );\n }\n\n /**\n * Finally, execute regular table batch.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not store unpublished entry records in DynamoDB table.\",\n ex.code || \"UNPUBLISH_ERROR\",\n {\n entry,\n storageEntry\n }\n );\n }\n /**\n * And Elasticsearch table batch.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not store unpublished entry records in DynamoDB Elasticsearch table.\",\n ex.code || \"UNPUBLISH_ERROR\",\n {\n entry,\n storageEntry\n }\n );\n }\n return initialStorageEntry;\n };\n\n const getLatestRevisionByEntryId: CmsEntryStorageOperations[\"getLatestRevisionByEntryId\"] =\n async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const [entry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [params.id]\n });\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n };\n\n const getPublishedRevisionByEntryId: CmsEntryStorageOperations[\"getPublishedRevisionByEntryId\"] =\n async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const [entry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [params.id]\n });\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n };\n\n const getRevisionById: CmsEntryStorageOperations[\"getRevisionById\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const [entry] = await dataLoaders.getRevisionById({\n model,\n ids: [params.id]\n });\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n };\n\n const getRevisions: CmsEntryStorageOperations[\"getRevisions\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getAllEntryRevisions({\n model,\n ids: [params.id]\n });\n\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getByIds: CmsEntryStorageOperations[\"getByIds\"] = async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getRevisionById({\n model,\n ids: params.ids\n });\n\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getLatestByIds: CmsEntryStorageOperations[\"getLatestByIds\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: params.ids\n });\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getPublishedByIds: CmsEntryStorageOperations[\"getPublishedByIds\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: params.ids\n });\n\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getPreviousRevision: CmsEntryStorageOperations[\"getPreviousRevision\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const { tenant, locale } = model;\n const { entryId, version } = params;\n const queryParams: QueryOneParams = {\n entity,\n partitionKey: createPartitionKey({\n tenant,\n locale,\n id: entryId\n }),\n options: {\n lt: `REV#${zeroPad(version)}`,\n /**\n * We need to have extra checks because DynamoDB will return published or latest record if there is no REV# record.\n */\n filters: [\n {\n attr: \"TYPE\",\n eq: createRecordType()\n },\n {\n attr: \"version\",\n lt: version\n }\n ],\n reverse: true\n }\n };\n\n try {\n const result = await queryOne<CmsEntry>(queryParams);\n\n const entry = cleanupItem(entity, result);\n\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n entry,\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not get previous version of given entry.\",\n ex.code || \"GET_PREVIOUS_VERSION_ERROR\",\n {\n ...params,\n error: ex,\n partitionKey: queryParams.partitionKey,\n options: queryParams.options,\n model\n }\n );\n }\n };\n\n const getUniqueFieldValues: CmsEntryStorageOperations[\"getUniqueFieldValues\"] = async (\n model,\n params\n ) => {\n const { where, fieldId } = params;\n\n const { index } = configurations.es({\n model\n });\n\n const initialBody = createElasticsearchBody({\n model,\n params: {\n limit: 1,\n where\n },\n plugins\n });\n\n const field = model.fields.find(f => f.fieldId === fieldId);\n if (!field) {\n throw new WebinyError(\n `Could not find field with given \"fieldId\" value.`,\n \"FIELD_NOT_FOUND\",\n {\n fieldId\n }\n );\n }\n\n const body: ElasticsearchSearchBody = {\n ...initialBody,\n /**\n * We do not need any hits returned, we only need the aggregations.\n */\n size: 0,\n aggregations: {\n getUniqueFieldValues: {\n terms: {\n field: `values.${field.storageId}.keyword`,\n size: 1000000\n }\n }\n }\n };\n\n let response: ElasticsearchSearchResponse<string> | undefined = undefined;\n\n try {\n response = await elasticsearch.search({\n index,\n body\n });\n } catch (error) {\n if (shouldIgnoreEsResponseError(error)) {\n logIgnoredEsResponseError({\n error,\n model,\n indexName: index\n });\n return [];\n }\n\n throw new WebinyError(\n error.message || \"Error in the Elasticsearch query.\",\n error.code || \"ELASTICSEARCH_ERROR\",\n {\n error,\n index,\n model,\n body\n }\n );\n }\n\n const buckets = response.body.aggregations[\"getUniqueFieldValues\"]?.buckets || [];\n return buckets.map(file => {\n return {\n value: file.key,\n count: file.doc_count\n };\n });\n };\n\n return {\n create,\n createRevisionFrom,\n update,\n move,\n delete: deleteEntry,\n moveToBin,\n restoreFromBin,\n deleteRevision,\n deleteMultipleEntries,\n get,\n publish,\n unpublish,\n list,\n getLatestRevisionByEntryId,\n getPublishedRevisionByEntryId,\n getRevisionById,\n getRevisions,\n getByIds,\n getLatestByIds,\n getPublishedByIds,\n getPreviousRevision,\n getUniqueFieldValues,\n dataLoaders\n };\n};\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_error","_interopRequireDefault","require","_types","_helpers","_configurations","_batchWrite","_dataLoaders","_keys","_query","_apiElasticsearch","_get","_utils","_cleanup","_body","_logIgnoredEsResponseError","_shouldIgnoreEsResponseError","_recordType","_apiHeadlessCms","_dbDynamodb","_transformations","_convertEntryKeys","_constants","convertToStorageEntry","params","model","storageEntry","values","convertValueKeyToStorage","fields","createEntriesStorageOperations","entity","esEntity","elasticsearch","plugins","storageOperationsCmsModelPlugin","getStorageOperationsCmsModelPlugin","oneByType","StorageOperationsCmsModelPlugin","type","getStorageOperationsModel","plugin","getModel","dataLoaders","DataLoadersHandler","create","initialModel","entry","initialEntry","initialStorageEntry","isPublished","status","locked","transformer","createTransformer","transformEntryKeys","esEntry","transformToIndex","index","esIndex","configurations","es","revisionKeys","PK","createPartitionKey","id","locale","tenant","SK","createRevisionSortKey","latestKeys","createLatestSortKey","publishedKeys","createPublishedSortKey","items","putBatch","TYPE","createRecordType","createLatestRecordType","push","createPublishedRecordType","batchWriteAll","table","clearAll","ex","WebinyError","message","code","error","esLatestData","getElasticsearchLatestEntryData","esItems","data","esPublishedData","getElasticsearchPublishedEntryData","createRevisionFrom","publishedRevisionStorageEntry","getPublishedRevisionByEntryId","ids","CONTENT_ENTRY_STATUS","UNPUBLISHED","update","latestStorageEntry","getLatestRevisionByEntryId","publishedStorageEntry","updatingLatestRevision","elasticsearchLatestData","updatedEntryLevelMetaFields","pickEntryMetaFields","isEntryLevelEntryMetaField","updatedLatestStorageEntry","latestEsEntry","getClean","keys","latestEsEntryDataDecompressed","decompress","updatedLatestEntry","compress","elasticsearchPublishedData","length","move","folderId","partitionKey","queryAllParams","options","gte","latestSortKey","publishedSortKey","records","queryAll","latestRecord","undefined","publishedRecord","record","location","esGetItems","getBatch","esRecords","batchReadAll","Promise","all","map","filter","Boolean","esUpdateItems","item","moveToBin","updatedEntryMetaFields","isDeletedEntryMetaField","wbyDeleted","binOriginalFolderId","restoreFromBin","isRestoredEntryMetaField","deleteEntry","entryId","deleteItems","deleteBatch","deleteEsItems","deleteRevision","latestEntry","initialLatestStorageEntry","latestTransformer","deleteMultipleEntries","entries","revisions","getAllEntryRevisions","revision","version","list","limit","createLimit","body","createElasticsearchBody","after","decodeCursor","response","search","shouldIgnoreEsResponseError","logIgnoredEsResponseError","indexName","hasMoreItems","totalCount","cursor","hits","total","extractEntriesFromIndex","_source","convertEntryKeysFromStorage","pop","encodeCursor","sort","value","get","shift","publish","publishedRevisionId","publishingLatestRevision","isRepublishing","latestRevisionStatus","PUBLISHED","latestStorageEntryFields","publishedRevisionDifferentFromLatest","updatedMetaFields","transformedToIndex","unpublish","getRevisionById","getRevisions","getByIds","getLatestByIds","getPublishedByIds","getPreviousRevision","queryParams","lt","zeroPad","filters","attr","eq","reverse","result","queryOne","cleanupItem","getUniqueFieldValues","where","fieldId","initialBody","field","find","f","size","aggregations","terms","storageId","buckets","file","key","count","doc_count","delete","exports"],"sources":["index.ts"],"sourcesContent":["import WebinyError from \"@webiny/error\";\nimport {\n CmsEntry,\n CmsModel,\n CmsStorageEntry,\n CONTENT_ENTRY_STATUS,\n StorageOperationsCmsModel\n} from \"@webiny/api-headless-cms/types\";\nimport { extractEntriesFromIndex } from \"~/helpers\";\nimport { configurations } from \"~/configurations\";\nimport { Entity } from \"@webiny/db-dynamodb/toolbox\";\nimport { Client } from \"@elastic/elasticsearch\";\nimport { PluginsContainer } from \"@webiny/plugins\";\nimport { batchWriteAll, BatchWriteItem } from \"@webiny/db-dynamodb/utils/batchWrite\";\nimport { DataLoadersHandler } from \"./dataLoaders\";\nimport {\n createLatestSortKey,\n createPartitionKey,\n createPublishedSortKey,\n createRevisionSortKey\n} from \"./keys\";\nimport {\n queryAll,\n QueryAllParams,\n queryOne,\n QueryOneParams\n} from \"@webiny/db-dynamodb/utils/query\";\nimport {\n compress,\n createLimit,\n decodeCursor,\n decompress,\n encodeCursor\n} from \"@webiny/api-elasticsearch\";\nimport { getClean } from \"@webiny/db-dynamodb/utils/get\";\nimport { zeroPad } from \"@webiny/utils\";\nimport { cleanupItem } from \"@webiny/db-dynamodb/utils/cleanup\";\nimport {\n ElasticsearchSearchResponse,\n SearchBody as ElasticsearchSearchBody\n} from \"@webiny/api-elasticsearch/types\";\nimport { CmsEntryStorageOperations, CmsIndexEntry } from \"~/types\";\nimport { createElasticsearchBody } from \"./elasticsearch/body\";\nimport { logIgnoredEsResponseError } from \"./elasticsearch/logIgnoredEsResponseError\";\nimport { shouldIgnoreEsResponseError } from \"./elasticsearch/shouldIgnoreEsResponseError\";\nimport { createLatestRecordType, createPublishedRecordType, createRecordType } from \"./recordType\";\nimport { StorageOperationsCmsModelPlugin } from \"@webiny/api-headless-cms\";\nimport { WriteRequest } from \"@webiny/aws-sdk/client-dynamodb\";\nimport { batchReadAll, BatchReadItem } from \"@webiny/db-dynamodb\";\nimport { createTransformer } from \"./transformations\";\nimport { convertEntryKeysFromStorage } from \"./transformations/convertEntryKeys\";\nimport {\n isDeletedEntryMetaField,\n isEntryLevelEntryMetaField,\n isRestoredEntryMetaField,\n pickEntryMetaFields\n} from \"@webiny/api-headless-cms/constants\";\n\ninterface ElasticsearchDbRecord {\n index: string;\n data: Record<string, any>;\n}\n\nexport interface CreateEntriesStorageOperationsParams {\n entity: Entity<any>;\n esEntity: Entity<any>;\n elasticsearch: Client;\n plugins: PluginsContainer;\n}\n\ninterface ConvertStorageEntryParams {\n storageEntry: CmsStorageEntry;\n model: StorageOperationsCmsModel;\n}\n\nconst convertToStorageEntry = (params: ConvertStorageEntryParams): CmsStorageEntry => {\n const { model, storageEntry } = params;\n\n const values = model.convertValueKeyToStorage({\n fields: model.fields,\n values: storageEntry.values\n });\n return {\n ...storageEntry,\n values\n };\n};\n\nexport const createEntriesStorageOperations = (\n params: CreateEntriesStorageOperationsParams\n): CmsEntryStorageOperations => {\n const { entity, esEntity, elasticsearch, plugins } = params;\n\n let storageOperationsCmsModelPlugin: StorageOperationsCmsModelPlugin | undefined;\n const getStorageOperationsCmsModelPlugin = () => {\n if (storageOperationsCmsModelPlugin) {\n return storageOperationsCmsModelPlugin;\n }\n storageOperationsCmsModelPlugin = plugins.oneByType<StorageOperationsCmsModelPlugin>(\n StorageOperationsCmsModelPlugin.type\n );\n return storageOperationsCmsModelPlugin;\n };\n\n const getStorageOperationsModel = (model: CmsModel): StorageOperationsCmsModel => {\n const plugin = getStorageOperationsCmsModelPlugin();\n return plugin.getModel(model);\n };\n\n const dataLoaders = new DataLoadersHandler({\n entity\n });\n\n const create: CmsEntryStorageOperations[\"create\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n\n const model = getStorageOperationsModel(initialModel);\n\n const isPublished = initialEntry.status === \"published\";\n const locked = isPublished ? true : initialEntry.locked;\n\n initialEntry.locked = locked;\n initialStorageEntry.locked = locked;\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const esEntry = transformer.transformToIndex();\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n const items = [\n entity.putBatch({\n ...storageEntry,\n locked,\n ...revisionKeys,\n TYPE: createRecordType()\n }),\n entity.putBatch({\n ...storageEntry,\n locked,\n ...latestKeys,\n TYPE: createLatestRecordType()\n })\n ];\n\n if (isPublished) {\n items.push(\n entity.putBatch({\n ...storageEntry,\n locked,\n ...publishedKeys,\n TYPE: createPublishedRecordType()\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not insert entry data into the DynamoDB table.\",\n ex.code || \"CREATE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n const esLatestData = await transformer.getElasticsearchLatestEntryData();\n const esItems: BatchWriteItem[] = [\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: esLatestData\n })\n ];\n if (isPublished) {\n const esPublishedData = await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: esPublishedData\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not insert entry data into the Elasticsearch DynamoDB table.\",\n ex.code || \"CREATE_ES_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n esEntry\n }\n );\n }\n\n return initialStorageEntry;\n };\n\n const createRevisionFrom: CmsEntryStorageOperations[\"createRevisionFrom\"] = async (\n initialModel,\n params\n ) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n // We'll need this flag below.\n const isPublished = entry.status === \"published\";\n\n const esLatestData = await transformer.getElasticsearchLatestEntryData();\n\n const items = [\n entity.putBatch({\n ...storageEntry,\n TYPE: createRecordType(),\n ...revisionKeys\n }),\n entity.putBatch({\n ...storageEntry,\n TYPE: createLatestRecordType(),\n ...latestKeys\n })\n ];\n\n if (isPublished) {\n items.push(\n entity.putBatch({\n ...storageEntry,\n TYPE: createPublishedRecordType(),\n ...publishedKeys\n })\n );\n\n // Unpublish previously published revision (if any).\n const [publishedRevisionStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId(\n {\n model,\n ids: [entry.id]\n }\n );\n\n if (publishedRevisionStorageEntry) {\n items.push(\n entity.putBatch({\n ...publishedRevisionStorageEntry,\n PK: createPartitionKey({\n id: publishedRevisionStorageEntry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(publishedRevisionStorageEntry),\n TYPE: createRecordType(),\n status: CONTENT_ENTRY_STATUS.UNPUBLISHED\n })\n );\n }\n }\n\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not create revision from given entry in the DynamoDB table.\",\n ex.code || \"CREATE_REVISION_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n const esItems: BatchWriteItem[] = [\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: esLatestData\n })\n ];\n\n if (isPublished) {\n const esPublishedData = await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: esPublishedData\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not update latest entry in the DynamoDB Elasticsearch table.\",\n ex.code || \"CREATE_REVISION_ERROR\",\n {\n error: ex,\n entry\n }\n );\n }\n /**\n * There are no modifications on the entry created so just return the data.\n */\n return initialStorageEntry;\n };\n\n const update: CmsEntryStorageOperations[\"update\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const isPublished = entry.status === \"published\";\n const locked = isPublished ? true : entry.locked;\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n /**\n * We need the latest entry to check if it needs to be updated.\n */\n const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n const items = [\n entity.putBatch({\n ...storageEntry,\n locked,\n ...revisionKeys,\n TYPE: createRecordType()\n })\n ];\n if (isPublished) {\n items.push(\n entity.putBatch({\n ...storageEntry,\n locked,\n ...publishedKeys,\n TYPE: createPublishedRecordType()\n })\n );\n }\n\n const esItems: BatchWriteItem[] = [];\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n /**\n * If the latest entry is the one being updated, we need to create a new latest entry records.\n */\n if (latestStorageEntry) {\n const updatingLatestRevision = latestStorageEntry.id === entry.id;\n if (updatingLatestRevision) {\n /**\n * First we update the regular DynamoDB table.\n */\n items.push(\n entity.putBatch({\n ...storageEntry,\n ...latestKeys,\n TYPE: createLatestRecordType()\n })\n );\n\n /**\n * And then update the Elasticsearch table to propagate changes to the Elasticsearch\n */\n const elasticsearchLatestData = await transformer.getElasticsearchLatestEntryData();\n\n esItems.push(\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: elasticsearchLatestData\n })\n );\n } else {\n /**\n * If not updating latest revision, we still want to update the latest revision's\n * entry-level meta fields to match the current revision's entry-level meta fields.\n */\n const updatedEntryLevelMetaFields = pickEntryMetaFields(\n entry,\n isEntryLevelEntryMetaField\n );\n\n const updatedLatestStorageEntry = {\n ...latestStorageEntry,\n ...latestKeys,\n ...updatedEntryLevelMetaFields\n };\n\n /**\n * First we update the regular DynamoDB table. Two updates are needed:\n * - one for the actual revision record\n * - one for the latest record\n */\n items.push(\n entity.putBatch({\n ...updatedLatestStorageEntry,\n PK: createPartitionKey({\n id: latestStorageEntry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(latestStorageEntry),\n TYPE: createRecordType()\n })\n );\n\n items.push(\n entity.putBatch({\n ...updatedLatestStorageEntry,\n TYPE: createLatestRecordType()\n })\n );\n\n /**\n * Update the Elasticsearch table to propagate changes to the Elasticsearch.\n */\n const latestEsEntry = await getClean<ElasticsearchDbRecord>({\n entity: esEntity,\n keys: latestKeys\n });\n\n if (latestEsEntry) {\n const latestEsEntryDataDecompressed = (await decompress(\n plugins,\n latestEsEntry.data\n )) as CmsIndexEntry;\n\n const updatedLatestEntry = await compress(plugins, {\n ...latestEsEntryDataDecompressed,\n ...updatedEntryLevelMetaFields\n });\n\n esItems.push(\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: updatedLatestEntry\n })\n );\n }\n }\n }\n\n if (isPublished && publishedStorageEntry?.id === entry.id) {\n const elasticsearchPublishedData =\n await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: elasticsearchPublishedData\n })\n );\n }\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not update entry DynamoDB records.\",\n ex.code || \"UPDATE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n if (esItems.length === 0) {\n return initialStorageEntry;\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not update entry DynamoDB Elasticsearch records.\",\n ex.code || \"UPDATE_ES_ENTRY_ERROR\",\n {\n error: ex,\n entry\n }\n );\n }\n return initialStorageEntry;\n };\n\n const move: CmsEntryStorageOperations[\"move\"] = async (initialModel, id, folderId) => {\n const model = getStorageOperationsModel(initialModel);\n\n const partitionKey = createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n });\n /**\n * First we need to fetch all the records in the regular DynamoDB table.\n */\n const queryAllParams: QueryAllParams = {\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n };\n const latestSortKey = createLatestSortKey();\n const publishedSortKey = createPublishedSortKey();\n const records = await queryAll<CmsEntry>(queryAllParams);\n /**\n * Then update the folderId in each record and prepare it to be stored.\n */\n let latestRecord: CmsEntry | undefined = undefined;\n let publishedRecord: CmsEntry | undefined = undefined;\n const items: BatchWriteItem[] = [];\n for (const record of records) {\n items.push(\n entity.putBatch({\n ...record,\n location: {\n ...record?.location,\n folderId\n }\n })\n );\n /**\n * We need to get the published and latest records, so we can update the Elasticsearch.\n */\n if (record.SK === publishedSortKey) {\n publishedRecord = record;\n } else if (record.SK === latestSortKey) {\n latestRecord = record;\n }\n }\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not move all entry records from in the DynamoDB table.\",\n ex.code || \"MOVE_ENTRY_ERROR\",\n {\n error: ex,\n id\n }\n );\n }\n const esGetItems: BatchReadItem[] = [];\n if (publishedRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: publishedSortKey\n })\n );\n }\n if (latestRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: latestSortKey\n })\n );\n }\n if (esGetItems.length === 0) {\n return;\n }\n const esRecords = await batchReadAll<ElasticsearchDbRecord>({\n table: esEntity.table,\n items: esGetItems\n });\n const esItems = (\n await Promise.all(\n esRecords.map(async record => {\n if (!record) {\n return null;\n }\n return {\n ...record,\n data: await decompress(plugins, record.data)\n };\n })\n )\n ).filter(Boolean) as ElasticsearchDbRecord[];\n\n if (esItems.length === 0) {\n return;\n }\n const esUpdateItems: BatchWriteItem[] = [];\n for (const item of esItems) {\n esUpdateItems.push(\n esEntity.putBatch({\n ...item,\n data: await compress(plugins, {\n ...item.data,\n location: {\n ...item.data?.location,\n folderId\n }\n })\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esUpdateItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not move entry DynamoDB Elasticsearch records.\",\n ex.code || \"MOVE_ES_ENTRY_ERROR\",\n {\n error: ex,\n partitionKey\n }\n );\n }\n };\n\n const moveToBin: CmsEntryStorageOperations[\"moveToBin\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n /**\n * First we need to fetch all the records in the regular DynamoDB table.\n */\n const queryAllParams: QueryAllParams = {\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n };\n\n const latestSortKey = createLatestSortKey();\n const publishedSortKey = createPublishedSortKey();\n const records = await queryAll<CmsEntry>(queryAllParams);\n\n /**\n * Let's pick the `deleted` meta fields from the entry.\n */\n const updatedEntryMetaFields = pickEntryMetaFields(entry, isDeletedEntryMetaField);\n\n /**\n * Then update all the records with data received.\n */\n let latestRecord: CmsEntry | undefined = undefined;\n let publishedRecord: CmsEntry | undefined = undefined;\n const items: BatchWriteItem[] = [];\n\n for (const record of records) {\n items.push(\n entity.putBatch({\n ...record,\n ...updatedEntryMetaFields,\n wbyDeleted: storageEntry.wbyDeleted,\n location: storageEntry.location,\n binOriginalFolderId: storageEntry.binOriginalFolderId\n })\n );\n /**\n * We need to get the published and latest records, so we can update the Elasticsearch.\n */\n if (record.SK === publishedSortKey) {\n publishedRecord = record;\n } else if (record.SK === latestSortKey) {\n latestRecord = record;\n }\n }\n\n /**\n * We write the records back to the primary DynamoDB table.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could mark as deleted all entry records from in the DynamoDB table.\",\n ex.code || \"MOVE_ENTRY_TO_BIN_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n /**\n * We need to get the published and latest records from Elasticsearch.\n */\n const esGetItems: BatchReadItem[] = [];\n if (publishedRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: publishedSortKey\n })\n );\n }\n if (latestRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: latestSortKey\n })\n );\n }\n if (esGetItems.length === 0) {\n return;\n }\n\n const esRecords = await batchReadAll<ElasticsearchDbRecord>({\n table: esEntity.table,\n items: esGetItems\n });\n\n const esItems = (\n await Promise.all(\n esRecords.map(async record => {\n if (!record) {\n return null;\n }\n return {\n ...record,\n data: await decompress(plugins, record.data)\n };\n })\n )\n ).filter(Boolean) as ElasticsearchDbRecord[];\n\n if (esItems.length === 0) {\n return;\n }\n\n /**\n * We update all ES records with data received.\n */\n const esUpdateItems: BatchWriteItem[] = [];\n for (const item of esItems) {\n esUpdateItems.push(\n esEntity.putBatch({\n ...item,\n data: await compress(plugins, {\n ...item.data,\n ...updatedEntryMetaFields,\n wbyDeleted: entry.wbyDeleted,\n location: entry.location,\n binOriginalFolderId: entry.binOriginalFolderId\n })\n })\n );\n }\n\n /**\n * We write the records back to the primary DynamoDB Elasticsearch table.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esUpdateItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not mark as deleted entry records from DynamoDB Elasticsearch table.\",\n ex.code || \"MOVE_ENTRY_TO_BIN_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n };\n\n const restoreFromBin: CmsEntryStorageOperations[\"restoreFromBin\"] = async (\n initialModel,\n params\n ) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n /**\n * Let's pick the `restored` meta fields from the storage entry.\n */\n const updatedEntryMetaFields = pickEntryMetaFields(entry, isRestoredEntryMetaField);\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n /**\n * First we need to fetch all the records in the regular DynamoDB table.\n */\n const queryAllParams: QueryAllParams = {\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n };\n\n const latestSortKey = createLatestSortKey();\n const publishedSortKey = createPublishedSortKey();\n const records = await queryAll<CmsEntry>(queryAllParams);\n\n /**\n * Then update all the records with data received.\n */\n let latestRecord: CmsEntry | undefined = undefined;\n let publishedRecord: CmsEntry | undefined = undefined;\n const items: BatchWriteItem[] = [];\n\n for (const record of records) {\n items.push(\n entity.putBatch({\n ...record,\n ...updatedEntryMetaFields,\n wbyDeleted: storageEntry.wbyDeleted,\n location: storageEntry.location,\n binOriginalFolderId: storageEntry.binOriginalFolderId\n })\n );\n /**\n * We need to get the published and latest records, so we can update the Elasticsearch.\n */\n if (record.SK === publishedSortKey) {\n publishedRecord = record;\n } else if (record.SK === latestSortKey) {\n latestRecord = record;\n }\n }\n\n /**\n * We write the records back to the primary DynamoDB table.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not restore all entry records from in the DynamoDB table.\",\n ex.code || \"RESTORE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n /**\n * We need to get the published and latest records from Elasticsearch.\n */\n const esGetItems: BatchReadItem[] = [];\n if (publishedRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: publishedSortKey\n })\n );\n }\n if (latestRecord) {\n esGetItems.push(\n esEntity.getBatch({\n PK: partitionKey,\n SK: latestSortKey\n })\n );\n }\n\n const esRecords = await batchReadAll<ElasticsearchDbRecord>({\n table: esEntity.table,\n items: esGetItems\n });\n\n const esItems = (\n await Promise.all(\n esRecords.map(async record => {\n if (!record) {\n return null;\n }\n return {\n ...record,\n data: await decompress(plugins, record.data)\n };\n })\n )\n ).filter(Boolean) as ElasticsearchDbRecord[];\n\n if (esItems.length === 0) {\n return initialStorageEntry;\n }\n\n /**\n * We update all ES records with data received.\n */\n const esUpdateItems: BatchWriteItem[] = [];\n for (const item of esItems) {\n esUpdateItems.push(\n esEntity.putBatch({\n ...item,\n data: await compress(plugins, {\n ...item.data,\n ...updatedEntryMetaFields,\n wbyDeleted: entry.wbyDeleted,\n location: entry.location,\n binOriginalFolderId: entry.binOriginalFolderId\n })\n })\n );\n }\n\n /**\n * We write the records back to the primary DynamoDB Elasticsearch table.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esUpdateItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not restore entry records from DynamoDB Elasticsearch table.\",\n ex.code || \"RESTORE_ENTRY_ERROR\",\n {\n error: ex,\n entry,\n storageEntry\n }\n );\n }\n\n return initialStorageEntry;\n };\n\n const deleteEntry: CmsEntryStorageOperations[\"delete\"] = async (initialModel, params) => {\n const { entry } = params;\n const id = entry.id || entry.entryId;\n const model = getStorageOperationsModel(initialModel);\n\n const partitionKey = createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n const items = await queryAll<CmsEntry>({\n entity,\n partitionKey,\n options: {\n gte: \" \"\n }\n });\n\n const esItems = await queryAll<CmsEntry>({\n entity: esEntity,\n partitionKey,\n options: {\n gte: \" \"\n }\n });\n\n const deleteItems = items.map(item => {\n return entity.deleteBatch({\n PK: item.PK,\n SK: item.SK\n });\n });\n\n const deleteEsItems = esItems.map(item => {\n return esEntity.deleteBatch({\n PK: item.PK,\n SK: item.SK\n });\n });\n\n try {\n await batchWriteAll({\n table: entity.table,\n items: deleteItems\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not destroy entry records from DynamoDB table.\",\n ex.code || \"DELETE_ENTRY_ERROR\",\n {\n error: ex,\n id\n }\n );\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: deleteEsItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not destroy entry records from DynamoDB Elasticsearch table.\",\n ex.code || \"DELETE_ENTRY_ERROR\",\n {\n error: ex,\n id\n }\n );\n }\n };\n\n const deleteRevision: CmsEntryStorageOperations[\"deleteRevision\"] = async (\n initialModel,\n params\n ) => {\n const { entry, latestEntry, latestStorageEntry: initialLatestStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n const { index } = configurations.es({\n model\n });\n /**\n * We need published entry to delete it if necessary.\n */\n const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n /**\n * We need to delete all existing records of the given entry revision.\n */\n const items = [\n /**\n * Delete records of given entry revision.\n */\n entity.deleteBatch({\n PK: partitionKey,\n SK: createRevisionSortKey(entry)\n })\n ];\n\n const esItems: BatchWriteItem[] = [];\n\n /**\n * If revision we are deleting is the published one as well, we need to delete those records as well.\n */\n if (publishedStorageEntry?.id === entry.id) {\n items.push(\n entity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n })\n );\n esItems.push(\n esEntity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n })\n );\n }\n\n if (latestEntry && initialLatestStorageEntry) {\n const latestStorageEntry = convertToStorageEntry({\n storageEntry: initialLatestStorageEntry,\n model\n });\n\n /**\n * In the end we need to set the new latest entry.\n */\n items.push(\n entity.putBatch({\n ...latestStorageEntry,\n PK: partitionKey,\n SK: createLatestSortKey(),\n TYPE: createLatestRecordType()\n })\n );\n\n /**\n * Also perform an update on the actual revision. This is needed\n * because of updates on the entry-level meta fields.\n */\n items.push(\n entity.putBatch({\n ...latestStorageEntry,\n PK: createPartitionKey({\n id: initialLatestStorageEntry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(initialLatestStorageEntry),\n TYPE: createRecordType()\n })\n );\n\n const latestTransformer = createTransformer({\n plugins,\n model,\n entry: latestEntry,\n storageEntry: initialLatestStorageEntry\n });\n\n const esLatestData = await latestTransformer.getElasticsearchLatestEntryData();\n esItems.push(\n esEntity.putBatch({\n PK: partitionKey,\n SK: createLatestSortKey(),\n index,\n data: esLatestData\n })\n );\n }\n\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not batch write entry records to DynamoDB table.\",\n ex.code || \"DELETE_REVISION_ERROR\",\n {\n error: ex,\n entry,\n latestEntry,\n initialLatestStorageEntry\n }\n );\n }\n\n if (esItems.length === 0) {\n return;\n }\n\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not batch write entry records to DynamoDB Elasticsearch table.\",\n ex.code || \"DELETE_REVISION_ERROR\",\n {\n error: ex,\n entry,\n latestEntry,\n initialLatestStorageEntry\n }\n );\n }\n };\n\n const deleteMultipleEntries: CmsEntryStorageOperations[\"deleteMultipleEntries\"] = async (\n initialModel,\n params\n ) => {\n const { entries } = params;\n const model = getStorageOperationsModel(initialModel);\n /**\n * First we need all the revisions of the entries we want to delete.\n */\n const revisions = await dataLoaders.getAllEntryRevisions({\n model,\n ids: entries\n });\n /**\n * Then we need to construct the queries for all the revisions and entries.\n */\n const items: Record<string, WriteRequest>[] = [];\n const esItems: Record<string, WriteRequest>[] = [];\n for (const id of entries) {\n /**\n * Latest item.\n */\n items.push(\n entity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"L\"\n })\n );\n esItems.push(\n esEntity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"L\"\n })\n );\n /**\n * Published item.\n */\n items.push(\n entity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"P\"\n })\n );\n esItems.push(\n esEntity.deleteBatch({\n PK: createPartitionKey({\n id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: \"P\"\n })\n );\n }\n /**\n * Exact revisions of all the entries\n */\n for (const revision of revisions) {\n items.push(\n entity.deleteBatch({\n PK: createPartitionKey({\n id: revision.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey({\n version: revision.version\n })\n })\n );\n }\n\n await batchWriteAll({\n table: entity.table,\n items\n });\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n };\n\n const list: CmsEntryStorageOperations[\"list\"] = async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const limit = createLimit(params.limit, 50);\n const { index } = configurations.es({\n model\n });\n\n const body = createElasticsearchBody({\n model,\n params: {\n ...params,\n limit,\n after: decodeCursor(params.after)\n },\n plugins\n });\n\n let response: ElasticsearchSearchResponse<CmsIndexEntry>;\n try {\n response = await elasticsearch.search({\n index,\n body\n });\n } catch (error) {\n /**\n * We will silently ignore the `index_not_found_exception` error and return an empty result set.\n * This is because the index might not exist yet, and we don't want to throw an error.\n */\n if (shouldIgnoreEsResponseError(error)) {\n logIgnoredEsResponseError({\n error,\n model,\n indexName: index\n });\n\n return {\n hasMoreItems: false,\n totalCount: 0,\n cursor: null,\n items: []\n };\n }\n\n throw new WebinyError(error.message, error.code || \"ELASTICSEARCH_ERROR\", {\n error,\n index,\n body,\n model\n });\n }\n\n const { hits, total } = response?.body?.hits || {};\n\n const items = extractEntriesFromIndex({\n plugins,\n model,\n entries: hits.map(item => item._source)\n }).map(item => {\n return convertEntryKeysFromStorage({\n model,\n entry: item\n });\n });\n\n const hasMoreItems = items.length > limit;\n if (hasMoreItems) {\n /**\n * Remove the last item from results, we don't want to include it.\n */\n items.pop();\n }\n /**\n * Cursor is the `sort` value of the last item in the array.\n * https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#search-after\n */\n const cursor = items.length > 0 ? encodeCursor(hits[items.length - 1].sort) || null : null;\n return {\n hasMoreItems,\n totalCount: total.value,\n cursor,\n items\n };\n };\n\n const get: CmsEntryStorageOperations[\"get\"] = async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const { items } = await list(model, {\n ...params,\n limit: 1\n });\n return items.shift() || null;\n };\n\n const publish: CmsEntryStorageOperations[\"publish\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n\n const { entry, storageEntry } = transformer.transformEntryKeys();\n\n const revisionKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createRevisionSortKey(entry)\n };\n const latestKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createLatestSortKey()\n };\n const publishedKeys = {\n PK: createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n }),\n SK: createPublishedSortKey()\n };\n\n let latestEsEntry: ElasticsearchDbRecord | null = null;\n try {\n latestEsEntry = await getClean<ElasticsearchDbRecord>({\n entity: esEntity,\n keys: latestKeys\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not read Elasticsearch latest data.\",\n ex.code || \"PUBLISH_LATEST_READ\",\n {\n error: ex,\n latestKeys: latestKeys,\n publishedKeys: publishedKeys\n }\n );\n }\n\n if (!latestEsEntry) {\n throw new WebinyError(\n `Could not publish entry. Could not load latest (\"L\") record (ES table).`,\n \"PUBLISH_ERROR\",\n { entry }\n );\n }\n\n /**\n * We need the latest entry to check if it needs to be updated as well in the Elasticsearch.\n */\n const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n if (!latestStorageEntry) {\n throw new WebinyError(\n `Could not publish entry. Could not load latest (\"L\") record.`,\n \"PUBLISH_ERROR\",\n { entry }\n );\n }\n\n /**\n * We need currently published entry to check if need to remove it.\n */\n const [publishedStorageEntry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n // 1. Update REV# and P records with new data.\n const items = [\n entity.putBatch({\n ...storageEntry,\n ...revisionKeys,\n TYPE: createRecordType()\n }),\n entity.putBatch({\n ...storageEntry,\n ...publishedKeys,\n TYPE: createPublishedRecordType()\n })\n ];\n const esItems: BatchWriteItem[] = [];\n\n const { index: esIndex } = configurations.es({\n model\n });\n\n // 2. When it comes to the latest record, we need to perform a couple of different\n // updates, based on whether the entry being published is the latest revision or not.\n const publishedRevisionId = publishedStorageEntry?.id;\n const publishingLatestRevision = latestStorageEntry?.id === entry.id;\n\n if (publishingLatestRevision) {\n // 2.1 If we're publishing the latest revision, we first need to update the L record.\n items.push(\n entity.putBatch({\n ...storageEntry,\n ...latestKeys\n })\n );\n\n // 2.2 Additionally, if we have a previously published entry, we need to mark it as unpublished.\n // Note that we need to take re-publishing into account (same published revision being\n // published again), in which case the below code does not apply. This is because the\n // required updates were already applied above.\n if (publishedStorageEntry) {\n const isRepublishing = publishedStorageEntry.id === entry.id;\n if (!isRepublishing) {\n items.push(\n /**\n * Update currently published entry (unpublish it)\n */\n entity.putBatch({\n ...publishedStorageEntry,\n status: CONTENT_ENTRY_STATUS.UNPUBLISHED,\n TYPE: createRecordType(),\n PK: createPartitionKey(publishedStorageEntry),\n SK: createRevisionSortKey(publishedStorageEntry)\n })\n );\n }\n }\n } else {\n // 2.3 If the published revision is not the latest one, the situation is a bit\n // more complex. We first need to update the L and REV# records with the new\n // values of *only entry-level* meta fields.\n const updatedEntryLevelMetaFields = pickEntryMetaFields(\n entry,\n isEntryLevelEntryMetaField\n );\n\n // 2.4 Update L record. Apart from updating the entry-level meta fields, we also need\n // to change the status from \"published\" to \"unpublished\" (if the status is set to \"published\").\n let latestRevisionStatus = latestStorageEntry.status;\n if (latestRevisionStatus === CONTENT_ENTRY_STATUS.PUBLISHED) {\n latestRevisionStatus = CONTENT_ENTRY_STATUS.UNPUBLISHED;\n }\n\n const latestStorageEntryFields = {\n ...latestStorageEntry,\n ...updatedEntryLevelMetaFields,\n status: latestRevisionStatus\n };\n\n items.push(\n entity.putBatch({\n ...latestStorageEntryFields,\n PK: createPartitionKey(latestStorageEntry),\n SK: createLatestSortKey(),\n TYPE: createLatestRecordType()\n })\n );\n\n // 2.5 Update REV# record.\n items.push(\n entity.putBatch({\n ...latestStorageEntryFields,\n PK: createPartitionKey(latestStorageEntry),\n SK: createRevisionSortKey(latestStorageEntry),\n TYPE: createRecordType()\n })\n );\n\n // 2.6 Additionally, if we have a previously published entry, we need to mark it as unpublished.\n // Note that we need to take re-publishing into account (same published revision being\n // published again), in which case the below code does not apply. This is because the\n // required updates were already applied above.\n if (publishedStorageEntry) {\n const isRepublishing = publishedStorageEntry.id === entry.id;\n const publishedRevisionDifferentFromLatest =\n publishedRevisionId !== latestStorageEntry.id;\n\n if (!isRepublishing && publishedRevisionDifferentFromLatest) {\n items.push(\n entity.putBatch({\n ...publishedStorageEntry,\n PK: createPartitionKey(publishedStorageEntry),\n SK: createRevisionSortKey(publishedStorageEntry),\n TYPE: createRecordType(),\n status: CONTENT_ENTRY_STATUS.UNPUBLISHED\n })\n );\n }\n }\n }\n\n // 3. Update records in ES -> DDB table.\n\n /**\n * Update the published revision entry in ES.\n */\n const esPublishedData = await transformer.getElasticsearchPublishedEntryData();\n esItems.push(\n esEntity.putBatch({\n ...publishedKeys,\n index: esIndex,\n data: esPublishedData\n })\n );\n\n /**\n * Need to decompress the data from Elasticsearch DynamoDB table.\n *\n * No need to transform it for the storage because it was fetched\n * directly from the Elasticsearch table, where it sits transformed.\n */\n const latestEsEntryDataDecompressed = (await decompress(\n plugins,\n latestEsEntry.data\n )) as CmsIndexEntry;\n\n if (publishingLatestRevision) {\n const updatedMetaFields = pickEntryMetaFields(entry);\n\n const latestTransformer = createTransformer({\n plugins,\n model,\n transformedToIndex: {\n ...latestEsEntryDataDecompressed,\n status: CONTENT_ENTRY_STATUS.PUBLISHED,\n locked: true,\n ...updatedMetaFields\n }\n });\n\n esItems.push(\n esEntity.putBatch({\n index: esIndex,\n PK: createPartitionKey(latestEsEntryDataDecompressed),\n SK: createLatestSortKey(),\n data: await latestTransformer.getElasticsearchLatestEntryData()\n })\n );\n } else {\n const updatedEntryLevelMetaFields = pickEntryMetaFields(\n entry,\n isEntryLevelEntryMetaField\n );\n\n /**\n * Update the Elasticsearch table to propagate changes to the Elasticsearch.\n */\n const latestEsEntry = await getClean<ElasticsearchDbRecord>({\n entity: esEntity,\n keys: latestKeys\n });\n\n if (latestEsEntry) {\n const latestEsEntryDataDecompressed = (await decompress(\n plugins,\n latestEsEntry.data\n )) as CmsIndexEntry;\n\n let latestRevisionStatus = latestEsEntryDataDecompressed.status;\n if (latestRevisionStatus === CONTENT_ENTRY_STATUS.PUBLISHED) {\n latestRevisionStatus = CONTENT_ENTRY_STATUS.UNPUBLISHED;\n }\n\n const updatedLatestEntry = await compress(plugins, {\n ...latestEsEntryDataDecompressed,\n ...updatedEntryLevelMetaFields,\n status: latestRevisionStatus\n });\n\n esItems.push(\n esEntity.putBatch({\n ...latestKeys,\n index: esIndex,\n data: updatedLatestEntry\n })\n );\n }\n }\n\n /**\n * Finally, execute regular table batch.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not store publish entry records in DynamoDB table.\",\n ex.code || \"PUBLISH_ERROR\",\n {\n error: ex,\n entry,\n latestStorageEntry,\n publishedStorageEntry\n }\n );\n }\n /**\n * And Elasticsearch table batch.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not store publish entry records in DynamoDB Elasticsearch table.\",\n ex.code || \"PUBLISH_ES_ERROR\",\n {\n error: ex,\n entry,\n latestStorageEntry,\n publishedStorageEntry\n }\n );\n }\n return initialStorageEntry;\n };\n\n const unpublish: CmsEntryStorageOperations[\"unpublish\"] = async (initialModel, params) => {\n const { entry: initialEntry, storageEntry: initialStorageEntry } = params;\n const model = getStorageOperationsModel(initialModel);\n\n const transformer = createTransformer({\n plugins,\n model,\n entry: initialEntry,\n storageEntry: initialStorageEntry\n });\n const { entry, storageEntry } = await transformer.transformEntryKeys();\n\n /**\n * We need the latest entry to check if it needs to be updated.\n */\n const [latestStorageEntry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [entry.id]\n });\n\n const partitionKey = createPartitionKey({\n id: entry.id,\n locale: model.locale,\n tenant: model.tenant\n });\n\n const items = [\n entity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n }),\n entity.putBatch({\n ...storageEntry,\n PK: partitionKey,\n SK: createRevisionSortKey(entry),\n TYPE: createRecordType()\n })\n ];\n\n const esItems: BatchWriteItem[] = [\n esEntity.deleteBatch({\n PK: partitionKey,\n SK: createPublishedSortKey()\n })\n ];\n /**\n * If we are unpublishing the latest revision, let's also update the latest revision entry's status in both DynamoDB tables.\n */\n if (latestStorageEntry?.id === entry.id) {\n const { index } = configurations.es({\n model\n });\n\n items.push(\n entity.putBatch({\n ...storageEntry,\n PK: partitionKey,\n SK: createLatestSortKey(),\n TYPE: createLatestRecordType()\n })\n );\n\n const esLatestData = await transformer.getElasticsearchLatestEntryData();\n esItems.push(\n esEntity.putBatch({\n PK: partitionKey,\n SK: createLatestSortKey(),\n index,\n data: esLatestData\n })\n );\n }\n\n /**\n * Finally, execute regular table batch.\n */\n try {\n await batchWriteAll({\n table: entity.table,\n items\n });\n dataLoaders.clearAll({\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not store unpublished entry records in DynamoDB table.\",\n ex.code || \"UNPUBLISH_ERROR\",\n {\n entry,\n storageEntry\n }\n );\n }\n /**\n * And Elasticsearch table batch.\n */\n try {\n await batchWriteAll({\n table: esEntity.table,\n items: esItems\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message ||\n \"Could not store unpublished entry records in DynamoDB Elasticsearch table.\",\n ex.code || \"UNPUBLISH_ERROR\",\n {\n entry,\n storageEntry\n }\n );\n }\n return initialStorageEntry;\n };\n\n const getLatestRevisionByEntryId: CmsEntryStorageOperations[\"getLatestRevisionByEntryId\"] =\n async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const [entry] = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: [params.id]\n });\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n };\n\n const getPublishedRevisionByEntryId: CmsEntryStorageOperations[\"getPublishedRevisionByEntryId\"] =\n async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const [entry] = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: [params.id]\n });\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n };\n\n const getRevisionById: CmsEntryStorageOperations[\"getRevisionById\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const [entry] = await dataLoaders.getRevisionById({\n model,\n ids: [params.id]\n });\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n };\n\n const getRevisions: CmsEntryStorageOperations[\"getRevisions\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getAllEntryRevisions({\n model,\n ids: [params.id]\n });\n\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getByIds: CmsEntryStorageOperations[\"getByIds\"] = async (initialModel, params) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getRevisionById({\n model,\n ids: params.ids\n });\n\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getLatestByIds: CmsEntryStorageOperations[\"getLatestByIds\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getLatestRevisionByEntryId({\n model,\n ids: params.ids\n });\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getPublishedByIds: CmsEntryStorageOperations[\"getPublishedByIds\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const entries = await dataLoaders.getPublishedRevisionByEntryId({\n model,\n ids: params.ids\n });\n\n return entries.map(entry => {\n return convertEntryKeysFromStorage({\n model,\n entry\n });\n });\n };\n\n const getPreviousRevision: CmsEntryStorageOperations[\"getPreviousRevision\"] = async (\n initialModel,\n params\n ) => {\n const model = getStorageOperationsModel(initialModel);\n\n const { tenant, locale } = model;\n const { entryId, version } = params;\n const queryParams: QueryOneParams = {\n entity,\n partitionKey: createPartitionKey({\n tenant,\n locale,\n id: entryId\n }),\n options: {\n lt: `REV#${zeroPad(version)}`,\n /**\n * We need to have extra checks because DynamoDB will return published or latest record if there is no REV# record.\n */\n filters: [\n {\n attr: \"TYPE\",\n eq: createRecordType()\n },\n {\n attr: \"version\",\n lt: version\n }\n ],\n reverse: true\n }\n };\n\n try {\n const result = await queryOne<CmsEntry>(queryParams);\n\n const entry = cleanupItem(entity, result);\n\n if (!entry) {\n return null;\n }\n return convertEntryKeysFromStorage({\n entry,\n model\n });\n } catch (ex) {\n throw new WebinyError(\n ex.message || \"Could not get previous version of given entry.\",\n ex.code || \"GET_PREVIOUS_VERSION_ERROR\",\n {\n ...params,\n error: ex,\n partitionKey: queryParams.partitionKey,\n options: queryParams.options,\n model\n }\n );\n }\n };\n\n const getUniqueFieldValues: CmsEntryStorageOperations[\"getUniqueFieldValues\"] = async (\n model,\n params\n ) => {\n const { where, fieldId } = params;\n\n const { index } = configurations.es({\n model\n });\n\n const initialBody = createElasticsearchBody({\n model,\n params: {\n limit: 1,\n where\n },\n plugins\n });\n\n const field = model.fields.find(f => f.fieldId === fieldId);\n if (!field) {\n throw new WebinyError(\n `Could not find field with given \"fieldId\" value.`,\n \"FIELD_NOT_FOUND\",\n {\n fieldId\n }\n );\n }\n\n const body: ElasticsearchSearchBody = {\n ...initialBody,\n /**\n * We do not need any hits returned, we only need the aggregations.\n */\n size: 0,\n aggregations: {\n getUniqueFieldValues: {\n terms: {\n field: `values.${field.storageId}.keyword`,\n size: 1000000\n }\n }\n }\n };\n\n let response: ElasticsearchSearchResponse<string> | undefined = undefined;\n\n try {\n response = await elasticsearch.search({\n index,\n body\n });\n } catch (error) {\n if (shouldIgnoreEsResponseError(error)) {\n logIgnoredEsResponseError({\n error,\n model,\n indexName: index\n });\n return [];\n }\n\n throw new WebinyError(\n error.message || \"Error in the Elasticsearch query.\",\n error.code || \"ELASTICSEARCH_ERROR\",\n {\n error,\n index,\n model,\n body\n }\n );\n }\n\n const buckets = response.body.aggregations[\"getUniqueFieldValues\"]?.buckets || [];\n return buckets.map(file => {\n return {\n value: file.key,\n count: file.doc_count\n };\n });\n };\n\n return {\n create,\n createRevisionFrom,\n update,\n move,\n delete: deleteEntry,\n moveToBin,\n restoreFromBin,\n deleteRevision,\n deleteMultipleEntries,\n get,\n publish,\n unpublish,\n list,\n getLatestRevisionByEntryId,\n getPublishedRevisionByEntryId,\n getRevisionById,\n getRevisions,\n getByIds,\n getLatestByIds,\n getPublishedByIds,\n getPreviousRevision,\n getUniqueFieldValues,\n dataLoaders\n };\n};\n"],"mappings":"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","ignoreList":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/api-headless-cms-ddb-es",
3
- "version": "5.40.5",
3
+ "version": "5.40.6-beta.0",
4
4
  "main": "index.js",
5
5
  "keywords": [
6
6
  "@webiny/api-headless-cms",
@@ -27,16 +27,16 @@
27
27
  "license": "MIT",
28
28
  "dependencies": {
29
29
  "@babel/runtime": "7.24.1",
30
- "@webiny/api": "5.40.5",
31
- "@webiny/api-elasticsearch": "5.40.5",
32
- "@webiny/api-elasticsearch-tasks": "5.40.5",
33
- "@webiny/api-headless-cms": "5.40.5",
34
- "@webiny/aws-sdk": "5.40.5",
35
- "@webiny/db-dynamodb": "5.40.5",
36
- "@webiny/error": "5.40.5",
37
- "@webiny/handler-db": "5.40.5",
38
- "@webiny/plugins": "5.40.5",
39
- "@webiny/utils": "5.40.5",
30
+ "@webiny/api": "5.40.6-beta.0",
31
+ "@webiny/api-elasticsearch": "5.40.6-beta.0",
32
+ "@webiny/api-elasticsearch-tasks": "5.40.6-beta.0",
33
+ "@webiny/api-headless-cms": "5.40.6-beta.0",
34
+ "@webiny/aws-sdk": "5.40.6-beta.0",
35
+ "@webiny/db-dynamodb": "5.40.6-beta.0",
36
+ "@webiny/error": "5.40.6-beta.0",
37
+ "@webiny/handler-db": "5.40.6-beta.0",
38
+ "@webiny/plugins": "5.40.6-beta.0",
39
+ "@webiny/utils": "5.40.6-beta.0",
40
40
  "dataloader": "2.2.1",
41
41
  "jsonpack": "1.1.5",
42
42
  "lodash": "4.17.21"
@@ -47,17 +47,17 @@
47
47
  "@babel/preset-env": "7.24.3",
48
48
  "@elastic/elasticsearch": "7.12.0",
49
49
  "@types/jsonpack": "1.1.2",
50
- "@webiny/api-dynamodb-to-elasticsearch": "5.40.5",
51
- "@webiny/api-i18n": "5.40.5",
52
- "@webiny/api-security": "5.40.5",
53
- "@webiny/api-tenancy": "5.40.5",
54
- "@webiny/api-wcp": "5.40.5",
55
- "@webiny/cli": "5.40.5",
56
- "@webiny/handler": "5.40.5",
57
- "@webiny/handler-aws": "5.40.5",
58
- "@webiny/handler-graphql": "5.40.5",
59
- "@webiny/project-utils": "5.40.5",
60
- "@webiny/tasks": "5.40.5",
50
+ "@webiny/api-dynamodb-to-elasticsearch": "5.40.6-beta.0",
51
+ "@webiny/api-i18n": "5.40.6-beta.0",
52
+ "@webiny/api-security": "5.40.6-beta.0",
53
+ "@webiny/api-tenancy": "5.40.6-beta.0",
54
+ "@webiny/api-wcp": "5.40.6-beta.0",
55
+ "@webiny/cli": "5.40.6-beta.0",
56
+ "@webiny/handler": "5.40.6-beta.0",
57
+ "@webiny/handler-aws": "5.40.6-beta.0",
58
+ "@webiny/handler-graphql": "5.40.6-beta.0",
59
+ "@webiny/project-utils": "5.40.6-beta.0",
60
+ "@webiny/tasks": "5.40.6-beta.0",
61
61
  "jest": "29.7.0",
62
62
  "jest-dynalite": "3.6.1",
63
63
  "prettier": "2.8.8",
@@ -74,5 +74,5 @@
74
74
  "build": "yarn webiny run build",
75
75
  "watch": "yarn webiny run watch"
76
76
  },
77
- "gitHead": "f67778732392ed88f28da869ddacbf08a98cdec6"
77
+ "gitHead": "c0bf7d9bfe72b0689b29c84506f3168515a78517"
78
78
  }