#275 Fix handling unicode in infosssd
Merged 6 years ago by puiterwijk. Opened 7 years ago by puiterwijk.
puiterwijk/ipsilon issue-272  into  master

file modified
+6 -6
@@ -77,10 +77,10 @@ 

                                         user_path)

  

          # Get GECOS, attributes, and groups

-         reply['gecos'] = str(user_obj.Get(

+         reply['gecos'] = user_obj.Get(

              'org.freedesktop.sssd.infopipe.Users.User',

              'gecos',

-             dbus_interface=dbus.PROPERTIES_IFACE))

+             dbus_interface=dbus.PROPERTIES_IFACE)

          user_attrs = user_obj.Get('org.freedesktop.sssd.infopipe.Users.User',

                                    'extraAttributes',

                                    dbus_interface=dbus.PROPERTIES_IFACE)
@@ -89,16 +89,16 @@ 

              dbus_interface='org.freedesktop.sssd.infopipe')

  

          for group in user_groups:

-             groups.append(str(group))

+             groups.append(group)

  

          for attr_name in user_attrs:

-             attr_name = str(attr_name)

+             attr_name = attr_name

              if len(user_attrs[attr_name]) == 1:

-                 reply[attr_name] = str(user_attrs[attr_name][0])

+                 reply[attr_name] = user_attrs[attr_name][0]

              else:

                  reply[attr_name] = []

                  for attr_val in user_attrs[attr_name]:

-                     reply[attr_name].append(str(attr_val))

+                     reply[attr_name].append(attr_val)

  

          return reply, groups

  

This patch removes various explicit str() calls, which would crash
if there was any unicode in the attribute value.

Fixes: #272
Signed-off-by: Patrick Uiterwijk puiterwijk@redhat.com

Commit 9f751ef fixes this pull-request

Pull-Request has been merged by puiterwijk@redhat.com

6 years ago