diff roundup/cgi/templating.py @ 5222:9bf221cebef3

Make properties method return only properties the user can search. See: https://sourceforge.net/p/roundup/mailman/roundup-devel/thread/20170405002844.2004B80690%40vm71.cs.umb.edu/#msg35769250 [Roundup-devel] Bug in context/properties, lists properties user can't search. The HTMLClass::properties() method returns a list of all properties. This is used when creating sort on/group by filters on index pages. However somewhere in the code, a user needs search permission on the property in order for it to be used for grouping or sorting. This means the user can choose to sort/group an index page by a property that they have no search permission for. As a result the sort/group is ignored. This is confusing. I have changed the properties method to only return properties the user has View/Search permissions on. I also added a new cansearch argument set by default to True. If set to False, all properties regardless of Search permission are returned. Doc updated to include the new default operation and mention the use of cansearch argument.
author John Rouillard <rouilj@ieee.org>
date Wed, 05 Apr 2017 21:38:32 -0400
parents 24945480d24c
children 462b0f76fce8
line wrap: on
line diff
--- a/roundup/cgi/templating.py	Wed Apr 05 21:20:20 2017 -0400
+++ b/roundup/cgi/templating.py	Wed Apr 05 21:38:32 2017 -0400
@@ -596,11 +596,20 @@
 
         return HTMLItem(self._client, self.classname, itemid)
 
-    def properties(self, sort=1):
-        """ Return HTMLProperty for all of this class' properties.
+    def properties(self, sort=1, cansearch=True):
+        """ Return HTMLProperty for allowed class' properties.
+
+            To return all properties call it with cansearch=False
+            and it will return properties the user is unable to
+            search.
         """
         l = []
+        canSearch=self._db.security.hasSearchPermission
+        userid=self._client.userid
         for name, prop in self._props.items():
+            if cansearch and \
+               not canSearch(userid, self._classname, name):
+                continue
             for klass, htmlklass in propclasses:
                 if isinstance(prop, klass):
                     value = prop.get_default_value()

Roundup Issue Tracker: http://roundup-tracker.org/