LSSTApplications  18.1.0
LSSTDataManagementBasePackage
Static Public Member Functions | List of all members
lsst::daf::persistence::DbAuth Class Reference

Class for database authentication. More...

#include <DbAuth.h>

Static Public Member Functions

static void setPolicy (lsst::pex::policy::Policy::Ptr policy)
 Set the authenticator Policy. More...
 
static void resetPolicy ()
 Set the authenticator Policy back to null. More...
 
static bool available (std::string const &host, std::string const &port)
 Determine whether an authenticator string is available for database access. More...
 
static std::string authString (std::string const &host, std::string const &port)
 Get the authenticator string for a database. More...
 
static std::string username (std::string const &host, std::string const &port)
 Get the username to use to authenticate to a database. More...
 
static std::string password (std::string const &host, std::string const &port)
 Get the password to use to authenticate to a database. More...
 

Detailed Description

Class for database authentication.

Provides access to username and password to be used to authenticate to a database. Actual username and password come from a well-known environment variable or a well-known file or a file specified by Policy. The format for the authenticator string in any location is "username:password".

Definition at line 58 of file DbAuth.h.

Member Function Documentation

◆ authString()

std::string lsst::daf::persistence::DbAuth::authString ( std::string const &  host,
std::string const &  port 
)
static

Get the authenticator string for a database.

Parameters
[in]hostName of the host to connect to.
[in]portPort number to connect to (as string).
Returns
String with username:password

Definition at line 154 of file DbAuth.cc.

155  {
157  return result.first + ":" + result.second;
158 }
py::object result
Definition: schema.cc:418
T search(T... args)

◆ available()

bool lsst::daf::persistence::DbAuth::available ( std::string const &  host,
std::string const &  port 
)
static

Determine whether an authenticator string is available for database access.

Parameters
[in]hostName of the host to connect to.
[in]portPort number to connect to (as string).
Returns
True if authenticator is available

Definition at line 137 of file DbAuth.cc.

138  {
139  try {
141  return true;
142  }
143  catch (...) {
144  return false;
145  }
146  return false; // not reached
147 }
py::object result
Definition: schema.cc:418
T search(T... args)

◆ password()

std::string lsst::daf::persistence::DbAuth::password ( std::string const &  host,
std::string const &  port 
)
static

Get the password to use to authenticate to a database.

Parameters
[in]hostName of the host to connect to.
[in]portPort number to connect to (as string).
Returns
Password string

Definition at line 176 of file DbAuth.cc.

177  {
179  return result.second;
180 }
py::object result
Definition: schema.cc:418
T search(T... args)

◆ resetPolicy()

void lsst::daf::persistence::DbAuth::resetPolicy ( )
static

Set the authenticator Policy back to null.

Definition at line 126 of file DbAuth.cc.

126  {
128  authPolicy = nullptr;
129 }
A PersistentCitizenScope object causes all Citizen objects created during its lifetime to be marked a...
Definition: Citizen.h:131

◆ setPolicy()

void lsst::daf::persistence::DbAuth::setPolicy ( lsst::pex::policy::Policy::Ptr  policy)
static

Set the authenticator Policy.

Parameters
[in]policyPointer to a Policy

Definition at line 119 of file DbAuth.cc.

119  {
121  authPolicy = pexPolicy::Policy::Ptr(new pexPolicy::Policy(*policy, true));
122 }
A PersistentCitizenScope object causes all Citizen objects created during its lifetime to be marked a...
Definition: Citizen.h:131
a container for holding hierarchical configuration data in memory.
Definition: Policy.h:169
std::shared_ptr< Policy > Ptr
Definition: Policy.h:172

◆ username()

std::string lsst::daf::persistence::DbAuth::username ( std::string const &  host,
std::string const &  port 
)
static

Get the username to use to authenticate to a database.

Parameters
[in]hostName of the host to connect to.
[in]portPort number to connect to (as string).
Returns
Username string

Definition at line 165 of file DbAuth.cc.

166  {
168  return result.first;
169 }
py::object result
Definition: schema.cc:418
T search(T... args)

The documentation for this class was generated from the following files: