DbAuth¶
-
class
lsst.daf.butler.registry.DbAuth(path: Optional[str] = None, envVar: Optional[str] = None, authList: Optional[List[Dict[str, str]]] = None)¶ Bases:
objectRetrieves authentication information for database connections.
The authorization configuration is taken from the
authListparameter or a (group- and world-inaccessible) YAML file located at a path specified by the given environment variable or at a default path location.- Parameters
Notes
At least one of
path,envVar, orauthListmust be provided; generallypathshould be provided as a default location.Methods Summary
getAuth(dialectname, username, host, port, …)Retrieve a username and password for a database connection.
getUrl(url)Fill in a username and password in a database connection URL.
Methods Documentation
-
getAuth(dialectname: Optional[str], username: Optional[str], host: Optional[str], port: Optional[Union[int, str]], database: Optional[str]) → Tuple[Optional[str], str]¶ Retrieve a username and password for a database connection.
This function matches elements from the database connection URL with glob-like URL patterns in a list of configuration dictionaries.
- Parameters
- dialectname
str Database dialect, for example sqlite, mysql, postgresql, oracle, or mssql.
- username
stror None Username from connection URL if present.
- host
str Host name from connection URL if present.
- port
strorintor None Port from connection URL if present.
- database
str Database name from connection URL.
- dialectname
- Returns
- Raises
- DbAuthError
Raised if the input is missing elements, an authorization dictionary is missing elements, the authorization file is misconfigured, or no matching authorization is found.
Notes
The list of authorization configuration dictionaries is tested in order, with the first matching dictionary used. Each dictionary must contain a
urlitem with a pattern to match against the database connection URL and apassworditem. If no username is provided in the database connection URL, the dictionary must also contain ausernameitem.The
urlitem must begin with a dialect and is not allowed to specify dialect+driver.Glob-style patterns (using “
*” and “?” as wildcards) can be used to match the host and database name portions of the connection URL. For the username, port, and database name portions, omitting them from the pattern matches against any value in the connection URL.Examples
The connection URL
postgresql://user@host.example.com:5432/my_databasematches against the identical string as a pattern. Other patterns that would match include:postgresql://*postgresql://*.example.compostgresql://*.example.com/my_*postgresql://host.example.com/my_databasepostgresql://host.example.com:5432/my_databasepostgresql://user@host.example.com/my_database
Note that the connection URL
postgresql://host.example.com/my_databasewould not match against the patternpostgresql://host.example.com:5432, even if the default port for the connection is 5432.
-
getUrl(url: str) → str¶ Fill in a username and password in a database connection URL.
This function parses the URL and calls
getAuth.- Parameters
- url
str Database connection URL.
- url
- Returns
- url
str Database connection URL with username and password.
- url
- Raises
- DbAuthError
Raised if the input is missing elements, an authorization dictionary is missing elements, the authorization file is misconfigured, or no matching authorization is found.
See also