Commit 3f396373 authored by Ayush Tiwari's avatar Ayush Tiwari

bt5_config: Add BusinessPropertyItem for saving values of properties

parent 2216aa39
This diff is collapsed.
...@@ -1772,9 +1772,15 @@ class TemplateTool (BaseTool): ...@@ -1772,9 +1772,15 @@ class TemplateTool (BaseTool):
# thus all the BusinessItem sub-objects should have single value # thus all the BusinessItem sub-objects should have single value
# Update hashes of item in old state before installation # Update hashes of item in old state before installation
for item in old_installation_state.objectValues(): for item in old_installation_state.objectValues():
value_list = item.objectValues() if item.isProperty:
value_list = item.getProperty('value')
else:
value_list = item.objectValues()
if value_list: if value_list:
item.setProperty('item_sha', self.calculateComparableHash(value_list[0])) item.setProperty('item_sha', self.calculateComparableHash(
value_list[0],
item.isProperty,
))
# Path Item List for installation_process should be the difference between # Path Item List for installation_process should be the difference between
# old and new installation state # old and new installation state
...@@ -1782,7 +1788,15 @@ class TemplateTool (BaseTool): ...@@ -1782,7 +1788,15 @@ class TemplateTool (BaseTool):
# If the path has been removed, then add it with sign = -1 # If the path has been removed, then add it with sign = -1
old_item = old_installation_state.getBusinessItemByPath(item.getProperty('item_path')) old_item = old_installation_state.getBusinessItemByPath(item.getProperty('item_path'))
# Calculate sha for the items in new_insatallation_state # Calculate sha for the items in new_insatallation_state
item.setProperty('item_sha', self.calculateComparableHash(item.objectValues()[0])) import pdb; pdb.set_trace()
if item.isProperty:
value = item.getProperty('value')
else:
value = item.objectValues()[0]
item.setProperty('item_sha', self.calculateComparableHash(
value,
item.isProperty,
))
if old_item: if old_item:
# If the old_item exists, we match the hashes and if it differs, then # If the old_item exists, we match the hashes and if it differs, then
# add the new item # add the new item
...@@ -1807,7 +1821,7 @@ class TemplateTool (BaseTool): ...@@ -1807,7 +1821,7 @@ class TemplateTool (BaseTool):
installMultipleBusinessManager = updateInstallationState installMultipleBusinessManager = updateInstallationState
def calculateComparableHash(self, object): def calculateComparableHash(self, object, isProperty=False):
""" """
Remove some attributes before comparing hashses Remove some attributes before comparing hashses
and return hash of the comparable object dict, in case the object is and return hash of the comparable object dict, in case the object is
...@@ -1817,7 +1831,7 @@ class TemplateTool (BaseTool): ...@@ -1817,7 +1831,7 @@ class TemplateTool (BaseTool):
attributes which changes at small updation, like workflow_history, attributes which changes at small updation, like workflow_history,
uid, volatile attributes(which starts with _v) uid, volatile attributes(which starts with _v)
""" """
if object.__class__.__name__ == 'PersistentMapping': if isProperty:
obj_dict = object obj_dict = object
else: else:
obj_dict = object.__dict__.copy() obj_dict = object.__dict__.copy()
...@@ -1827,6 +1841,7 @@ class TemplateTool (BaseTool): ...@@ -1827,6 +1841,7 @@ class TemplateTool (BaseTool):
removable_attributes.append('uid') removable_attributes.append('uid')
removable_attributes.append('_owner') removable_attributes.append('_owner')
removable_attributes.append('isIndexable')
for attr in removable_attributes: for attr in removable_attributes:
try: try:
del obj_dict[attr] del obj_dict[attr]
...@@ -1848,6 +1863,7 @@ class TemplateTool (BaseTool): ...@@ -1848,6 +1863,7 @@ class TemplateTool (BaseTool):
try: try:
if '#' in str(path): if '#' in str(path):
isProperty = True
relative_url, property_id = path.split('#') relative_url, property_id = path.split('#')
obj = portal.restrictedTraverse(relative_url) obj = portal.restrictedTraverse(relative_url)
property_value = obj.getProperty(property_id) property_value = obj.getProperty(property_id)
...@@ -1860,16 +1876,12 @@ class TemplateTool (BaseTool): ...@@ -1860,16 +1876,12 @@ class TemplateTool (BaseTool):
if not property_value: if not property_value:
raise KeyError raise KeyError
property_type = obj.getPropertyType(property_id) property_type = obj.getPropertyType(property_id)
# Create a persistent object to compare the hash obj = property_value
value = PersistentMapping()
value['name'] = property_id
value['type'] = property_type
value['value'] = property_value
obj = value
else: else:
isProperty = False
obj = portal.restrictedTraverse(path) obj = portal.restrictedTraverse(path)
obj_sha = self.calculateComparableHash(obj) obj_sha = self.calculateComparableHash(obj, isProperty)
# Get item at old state # Get item at old state
old_item = old_state.getBusinessItemByPath(path) old_item = old_state.getBusinessItemByPath(path)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment