LCOV - code coverage report
Current view: top level - dbaccess/source/ui/dlg - UserAdmin.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 153 0.7 %
Date: 2014-11-03 Functions: 2 24 8.3 %
Legend: Lines: hit not hit

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

Generated by: LCOV version 1.10