LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
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: