Skip to main content
Version: 7.9

system.security.validateUser

This function is used in Python Scripting.

Description

Tests credentials (username and password) against an authentication profile. Returns a boolean based upon whether or not the authentication profile accepts the credentials. If the authentication profile name is omitted, then the current project's default authentication profile is used.

Client Permission Restrictions

This scripting function has no Client Permission restrictions.

Syntax (Client)

system.security.validateUser(username, password, authProfile, timeout)

Parameters

TypeParameterDescription
StringusernameThe username to validate.
StringpasswordThe password for the user.
StringauthProfileThe name of the authentication profile to run against. Optional. Leaving this out will use the project's default profile.
IntegertimeoutTimeout for client-to-gateway communication. (default: 60,000ms)

Returns

boolean - false(0) if the user failed to authenticate, true(1) if the username/password was a valid combination.

Scope

Client

Syntax (Gateway)

system.security.validateUser(username, password, authProfile, timeout)

Parameters

TypeParameterDescription
StringusernameUser name to validate. Required.
StringpasswordUser's password. Required.
StringauthProfileAuthorization profile to user for validation.
IntegertimeoutNot used in gateway scripts.

Returns

boolean - True if valid username/password combination.

Scope

Gateway

Code Examples

Example #1
# This would require the current user to enter their password again before proceeding.

currentUser = system.security.getUsername()
password = system.gui.passwordBox("Confirm Password")
valid = system.security.validateUser(currentUser, password)
if valid:
# do something
else:
system.gui.errorBox("Incorrect password")