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

Generated by: LCOV version 1.10