Files
libreoffice/connectivity/source/drivers/mysql/YUsers.cxx

118 lines
4.5 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2002-11-11 07:30:50 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2002-11-11 07:30:50 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2002-11-11 07:30:50 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2002-11-11 07:30:50 +00:00
*
* This file is part of OpenOffice.org.
2002-11-11 07:30:50 +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
*
* 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
*
* 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)
{
}
// -----------------------------------------------------------------------------
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();
}
// -------------------------------------------------------------------------
Reference< XPropertySet > OUsers::createDescriptor()
2002-11-11 07:30:50 +00:00
{
OUserExtend* pNew = new OUserExtend(m_xConnection);
return pNew;
}
// -------------------------------------------------------------------------
// XAppend
sdbcx::ObjectType OUsers::appendObject( const ::rtl::OUString& _rForName, const Reference< XPropertySet >& descriptor )
2002-11-11 07:30:50 +00:00
{
::rtl::OUString aSql( "GRANT USAGE ON * TO " );
2002-11-11 07:30:50 +00:00
::rtl::OUString aQuote = m_xConnection->getMetaData()->getIdentifierQuoteString( );
::rtl::OUString sUserName( _rForName );
2002-11-11 07:30:50 +00:00
aSql += ::dbtools::quoteName(aQuote,sUserName)
+ ::rtl::OUString(" @\"%\" ");
2002-11-11 07:30:50 +00:00
::rtl::OUString sPassword;
descriptor->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_PASSWORD)) >>= sPassword;
if ( !sPassword.isEmpty() )
2002-11-11 07:30:50 +00:00
{
aSql += ::rtl::OUString(" IDENTIFIED BY '");
2002-11-11 07:30:50 +00:00
aSql += sPassword;
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);
return createObject( _rForName );
2002-11-11 07:30:50 +00:00
}
// -------------------------------------------------------------------------
// XDrop
void OUsers::dropObject(sal_Int32 /*_nPos*/,const ::rtl::OUString _sElementName)
2002-11-11 07:30:50 +00:00
{
::rtl::OUString aSql( "REVOKE ALL ON * FROM " );
::rtl::OUString aQuote = m_xConnection->getMetaData()->getIdentifierQuoteString( );
aSql += ::dbtools::quoteName(aQuote,_sElementName);
2002-11-11 07:30:50 +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
}
// -------------------------------------------------------------------------
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */