Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "syscreds.hxx"
21 : #include <com/sun/star/beans/PropertyValue.hpp>
22 :
23 : using namespace com::sun::star;
24 :
25 4 : SysCredentialsConfigItem::SysCredentialsConfigItem(
26 : SysCredentialsConfig * pOwner )
27 : : utl::ConfigItem( OUString("Office.Common/Passwords"),
28 : CONFIG_MODE_IMMEDIATE_UPDATE ),
29 : m_bInited( false ),
30 4 : m_pOwner( pOwner )
31 : {
32 4 : uno::Sequence< OUString > aNode( 1 );
33 4 : aNode[ 0 ] = "Office.Common/Passwords/AuthenticateUsingSystemCredentials";
34 4 : EnableNotification( aNode );
35 4 : }
36 :
37 : //virtual
38 0 : void SysCredentialsConfigItem::Notify(
39 : const uno::Sequence< OUString > & /*seqPropertyNames*/ )
40 : {
41 : {
42 0 : ::osl::MutexGuard aGuard( m_aMutex );
43 0 : m_bInited = false;
44 : // rebuild m_seqURLs
45 0 : getSystemCredentialsURLs();
46 : }
47 0 : m_pOwner->persistentConfigChanged();
48 0 : }
49 :
50 0 : void SysCredentialsConfigItem::Commit()
51 : {
52 : // does nothing
53 0 : }
54 :
55 : uno::Sequence< OUString >
56 0 : SysCredentialsConfigItem::getSystemCredentialsURLs()
57 : {
58 0 : ::osl::MutexGuard aGuard( m_aMutex );
59 0 : if ( !m_bInited )
60 : {
61 : // read config item
62 0 : uno::Sequence< OUString > aPropNames( 1 );
63 0 : aPropNames[ 0 ] = "AuthenticateUsingSystemCredentials";
64 : uno::Sequence< uno::Any > aAnyValues(
65 0 : utl::ConfigItem::GetProperties( aPropNames ) );
66 :
67 : OSL_ENSURE(
68 : aAnyValues.getLength() == 1,
69 : "SysCredentialsConfigItem::getSystemCredentialsURLs: "
70 : "Error reading config item!" );
71 :
72 0 : uno::Sequence< OUString > aValues;
73 0 : if ( ( aAnyValues[ 0 ] >>= aValues ) ||
74 0 : ( !aAnyValues[ 0 ].hasValue() ) )
75 : {
76 0 : m_seqURLs = aValues;
77 0 : m_bInited = true;
78 0 : }
79 : }
80 0 : return m_seqURLs;
81 : }
82 :
83 0 : void SysCredentialsConfigItem::setSystemCredentialsURLs(
84 : const uno::Sequence< OUString > & seqURLList )
85 : {
86 0 : ::osl::MutexGuard aGuard( m_aMutex );
87 :
88 : // write config item.
89 0 : uno::Sequence< OUString > aPropNames( 1 );
90 0 : uno::Sequence< uno::Any > aPropValues( 1 );
91 0 : aPropNames[ 0 ] = "AuthenticateUsingSystemCredentials";
92 0 : aPropValues[ 0 ] <<= seqURLList;
93 :
94 0 : utl::ConfigItem::SetModified();
95 0 : utl::ConfigItem::PutProperties( aPropNames, aPropValues );
96 :
97 0 : m_seqURLs = seqURLList;
98 0 : m_bInited = true;
99 0 : }
100 :
101 :
102 : namespace
103 : {
104 : // TODO: This code is actually copied from svl/source/passwordcontainer.cxx
105 0 : bool removeLastSegment( OUString & aURL )
106 : {
107 0 : sal_Int32 aInd = aURL.lastIndexOf( '/' );
108 :
109 0 : if( aInd > 0 )
110 : {
111 0 : sal_Int32 aPrevInd = aURL.lastIndexOf( '/', aInd );
112 0 : if ( aURL.indexOf( "://" ) != aPrevInd - 2 ||
113 0 : aInd != aURL.getLength() - 1 )
114 : {
115 0 : aURL = aURL.copy( 0, aInd );
116 0 : return true;
117 : }
118 : }
119 :
120 0 : return false;
121 : }
122 :
123 0 : bool findURL( StringSet const & rContainer, OUString const & aURL, OUString & aResult )
124 : {
125 : // TODO: This code is actually copied from svl/source/passwordcontainer.cxx
126 0 : if( !rContainer.empty() && !aURL.isEmpty() )
127 : {
128 0 : OUString aUrl( aURL );
129 :
130 : // each iteration remove last '/...' section from the aUrl
131 : // while it's possible, up to the most left '://'
132 0 : do
133 : {
134 : // first look for <url>/somename and then look for <url>/somename/...
135 0 : StringSet::const_iterator aIter = rContainer.find( aUrl );
136 0 : if( aIter != rContainer.end() )
137 : {
138 0 : aResult = *aIter;
139 0 : return true;
140 : }
141 : else
142 : {
143 0 : OUString tmpUrl( aUrl );
144 0 : if ( !tmpUrl.endsWith("/") )
145 0 : tmpUrl += "/";
146 :
147 0 : aIter = rContainer.lower_bound( tmpUrl );
148 0 : if( aIter != rContainer.end() && aIter->match( tmpUrl ) )
149 : {
150 0 : aResult = *aIter;
151 0 : return true;
152 0 : }
153 : }
154 : }
155 0 : while( removeLastSegment( aUrl ) && !aUrl.isEmpty() );
156 : }
157 0 : aResult = OUString();
158 0 : return false;
159 : }
160 :
161 : } // namespace
162 :
163 4 : SysCredentialsConfig::SysCredentialsConfig()
164 : : m_aConfigItem( this ),
165 4 : m_bCfgInited( false )
166 : {
167 4 : }
168 :
169 0 : void SysCredentialsConfig::initCfg()
170 : {
171 0 : osl::MutexGuard aGuard( m_aMutex );
172 0 : if ( !m_bCfgInited )
173 : {
174 : uno::Sequence< OUString > aURLs(
175 0 : m_aConfigItem.getSystemCredentialsURLs() );
176 0 : for ( sal_Int32 n = 0; n < aURLs.getLength(); ++n )
177 0 : m_aCfgContainer.insert( aURLs[ n ] );
178 :
179 0 : m_bCfgInited = true;
180 0 : }
181 0 : }
182 :
183 0 : void SysCredentialsConfig::writeCfg()
184 : {
185 0 : osl::MutexGuard aGuard( m_aMutex );
186 :
187 : OSL_ENSURE( m_bCfgInited, "SysCredentialsConfig::writeCfg : not initialized!" );
188 :
189 0 : uno::Sequence< OUString > aURLs( m_aCfgContainer.size() );
190 0 : StringSet::const_iterator it = m_aCfgContainer.begin();
191 0 : const StringSet::const_iterator end = m_aCfgContainer.end();
192 0 : sal_Int32 n = 0;
193 :
194 0 : while ( it != end )
195 : {
196 0 : aURLs[ n ] = *it;
197 0 : ++it;
198 0 : ++n;
199 : }
200 :
201 0 : m_aConfigItem.setSystemCredentialsURLs( aURLs );
202 0 : }
203 :
204 0 : OUString SysCredentialsConfig::find( OUString const & aURL )
205 : {
206 0 : osl::MutexGuard aGuard( m_aMutex );
207 0 : OUString aResult;
208 0 : if ( findURL( m_aMemContainer, aURL, aResult ) )
209 0 : return aResult;
210 :
211 0 : initCfg();
212 0 : if ( findURL( m_aCfgContainer, aURL, aResult ) )
213 0 : return aResult;
214 :
215 0 : return OUString();
216 : }
217 :
218 0 : void SysCredentialsConfig::add( OUString const & rURL, bool bPersistent )
219 : {
220 0 : ::osl::MutexGuard aGuard( m_aMutex );
221 :
222 0 : if ( bPersistent )
223 : {
224 0 : m_aMemContainer.erase( rURL );
225 :
226 0 : initCfg();
227 0 : m_aCfgContainer.insert( rURL );
228 0 : writeCfg();
229 : }
230 : else
231 : {
232 0 : initCfg();
233 0 : if ( m_aCfgContainer.erase( rURL ) > 0 )
234 0 : writeCfg();
235 :
236 0 : m_aMemContainer.insert( rURL );
237 0 : }
238 0 : }
239 :
240 0 : void SysCredentialsConfig::remove( OUString const & rURL )
241 : {
242 0 : m_aMemContainer.erase( rURL );
243 :
244 0 : initCfg();
245 0 : if ( m_aCfgContainer.erase( rURL ) > 0 )
246 0 : writeCfg();
247 0 : }
248 :
249 0 : uno::Sequence< OUString > SysCredentialsConfig::list( bool bOnlyPersistent )
250 : {
251 0 : initCfg();
252 0 : sal_Int32 nCount = m_aCfgContainer.size()
253 0 : + ( bOnlyPersistent ? 0 : m_aMemContainer.size() );
254 0 : uno::Sequence< OUString > aResult( nCount );
255 :
256 0 : StringSet::const_iterator it = m_aCfgContainer.begin();
257 0 : StringSet::const_iterator end = m_aCfgContainer.end();
258 0 : sal_Int32 n = 0;
259 :
260 0 : while ( it != end )
261 : {
262 0 : aResult[ n ] = *it;
263 0 : ++it;
264 0 : ++n;
265 : }
266 :
267 0 : if ( !bOnlyPersistent )
268 : {
269 0 : it = m_aMemContainer.begin();
270 0 : end = m_aMemContainer.end();
271 :
272 0 : while ( it != end )
273 : {
274 0 : aResult[ n ] = *it;
275 0 : ++it;
276 0 : ++n;
277 : }
278 : }
279 0 : return aResult;
280 : }
281 :
282 0 : void SysCredentialsConfig::persistentConfigChanged()
283 : {
284 0 : ::osl::MutexGuard aGuard( m_aMutex );
285 0 : m_bCfgInited = false; // re-init on demand.
286 0 : }
287 :
288 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|