X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;ds=sidebyside;f=src%2Fconfig.cpp;h=e88ec2bee52e3331a9c67ea13777964832826c41;hb=7f424efc9d4ebbb89ce4e6bee10ca8ec839f29d8;hp=2eb1f491c3bc42ca41e35eefbb183c42e644409d;hpb=890efd9eb1d32033fe3afd088838bde707f3a2bb;p=cassiopeia.git diff --git a/src/config.cpp b/src/config.cpp index 2eb1f49..e88ec2b 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -4,7 +4,7 @@ #include #include -#include "sslUtil.h" +#include "crypto/sslUtil.h" std::string keyDir; std::unordered_map profiles; @@ -46,17 +46,7 @@ std::shared_ptr> parseConf( std::st return map; } -int parseConfig( std::string path ) { - - auto masterConf = parseConf( path ); - - keyDir = masterConf->at( "key.directory" ); - sqlHost = masterConf->at( "sql.host" ); - sqlUser = masterConf->at( "sql.user" ); - sqlPass = masterConf->at( "sql.password" ); - sqlDB = masterConf->at( "sql.database" ); - serialPath = masterConf->at( "serialPath" ); - +int parseProfiles() { CAs = std::unordered_map>(); DIR* dp; @@ -98,12 +88,29 @@ int parseConfig( std::string path ) { prof.eku = map->at( "eku" ); prof.ku = map->at( "ku" ); - if( CAs.find( map->at( "ca" ) ) == CAs.end() ) { - std::shared_ptr ca( new CAConfig( map->at( "ca" ) ) ); - CAs.emplace( map->at( "ca" ), ca ); - } + std::string cas = map->at( "ca" ); + + for( size_t pos = 0; pos != std::string::npos; ) { + size_t end = cas.find( ",", pos ); + std::string sub; + + if( end == std::string::npos ) { + sub = cas.substr( pos ); + } else { + sub = cas.substr( pos, end - pos ); + end++; + } - prof.ca = CAs.at( map->at( "ca" ) ); + pos = end; + + if( CAs.find( sub ) == CAs.end() ) { + std::shared_ptr ca( new CAConfig( sub ) ); + CAs.emplace( sub, ca ); + } + + prof.ca.push_back( CAs.at( sub ) ); + + } profiles.emplace( profileName, prof ); std::cout << "Profile: " << profileName << " up and running." << std::endl; @@ -114,10 +121,28 @@ int parseConfig( std::string path ) { std::cout << profiles.size() << " profiles loaded." << std::endl; + return 0; +} + +int parseConfig( std::string path ) { + + auto masterConf = parseConf( path ); + + keyDir = masterConf->at( "key.directory" ); + sqlHost = masterConf->at( "sql.host" ); + sqlUser = masterConf->at( "sql.user" ); + sqlPass = masterConf->at( "sql.password" ); + sqlDB = masterConf->at( "sql.database" ); + serialPath = masterConf->at( "serialPath" ); + if( keyDir == "" ) { std::cerr << "Missing config property key.directory" << std::endl; return -1; } + if( parseProfiles() != 0 ) { + return -1; + } + return 0; }