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 : #include <osl/diagnose.h>
23 :
24 : using namespace com::sun::star;
25 :
26 2 : SysCredentialsConfigItem::SysCredentialsConfigItem(
27 : SysCredentialsConfig * pOwner )
28 : : utl::ConfigItem( OUString("Office.Common/Passwords"),
29 : ConfigItemMode::ImmediateUpdate ),
30 : m_bInited( false ),
31 2 : m_pOwner( pOwner )
32 : {
33 2 : uno::Sequence< OUString > aNode( 1 );
34 2 : aNode[ 0 ] = "Office.Common/Passwords/AuthenticateUsingSystemCredentials";
35 2 : EnableNotification( aNode );
36 2 : }
37 :
38 : //virtual
39 0 : void SysCredentialsConfigItem::Notify(
40 : const uno::Sequence< OUString > & /*seqPropertyNames*/ )
41 : {
42 : {
43 0 : ::osl::MutexGuard aGuard( m_aMutex );
44 0 : m_bInited = false;
45 : // rebuild m_seqURLs
46 0 : getSystemCredentialsURLs();
47 : }
48 0 : m_pOwner->persistentConfigChanged();
49 0 : }
50 :
51 0 : void SysCredentialsConfigItem::ImplCommit()
52 : {
53 : // does nothing
54 0 : }
55 :
56 : uno::Sequence< OUString >
57 0 : SysCredentialsConfigItem::getSystemCredentialsURLs()
58 : {
59 0 : ::osl::MutexGuard aGuard( m_aMutex );
60 0 : if ( !m_bInited )
61 : {
62 : // read config item
63 0 : uno::Sequence< OUString > aPropNames( 1 );
64 0 : aPropNames[ 0 ] = "AuthenticateUsingSystemCredentials";
65 : uno::Sequence< uno::Any > aAnyValues(
66 0 : utl::ConfigItem::GetProperties( aPropNames ) );
67 :
68 : OSL_ENSURE(
69 : aAnyValues.getLength() == 1,
70 : "SysCredentialsConfigItem::getSystemCredentialsURLs: "
71 : "Error reading config item!" );
72 :
73 0 : uno::Sequence< OUString > aValues;
74 0 : if ( ( aAnyValues[ 0 ] >>= aValues ) ||
75 0 : ( !aAnyValues[ 0 ].hasValue() ) )
76 : {
77 0 : m_seqURLs = aValues;
78 0 : m_bInited = true;
79 0 : }
80 : }
81 0 : return m_seqURLs;
82 : }
83 :
84 0 : void SysCredentialsConfigItem::setSystemCredentialsURLs(
85 : const uno::Sequence< OUString > & seqURLList )
86 : {
87 0 : ::osl::MutexGuard aGuard( m_aMutex );
88 :
89 : // write config item.
90 0 : uno::Sequence< OUString > aPropNames( 1 );
91 0 : uno::Sequence< uno::Any > aPropValues( 1 );
92 0 : aPropNames[ 0 ] = "AuthenticateUsingSystemCredentials";
93 0 : aPropValues[ 0 ] <<= seqURLList;
94 :
95 0 : utl::ConfigItem::SetModified();
96 0 : utl::ConfigItem::PutProperties( aPropNames, aPropValues );
97 :
98 0 : m_seqURLs = seqURLList;
99 0 : m_bInited = true;
100 0 : }
101 :
102 :
103 : namespace
104 : {
105 : // TODO: This code is actually copied from svl/source/passwordcontainer.cxx
106 0 : bool removeLastSegment( OUString & aURL )
107 : {
108 0 : sal_Int32 aInd = aURL.lastIndexOf( '/' );
109 :
110 0 : if( aInd > 0 )
111 : {
112 0 : sal_Int32 aPrevInd = aURL.lastIndexOf( '/', aInd );
113 0 : if ( aURL.indexOf( "://" ) != aPrevInd - 2 ||
114 0 : aInd != aURL.getLength() - 1 )
115 : {
116 0 : aURL = aURL.copy( 0, aInd );
117 0 : return true;
118 : }
119 : }
120 :
121 0 : return false;
122 : }
123 :
124 0 : bool findURL( StringSet const & rContainer, OUString const & aURL, OUString & aResult )
125 : {
126 : // TODO: This code is actually copied from svl/source/passwordcontainer.cxx
127 0 : if( !rContainer.empty() && !aURL.isEmpty() )
128 : {
129 0 : OUString aUrl( aURL );
130 :
131 : // each iteration remove last '/...' section from the aUrl
132 : // while it's possible, up to the most left '://'
133 0 : do
134 : {
135 : // first look for <url>/somename and then look for <url>/somename/...
136 0 : StringSet::const_iterator aIter = rContainer.find( aUrl );
137 0 : if( aIter != rContainer.end() )
138 : {
139 0 : aResult = *aIter;
140 0 : return true;
141 : }
142 : else
143 : {
144 0 : OUString tmpUrl( aUrl );
145 0 : if ( !tmpUrl.endsWith("/") )
146 0 : tmpUrl += "/";
147 :
148 0 : aIter = rContainer.lower_bound( tmpUrl );
149 0 : if( aIter != rContainer.end() && aIter->match( tmpUrl ) )
150 : {
151 0 : aResult = *aIter;
152 0 : return true;
153 0 : }
154 : }
155 : }
156 0 : while( removeLastSegment( aUrl ) && !aUrl.isEmpty() );
157 : }
158 0 : aResult.clear();
159 0 : return false;
160 : }
161 :
162 : } // namespace
163 :
164 2 : SysCredentialsConfig::SysCredentialsConfig()
165 : : m_aConfigItem( this ),
166 2 : m_bCfgInited( false )
167 : {
168 2 : }
169 :
170 0 : void SysCredentialsConfig::initCfg()
171 : {
172 0 : osl::MutexGuard aGuard( m_aMutex );
173 0 : if ( !m_bCfgInited )
174 : {
175 : uno::Sequence< OUString > aURLs(
176 0 : m_aConfigItem.getSystemCredentialsURLs() );
177 0 : for ( sal_Int32 n = 0; n < aURLs.getLength(); ++n )
178 0 : m_aCfgContainer.insert( aURLs[ n ] );
179 :
180 0 : m_bCfgInited = true;
181 0 : }
182 0 : }
183 :
184 0 : void SysCredentialsConfig::writeCfg()
185 : {
186 0 : osl::MutexGuard aGuard( m_aMutex );
187 :
188 : OSL_ENSURE( m_bCfgInited, "SysCredentialsConfig::writeCfg : not initialized!" );
189 :
190 0 : uno::Sequence< OUString > aURLs( m_aCfgContainer.size() );
191 0 : StringSet::const_iterator it = m_aCfgContainer.begin();
192 0 : const StringSet::const_iterator end = m_aCfgContainer.end();
193 0 : sal_Int32 n = 0;
194 :
195 0 : while ( it != end )
196 : {
197 0 : aURLs[ n ] = *it;
198 0 : ++it;
199 0 : ++n;
200 : }
201 :
202 0 : m_aConfigItem.setSystemCredentialsURLs( aURLs );
203 0 : }
204 :
205 0 : OUString SysCredentialsConfig::find( OUString const & aURL )
206 : {
207 0 : osl::MutexGuard aGuard( m_aMutex );
208 0 : OUString aResult;
209 0 : if ( findURL( m_aMemContainer, aURL, aResult ) )
210 0 : return aResult;
211 :
212 0 : initCfg();
213 0 : if ( findURL( m_aCfgContainer, aURL, aResult ) )
214 0 : return aResult;
215 :
216 0 : return OUString();
217 : }
218 :
219 0 : void SysCredentialsConfig::add( OUString const & rURL, bool bPersistent )
220 : {
221 0 : ::osl::MutexGuard aGuard( m_aMutex );
222 :
223 0 : if ( bPersistent )
224 : {
225 0 : m_aMemContainer.erase( rURL );
226 :
227 0 : initCfg();
228 0 : m_aCfgContainer.insert( rURL );
229 0 : writeCfg();
230 : }
231 : else
232 : {
233 0 : initCfg();
234 0 : if ( m_aCfgContainer.erase( rURL ) > 0 )
235 0 : writeCfg();
236 :
237 0 : m_aMemContainer.insert( rURL );
238 0 : }
239 0 : }
240 :
241 0 : void SysCredentialsConfig::remove( OUString const & rURL )
242 : {
243 0 : m_aMemContainer.erase( rURL );
244 :
245 0 : initCfg();
246 0 : if ( m_aCfgContainer.erase( rURL ) > 0 )
247 0 : writeCfg();
248 0 : }
249 :
250 0 : uno::Sequence< OUString > SysCredentialsConfig::list( bool bOnlyPersistent )
251 : {
252 0 : initCfg();
253 0 : sal_Int32 nCount = m_aCfgContainer.size()
254 0 : + ( bOnlyPersistent ? 0 : m_aMemContainer.size() );
255 0 : uno::Sequence< OUString > aResult( nCount );
256 :
257 0 : StringSet::const_iterator it = m_aCfgContainer.begin();
258 0 : StringSet::const_iterator end = m_aCfgContainer.end();
259 0 : sal_Int32 n = 0;
260 :
261 0 : while ( it != end )
262 : {
263 0 : aResult[ n ] = *it;
264 0 : ++it;
265 0 : ++n;
266 : }
267 :
268 0 : if ( !bOnlyPersistent )
269 : {
270 0 : it = m_aMemContainer.begin();
271 0 : end = m_aMemContainer.end();
272 :
273 0 : while ( it != end )
274 : {
275 0 : aResult[ n ] = *it;
276 0 : ++it;
277 0 : ++n;
278 : }
279 : }
280 0 : return aResult;
281 : }
282 :
283 0 : void SysCredentialsConfig::persistentConfigChanged()
284 : {
285 0 : ::osl::MutexGuard aGuard( m_aMutex );
286 0 : m_bCfgInited = false; // re-init on demand.
287 0 : }
288 :
289 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|