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 "UserAdmin.hxx"
21 : #include "UITools.hxx"
22 : #include "dbu_dlg.hrc"
23 : #include <comphelper/types.hxx>
24 : #include <comphelper/processfactory.hxx>
25 : #include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
26 : #include <com/sun/star/sdbcx/XDataDefinitionSupplier.hpp>
27 : #include <com/sun/star/sdbcx/XUsersSupplier.hpp>
28 : #include <com/sun/star/sdbcx/XDrop.hpp>
29 : #include <ucbhelper/interactionrequest.hxx>
30 : #include <ucbhelper/simpleauthenticationrequest.hxx>
31 : #include <com/sun/star/sdbcx/XDataDescriptorFactory.hpp>
32 : #include <com/sun/star/beans/XPropertySet.hpp>
33 : #include <com/sun/star/sdbcx/XUser.hpp>
34 : #include <com/sun/star/sdbcx/XAppend.hpp>
35 : #include "dbustrings.hrc"
36 : #include <tools/debug.hxx>
37 : #include "dbadmin.hxx"
38 : #include "moduledbu.hxx"
39 : #include <vcl/layout.hxx>
40 : #include <sfx2/passwd.hxx>
41 :
42 : using namespace ::com::sun::star::container;
43 : using namespace ::com::sun::star::beans;
44 : using namespace ::com::sun::star::sdbcx;
45 : using namespace ::com::sun::star::sdbc;
46 : using namespace ::com::sun::star::uno;
47 : using namespace ::com::sun::star::task;
48 : using namespace dbaui;
49 : using namespace ucbhelper;
50 : using namespace comphelper;
51 :
52 : class OPasswordDialog : public ModalDialog
53 : {
54 : VclPtr<VclFrame> m_pUser;
55 : VclPtr<Edit> m_pEDOldPassword;
56 : VclPtr<Edit> m_pEDPassword;
57 : VclPtr<Edit> m_pEDPasswordRepeat;
58 : VclPtr<OKButton> m_pOKBtn;
59 :
60 : DECL_LINK( OKHdl_Impl, void * );
61 : DECL_LINK( ModifiedHdl, Edit * );
62 :
63 : public:
64 : OPasswordDialog( vcl::Window* pParent,const OUString& _sUserName);
65 0 : virtual ~OPasswordDialog() { disposeOnce(); }
66 0 : virtual void dispose() SAL_OVERRIDE
67 : {
68 0 : m_pUser.clear();
69 0 : m_pEDOldPassword.clear();
70 0 : m_pEDPassword.clear();
71 0 : m_pEDPasswordRepeat.clear();
72 0 : m_pOKBtn.clear();
73 0 : ModalDialog::dispose();
74 0 : }
75 :
76 0 : OUString GetOldPassword() const { return m_pEDOldPassword->GetText(); }
77 0 : OUString GetNewPassword() const { return m_pEDPassword->GetText(); }
78 : };
79 :
80 0 : OPasswordDialog::OPasswordDialog(vcl::Window* _pParent,const OUString& _sUserName)
81 0 : : ModalDialog(_pParent, "PasswordDialog", "dbaccess/ui/password.ui")
82 : {
83 0 : get(m_pUser, "userframe");
84 0 : get(m_pEDOldPassword, "oldpassword");
85 0 : get(m_pEDPassword, "newpassword");
86 0 : get(m_pEDPasswordRepeat, "confirmpassword");
87 0 : get(m_pOKBtn, "ok");
88 :
89 0 : OUString sUser = m_pUser->get_label();
90 0 : sUser = sUser.replaceFirst("$name$: $",_sUserName);
91 0 : m_pUser->set_label(sUser);
92 0 : m_pOKBtn->Disable();
93 :
94 0 : m_pOKBtn->SetClickHdl( LINK( this, OPasswordDialog, OKHdl_Impl ) );
95 0 : m_pEDOldPassword->SetModifyHdl( LINK( this, OPasswordDialog, ModifiedHdl ) );
96 0 : }
97 :
98 0 : IMPL_LINK_NOARG(OPasswordDialog, OKHdl_Impl)
99 : {
100 0 : if( m_pEDPassword->GetText() == m_pEDPasswordRepeat->GetText() )
101 0 : EndDialog( RET_OK );
102 : else
103 : {
104 0 : OUString aErrorMsg( ModuleRes( STR_ERROR_PASSWORDS_NOT_IDENTICAL));
105 0 : ScopedVclPtrInstance< MessageDialog > aErrorBox(this, aErrorMsg);
106 0 : aErrorBox->Execute();
107 0 : m_pEDPassword->SetText( OUString() );
108 0 : m_pEDPasswordRepeat->SetText( OUString() );
109 0 : m_pEDPassword->GrabFocus();
110 : }
111 0 : return 0;
112 : }
113 :
114 0 : IMPL_LINK( OPasswordDialog, ModifiedHdl, Edit *, pEdit )
115 : {
116 0 : m_pOKBtn->Enable(!pEdit->GetText().isEmpty());
117 0 : return 0;
118 : }
119 :
120 : // OUserAdmin
121 0 : OUserAdmin::OUserAdmin(vcl::Window* pParent,const SfxItemSet& _rAttrSet)
122 : : OGenericAdministrationPage( pParent, "UserAdminPage", "dbaccess/ui/useradminpage.ui", _rAttrSet)
123 : , m_pUSER(0)
124 : , m_pNEWUSER(0)
125 : , m_pCHANGEPWD(0)
126 : , m_pDELETEUSER(0)
127 0 : ,m_TableCtrl(VclPtr<OTableGrantControl>::Create(get<VclAlignment>("table"), WB_TABSTOP))
128 : {
129 0 : m_TableCtrl->Show();
130 0 : get(m_pUSER, "user");
131 0 : get(m_pNEWUSER, "add");
132 0 : get(m_pCHANGEPWD, "changepass");
133 0 : get(m_pDELETEUSER, "delete");
134 :
135 0 : m_pUSER->SetSelectHdl(LINK(this, OUserAdmin, ListDblClickHdl));
136 :
137 0 : m_pNEWUSER->SetClickHdl(LINK(this, OUserAdmin, UserHdl));
138 0 : m_pCHANGEPWD->SetClickHdl(LINK(this, OUserAdmin, UserHdl));
139 0 : m_pDELETEUSER->SetClickHdl(LINK(this, OUserAdmin, UserHdl));
140 0 : }
141 :
142 0 : OUserAdmin::~OUserAdmin()
143 : {
144 0 : disposeOnce();
145 0 : }
146 :
147 0 : void OUserAdmin::dispose()
148 : {
149 0 : m_xConnection = NULL;
150 0 : m_TableCtrl.disposeAndClear();
151 0 : m_pUSER.clear();
152 0 : m_pNEWUSER.clear();
153 0 : m_pCHANGEPWD.clear();
154 0 : m_pDELETEUSER.clear();
155 0 : OGenericAdministrationPage::dispose();
156 0 : }
157 :
158 0 : void OUserAdmin::FillUserNames()
159 : {
160 0 : if(m_xConnection.is())
161 : {
162 0 : m_pUSER->Clear();
163 :
164 0 : Reference<XDatabaseMetaData> xMetaData = m_xConnection->getMetaData();
165 :
166 0 : if ( xMetaData.is() )
167 : {
168 0 : m_UserName = xMetaData->getUserName();
169 :
170 : // first we need the users
171 0 : if ( m_xUsers.is() )
172 : {
173 0 : m_pUSER->Clear();
174 :
175 0 : m_aUserNames = m_xUsers->getElementNames();
176 0 : const OUString* pBegin = m_aUserNames.getConstArray();
177 0 : const OUString* pEnd = pBegin + m_aUserNames.getLength();
178 0 : for(;pBegin != pEnd;++pBegin)
179 0 : m_pUSER->InsertEntry(*pBegin);
180 :
181 0 : m_pUSER->SelectEntryPos(0);
182 0 : if(m_xUsers->hasByName(m_UserName))
183 : {
184 0 : Reference<XAuthorizable> xAuth;
185 0 : m_xUsers->getByName(m_UserName) >>= xAuth;
186 0 : m_TableCtrl->setGrantUser(xAuth);
187 : }
188 :
189 0 : m_TableCtrl->setUserName(GetUser());
190 0 : m_TableCtrl->Init();
191 : }
192 0 : }
193 : }
194 :
195 0 : Reference<XAppend> xAppend(m_xUsers,UNO_QUERY);
196 0 : m_pNEWUSER->Enable(xAppend.is());
197 0 : Reference<XDrop> xDrop(m_xUsers,UNO_QUERY);
198 0 : m_pDELETEUSER->Enable(xDrop.is());
199 :
200 0 : m_pCHANGEPWD->Enable(m_xUsers.is());
201 0 : m_TableCtrl->Enable(m_xUsers.is());
202 :
203 0 : }
204 :
205 0 : VclPtr<SfxTabPage> OUserAdmin::Create( vcl::Window* pParent, const SfxItemSet* _rAttrSet )
206 : {
207 0 : return VclPtr<OUserAdmin>::Create( pParent, *_rAttrSet );
208 : }
209 :
210 0 : IMPL_LINK( OUserAdmin, UserHdl, PushButton *, pButton )
211 : {
212 : try
213 : {
214 0 : if(pButton == m_pNEWUSER)
215 : {
216 0 : ScopedVclPtrInstance< SfxPasswordDialog > aPwdDlg(this);
217 0 : aPwdDlg->ShowExtras(SfxShowExtras::ALL);
218 0 : if(aPwdDlg->Execute())
219 : {
220 0 : Reference<XDataDescriptorFactory> xUserFactory(m_xUsers,UNO_QUERY);
221 0 : Reference<XPropertySet> xNewUser = xUserFactory->createDataDescriptor();
222 0 : if(xNewUser.is())
223 : {
224 0 : xNewUser->setPropertyValue(PROPERTY_NAME,makeAny(OUString(aPwdDlg->GetUser())));
225 0 : xNewUser->setPropertyValue(PROPERTY_PASSWORD,makeAny(OUString(aPwdDlg->GetPassword())));
226 0 : Reference<XAppend> xAppend(m_xUsers,UNO_QUERY);
227 0 : if(xAppend.is())
228 0 : xAppend->appendByDescriptor(xNewUser);
229 0 : }
230 0 : }
231 : }
232 0 : else if(pButton == m_pCHANGEPWD)
233 : {
234 0 : OUString sName = GetUser();
235 :
236 0 : if(m_xUsers->hasByName(sName))
237 : {
238 0 : Reference<XUser> xUser;
239 0 : m_xUsers->getByName(sName) >>= xUser;
240 0 : if(xUser.is())
241 : {
242 0 : OUString sNewPassword,sOldPassword;
243 0 : ScopedVclPtrInstance< OPasswordDialog > aDlg(this,sName);
244 0 : if(aDlg->Execute() == RET_OK)
245 : {
246 0 : sNewPassword = aDlg->GetNewPassword();
247 0 : sOldPassword = aDlg->GetOldPassword();
248 :
249 0 : if(!sNewPassword.isEmpty())
250 0 : xUser->changePassword(sOldPassword,sNewPassword);
251 0 : }
252 0 : }
253 0 : }
254 : }
255 : else
256 : {// delete user
257 0 : if(m_xUsers.is() && m_xUsers->hasByName(GetUser()))
258 : {
259 0 : Reference<XDrop> xDrop(m_xUsers,UNO_QUERY);
260 0 : if(xDrop.is())
261 : {
262 0 : ScopedVclPtrInstance< MessageDialog > aQry(this, ModuleRes(STR_QUERY_USERADMIN_DELETE_USER), VCL_MESSAGE_QUESTION, VCL_BUTTONS_YES_NO);
263 0 : if(aQry->Execute() == RET_YES)
264 0 : xDrop->dropByName(GetUser());
265 0 : }
266 : }
267 : }
268 0 : FillUserNames();
269 : }
270 0 : catch(const SQLException& e)
271 : {
272 0 : ::dbaui::showError(::dbtools::SQLExceptionInfo(e), this, m_xORB);
273 0 : return 0;
274 : }
275 0 : catch(Exception& )
276 : {
277 0 : return 0;
278 : }
279 :
280 0 : return 0;
281 : }
282 :
283 0 : IMPL_LINK( OUserAdmin, ListDblClickHdl, ListBox *, /*pListBox*/ )
284 : {
285 0 : m_TableCtrl->setUserName(GetUser());
286 0 : m_TableCtrl->UpdateTables();
287 0 : m_TableCtrl->DeactivateCell();
288 0 : m_TableCtrl->ActivateCell(m_TableCtrl->GetCurRow(),m_TableCtrl->GetCurColumnId());
289 0 : return 0;
290 : }
291 :
292 0 : OUString OUserAdmin::GetUser()
293 : {
294 0 : return m_pUSER->GetSelectEntry();
295 : }
296 :
297 0 : void OUserAdmin::fillControls(::std::vector< ISaveValueWrapper* >& /*_rControlList*/)
298 : {
299 0 : }
300 :
301 0 : void OUserAdmin::fillWindows(::std::vector< ISaveValueWrapper* >& /*_rControlList*/)
302 : {
303 0 : }
304 :
305 0 : void OUserAdmin::implInitControls(const SfxItemSet& _rSet, bool _bSaveValue)
306 : {
307 0 : m_TableCtrl->setComponentContext(m_xORB);
308 : try
309 : {
310 0 : if ( !m_xConnection.is() && m_pAdminDialog )
311 : {
312 0 : m_xConnection = m_pAdminDialog->createConnection().first;
313 0 : Reference< XTablesSupplier > xTablesSup(m_xConnection,UNO_QUERY);
314 0 : Reference<XUsersSupplier> xUsersSup(xTablesSup,UNO_QUERY);
315 0 : if ( !xUsersSup.is() )
316 : {
317 0 : Reference< XDataDefinitionSupplier > xDriver(m_pAdminDialog->getDriver(),UNO_QUERY);
318 0 : if ( xDriver.is() )
319 : {
320 0 : xUsersSup.set(xDriver->getDataDefinitionByConnection(m_xConnection),UNO_QUERY);
321 0 : xTablesSup.set(xUsersSup,UNO_QUERY);
322 0 : }
323 : }
324 0 : if ( xUsersSup.is() )
325 : {
326 0 : m_TableCtrl->setTablesSupplier(xTablesSup);
327 0 : m_xUsers = xUsersSup->getUsers();
328 0 : }
329 : }
330 0 : FillUserNames();
331 : }
332 0 : catch(const SQLException& e)
333 : {
334 0 : ::dbaui::showError(::dbtools::SQLExceptionInfo(e), this, m_xORB);
335 : }
336 :
337 0 : OGenericAdministrationPage::implInitControls(_rSet, _bSaveValue);
338 36 : }
339 :
340 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|