libzypp 17.35.14
urlcredentialextractor_p.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
13#ifndef ZYPP_ZYPP_DETAIL_URLCREDENTIALEXTRACTOR_P_H
14#define ZYPP_ZYPP_DETAIL_URLCREDENTIALEXTRACTOR_P_H
15
16#include <zypp-core/Url.h>
18
19namespace zypp
20{
43 {
44 public:
46 : _root( root_r )
47 {}
48
50 : _root( root_r )
51 {}
52
54 { if ( _cmPtr ) _cmPtr->save(); }
55
57 bool collect( const Url & url_r )
58 {
59 bool ret = url_r.hasCredentialsInAuthority();
60 if ( ret )
61 {
62 if ( !_cmPtr ) _cmPtr.reset( new media::CredentialManager( _root ) );
63 _cmPtr->addUserCred( url_r );
64 }
65 return ret;
66 }
68 template<class TContainer>
69 bool collect( const TContainer & urls_r )
70 { bool ret = false; for ( const Url & url : urls_r ) { if ( collect( url ) && !ret ) ret = true; } return ret; }
71
73 bool extract( Url & url_r )
74 {
75 bool ret = collect( url_r );
76 if ( ret )
77 url_r.setPassword( std::string() );
78 return ret;
79 }
81 template<class TContainer>
82 bool extract( TContainer & urls_r )
83 { bool ret = false; for ( Url & url : urls_r ) { if ( extract( url ) && !ret ) ret = true; } return ret; }
84
85 private:
86 const Pathname & _root;
87 scoped_ptr<media::CredentialManager> _cmPtr;
88 };
89}
90
91#endif
Extract credentials in Url authority and store them via CredentialManager.
bool extract(Url &url_r)
Remember credentials stored in URL authority stripping the passowrd from url_r.
bool collect(const TContainer &urls_r)
bool collect(const Url &url_r)
Remember credentials stored in URL authority leaving the password in url_r.
scoped_ptr< media::CredentialManager > _cmPtr
UrlCredentialExtractor(const Pathname &root_r)
Url manipulation class.
Definition Url.h:92
void setPassword(const std::string &pass, EEncoding eflag=zypp::url::E_DECODED)
Set the password in the URL authority.
Definition Url.cc:743
bool hasCredentialsInAuthority() const
Returns true if username and password are encoded in the authority component.
Definition Url.h:392
Easy-to use interface to the ZYPP dependency resolver.