system.user.getUser() returns a user object which has functions like getContactInfo and getRoles. Based on this javadoc if you have a User object, you can use setRoles(java.util.Collection<java.lang.String> roles).to add roles to a user.
I tested it without the system.user.editUser call.
Seems to print normal.
The nesting part is a bit confusing for me.
# List of emails to check against
email_list = ["email1@example.com", "email2@example.com", "email3@example.com"]
# Retrieve all users
users = system.user.getUsers('default')
# Loop through each user
for user in users:
# Get contact info for the user
contacts = user.getContactInfo()
# Check if any contact is an email in the email_list
for contact in contacts:
if contact.contactType == "email" and contact.value in email_list:
# Get the user's current roles
current_roles = user.getRoles()
# Append the "Pilot" role if not already present
if "Pilot" not in current_roles:
current_roles.append("Pilot")
# Update the user's roles
user.setRoles(current_roles)
# Save the changes
system.user.editUser("default", user)
print(f"Added 'Pilot' role to user: {user.getName()}")
f strings don't exist in Python 2, and the print function is only available behind a from __future__ import. This code is going to throw a syntax error when it reaches this conditional, if it even compiles. You cannot trust ChatGPT et al for general purpose Ignition help, full stop.
When I print the user, I don't get a dictionary, and that part confuses me a bit.
I think it works other than just not able to print out the username at the end.
I attempted the system.user.editUser function on a user that exists, but is not a real user.
# List of emails to check against
email_list = ["email1@example.com"]
# Retrieve all users
users = system.user.getUsers('default')
# Loop through each user
for user in users:
# Get contact info for the user
contacts = user.getContactInfo()
# Check if any contact is an email in the email_list
for contact in contacts:
if contact.contactType == "email" and contact.value in email_list:
# Get the user's current roles
current_roles = user.getRoles()
print 'current roles'
print (current_roles)
# Append the "Pilot" role if not already present
if "Pilot" not in current_roles:
current_roles.append("Pilot")
# Update the user's roles
user.setRoles(current_roles)
print 'user'
print (user)
print (user.get('username'))
system.user.editUser("default", user)
I got back an error. com.inductiveautomation.ignition.common.messages.UIResponse@25f99185
I searched for how to do what you are saying.
added to my script, hope I did it right:
from com.inductiveautomation.ignition.common.messages import UIResponse
......
print(UIResponse.getErrors(system.user.editUser("default", user)))
I got this to print:
[class org.python.core.PyString cannot be cast to class java.lang.String (org.python.core.PyString is in unnamed module of loader 'app'; java.lang.String is in module java.base of loader 'bootstrap')]
I think it is upset that I tried to pass a string into the sequence.
The tuple prints fine.
I don't think I matched the expectations of the object though.
Says I can't cast a PyString as a Java String I think. I don't know what it wants me to do though.
I think I have a syntax error that I don't recognize.
Doesn't everyone have a script for setting roles and could easily help me?
Setting roles on the gateway takes like 20 seconds per person when pressing the save button.
I feel I am struggling with something that should just be a code snippet on the manual, that setting user roles via script is the only way to effectively set roles.
I don't think it is something I would know by reading programming books.
I think it is something obvious to maybe someone who worked with 7.9 and before though. I think I am new in 8.1, and need help with knowing what I am doing wrong in the script.
I am looking over the java doc for the user object. This has wasted a lot of my time, very frustrating. I am nearly certain the error is obvious to another person.
ChatGPT said I might be copying the older user object and need to create a new one. Testing it.
I'm fairly certain you are getting the error because Pilot does not already exist as a role. Make sure Pilot is an available role before trying to assign it to a user.