diff roundup/cgi/templating.py @ 7936:a9b136565838

feat: issue1525113 - notation to filter by logged-in user At long last (almost 18 years) this patch lands. It allows sharing of queries that want to use the currently logged in user (i.e. I or me). By replacing an id number for the user by '@current_user' in the query you can share the query for "my issues" where 'my' is the logged in user not the person who created the query. Updated the templates to use this. Updated upgrading.py for directions on using it. RDBMS and anydbm both work. Also expressions using it (e.g. not @current_user) work and are tested. Test code done. I am not sure what the change to templating.py does. I am following the original patch and have built a test case to hit the if clause. But the rest of the test doesn't actualy provide the props I need. If I knew what that code was supposed to do there I would create a real test.
author John Rouillard <rouilj@ieee.org>
date Mon, 06 May 2024 00:49:43 -0400
parents 29a666d8a70d
children b63fcfc2c984
line wrap: on
line diff
--- a/roundup/cgi/templating.py	Sun May 05 20:57:11 2024 -0400
+++ b/roundup/cgi/templating.py	Mon May 06 00:49:43 2024 -0400
@@ -564,10 +564,16 @@
             else:
                 l.append(item)
                 continue
+
         # if fail_ok, ignore lookup error
         # otherwise entry must be existing object id rather than key value
         if fail_ok:
             l.append(entry)
+        elif entry == '@current_user' and prop.classname == 'user':
+            # as a special case, '@current_user' means the currently
+            # logged-in user
+            l.append(entry)
+
     return l
 
 

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