2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2002-11-11 07:30:50 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 09:24:15 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-11-11 07:30:50 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2002-11-11 07:30:50 +00:00
|
|
|
*
|
2008-04-10 09:24:15 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-11-11 07:30:50 +00:00
|
|
|
*
|
2008-04-10 09:24:15 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-11-11 07:30:50 +00:00
|
|
|
*
|
2008-04-10 09:24:15 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2002-11-11 07:30:50 +00:00
|
|
|
*
|
2008-04-10 09:24:15 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2002-11-11 07:30:50 +00:00
|
|
|
*
|
2008-04-10 09:24:15 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2002-11-11 07:30:50 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "mysql/YUsers.hxx"
|
|
|
|
#include "mysql/YUser.hxx"
|
|
|
|
#include "mysql/YTable.hxx"
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XResultSet.hpp>
|
|
|
|
#include "connectivity/sdbcx/IRefreshable.hxx"
|
|
|
|
#include <comphelper/types.hxx>
|
|
|
|
#include "connectivity/dbexception.hxx"
|
|
|
|
#include "connectivity/dbtools.hxx"
|
|
|
|
#include "TConnection.hxx"
|
|
|
|
|
|
|
|
using namespace ::comphelper;
|
|
|
|
using namespace connectivity;
|
|
|
|
using namespace connectivity::mysql;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
|
|
|
|
OUsers::OUsers( ::cppu::OWeakObject& _rParent,
|
|
|
|
::osl::Mutex& _rMutex,
|
|
|
|
const TStringVector &_rVector,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _xConnection,
|
|
|
|
connectivity::sdbcx::IRefreshableUsers* _pParent)
|
|
|
|
: sdbcx::OCollection(_rParent,sal_True,_rMutex,_rVector)
|
|
|
|
,m_xConnection(_xConnection)
|
|
|
|
,m_pParent(_pParent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2005-03-10 14:31:48 +00:00
|
|
|
sdbcx::ObjectType OUsers::createObject(const ::rtl::OUString& _rName)
|
2002-11-11 07:30:50 +00:00
|
|
|
{
|
|
|
|
return new OMySQLUser(m_xConnection,_rName);
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void OUsers::impl_refresh() throw(RuntimeException)
|
|
|
|
{
|
|
|
|
m_pParent->refreshUsers();
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
2006-07-10 13:31:02 +00:00
|
|
|
Reference< XPropertySet > OUsers::createDescriptor()
|
2002-11-11 07:30:50 +00:00
|
|
|
{
|
|
|
|
OUserExtend* pNew = new OUserExtend(m_xConnection);
|
|
|
|
return pNew;
|
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// XAppend
|
2006-07-10 13:31:02 +00:00
|
|
|
sdbcx::ObjectType OUsers::appendObject( const ::rtl::OUString& _rForName, const Reference< XPropertySet >& descriptor )
|
2002-11-11 07:30:50 +00:00
|
|
|
{
|
2012-06-02 09:42:35 -05:00
|
|
|
::rtl::OUString aSql( "GRANT USAGE ON * TO " );
|
2002-11-11 07:30:50 +00:00
|
|
|
::rtl::OUString aQuote = m_xConnection->getMetaData()->getIdentifierQuoteString( );
|
2006-07-10 13:31:02 +00:00
|
|
|
::rtl::OUString sUserName( _rForName );
|
2002-11-11 07:30:50 +00:00
|
|
|
aSql += ::dbtools::quoteName(aQuote,sUserName)
|
2012-06-02 09:42:35 -05:00
|
|
|
+ ::rtl::OUString(" @\"%\" ");
|
2002-11-11 07:30:50 +00:00
|
|
|
::rtl::OUString sPassword;
|
|
|
|
descriptor->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD)) >>= sPassword;
|
2011-12-14 23:13:36 -02:00
|
|
|
if ( !sPassword.isEmpty() )
|
2002-11-11 07:30:50 +00:00
|
|
|
{
|
2012-06-02 09:42:35 -05:00
|
|
|
aSql += ::rtl::OUString(" IDENTIFIED BY '");
|
2002-11-11 07:30:50 +00:00
|
|
|
aSql += sPassword;
|
2012-06-02 09:42:35 -05:00
|
|
|
aSql += ::rtl::OUString("'");
|
2002-11-11 07:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Reference< XStatement > xStmt = m_xConnection->createStatement( );
|
|
|
|
if(xStmt.is())
|
|
|
|
xStmt->execute(aSql);
|
|
|
|
::comphelper::disposeComponent(xStmt);
|
2006-07-10 13:31:02 +00:00
|
|
|
|
|
|
|
return createObject( _rForName );
|
2002-11-11 07:30:50 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// XDrop
|
2006-06-20 00:53:53 +00:00
|
|
|
void OUsers::dropObject(sal_Int32 /*_nPos*/,const ::rtl::OUString _sElementName)
|
2002-11-11 07:30:50 +00:00
|
|
|
{
|
2012-06-02 09:42:35 -05:00
|
|
|
::rtl::OUString aSql( "REVOKE ALL ON * FROM " );
|
2006-06-20 00:53:53 +00:00
|
|
|
::rtl::OUString aQuote = m_xConnection->getMetaData()->getIdentifierQuoteString( );
|
|
|
|
aSql += ::dbtools::quoteName(aQuote,_sElementName);
|
2002-11-11 07:30:50 +00:00
|
|
|
|
2006-06-20 00:53:53 +00:00
|
|
|
Reference< XStatement > xStmt = m_xConnection->createStatement( );
|
|
|
|
if(xStmt.is())
|
|
|
|
xStmt->execute(aSql);
|
|
|
|
::comphelper::disposeComponent(xStmt);
|
2002-11-11 07:30:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|