From ed5640d8b587fbcfed7dd7967f3de04b37a76f26 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:06:44 +0200 Subject: Adding upstream version 4:7.4.7. Signed-off-by: Daniel Baumann --- shell/source/cmdmail/cmdmail.component | 26 +++ shell/source/cmdmail/cmdmailmsg.cxx | 214 ++++++++++++++++++++++++ shell/source/cmdmail/cmdmailmsg.hxx | 105 ++++++++++++ shell/source/cmdmail/cmdmailsuppl.cxx | 287 +++++++++++++++++++++++++++++++++ shell/source/cmdmail/cmdmailsuppl.hxx | 74 +++++++++ 5 files changed, 706 insertions(+) create mode 100644 shell/source/cmdmail/cmdmail.component create mode 100644 shell/source/cmdmail/cmdmailmsg.cxx create mode 100644 shell/source/cmdmail/cmdmailmsg.hxx create mode 100644 shell/source/cmdmail/cmdmailsuppl.cxx create mode 100644 shell/source/cmdmail/cmdmailsuppl.hxx (limited to 'shell/source/cmdmail') diff --git a/shell/source/cmdmail/cmdmail.component b/shell/source/cmdmail/cmdmail.component new file mode 100644 index 000000000..6b1106269 --- /dev/null +++ b/shell/source/cmdmail/cmdmail.component @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/shell/source/cmdmail/cmdmailmsg.cxx b/shell/source/cmdmail/cmdmailmsg.cxx new file mode 100644 index 000000000..8d6c0865a --- /dev/null +++ b/shell/source/cmdmail/cmdmailmsg.cxx @@ -0,0 +1,214 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#include "cmdmailmsg.hxx" + +using com::sun::star::container::NoSuchElementException; +using com::sun::star::container::XNameAccess; + +using namespace cppu; +using namespace com::sun::star::uno; + + +void SAL_CALL CmdMailMsg::setBody( const OUString& aBody ) +{ + std::scoped_lock aGuard( m_aMutex ); + m_aBody = aBody; +} + +OUString SAL_CALL CmdMailMsg::getBody( ) +{ + std::scoped_lock aGuard( m_aMutex ); + return m_aBody; +} + +void SAL_CALL CmdMailMsg::setRecipient( const OUString& aRecipient ) +{ + std::scoped_lock aGuard( m_aMutex ); + m_aRecipient = aRecipient; +} + +OUString SAL_CALL CmdMailMsg::getRecipient( ) +{ + std::scoped_lock aGuard( m_aMutex ); + return m_aRecipient; +} + +void SAL_CALL CmdMailMsg::setCcRecipient( const Sequence< OUString >& aCcRecipient ) +{ + std::scoped_lock aGuard( m_aMutex ); + m_CcRecipients = aCcRecipient; +} + +Sequence< OUString > SAL_CALL CmdMailMsg::getCcRecipient( ) +{ + std::scoped_lock aGuard( m_aMutex ); + return m_CcRecipients; +} + +void SAL_CALL CmdMailMsg::setBccRecipient( const Sequence< OUString >& aBccRecipient ) +{ + std::scoped_lock aGuard( m_aMutex ); + m_BccRecipients = aBccRecipient; +} + +Sequence< OUString > SAL_CALL CmdMailMsg::getBccRecipient( ) +{ + std::scoped_lock aGuard( m_aMutex ); + return m_BccRecipients; +} + +void SAL_CALL CmdMailMsg::setOriginator( const OUString& aOriginator ) +{ + std::scoped_lock aGuard( m_aMutex ); + m_aOriginator = aOriginator; +} + +OUString SAL_CALL CmdMailMsg::getOriginator( ) +{ + std::scoped_lock aGuard( m_aMutex ); + return m_aOriginator; +} + +void SAL_CALL CmdMailMsg::setSubject( const OUString& aSubject ) +{ + std::scoped_lock aGuard( m_aMutex ); + m_aSubject = aSubject; +} + +OUString SAL_CALL CmdMailMsg::getSubject( ) +{ + std::scoped_lock aGuard( m_aMutex ); + return m_aSubject; +} + +void SAL_CALL CmdMailMsg::setAttachement( const Sequence< OUString >& aAttachment ) +{ + std::scoped_lock aGuard( m_aMutex ); + m_Attachments = aAttachment; +} + +Sequence< OUString > SAL_CALL CmdMailMsg::getAttachement( ) +{ + std::scoped_lock aGuard( m_aMutex ); + return m_Attachments; +} + +Any SAL_CALL CmdMailMsg::getByName( const OUString& aName ) +{ + std::scoped_lock aGuard( m_aMutex ); + + if( aName == "body" && !m_aBody.isEmpty() ) + return Any( m_aBody ); + + if( aName == "from" && !m_aOriginator.isEmpty() ) + return Any( m_aOriginator ); + + else if( aName == "to" && !m_aRecipient.isEmpty() ) + return Any( m_aRecipient ); + + else if( aName == "cc" && m_CcRecipients.hasElements() ) + return Any( m_CcRecipients ); + + else if( aName == "bcc" && m_BccRecipients.hasElements() ) + return Any( m_BccRecipients ); + + else if( aName == "subject" && !m_aSubject.isEmpty() ) + return Any( m_aSubject ); + + else if( aName == "attachment" && m_Attachments.hasElements() ) + return Any( m_Attachments ); + + throw NoSuchElementException("key not found: " + aName, + static_cast < XNameAccess * > (this) ); +} + +Sequence< OUString > SAL_CALL CmdMailMsg::getElementNames( ) +{ + std::scoped_lock aGuard( m_aMutex ); + + sal_Int32 nItems = 0; + Sequence< OUString > aRet( 7 ); + auto pRet = aRet.getArray(); + + if( !m_aBody.isEmpty() ) + pRet[nItems++] = "body"; + + if( !m_aOriginator.isEmpty() ) + pRet[nItems++] = "from"; + + if( !m_aRecipient.isEmpty() ) + pRet[nItems++] = "to"; + + if( m_CcRecipients.hasElements() ) + pRet[nItems++] = "cc"; + + if( m_BccRecipients.hasElements() ) + pRet[nItems++] = "bcc"; + + if( !m_aSubject.isEmpty() ) + pRet[nItems++] = "subject"; + + if( m_Attachments.hasElements() ) + pRet[nItems++] = "attachment"; + + aRet.realloc( nItems ); + return aRet; +} + + sal_Bool SAL_CALL CmdMailMsg::hasByName( const OUString& aName ) +{ + std::scoped_lock aGuard( m_aMutex ); + + if( aName == "body" && !m_aBody.isEmpty() ) + return true; + + if( aName == "from" && !m_aOriginator.isEmpty() ) + return true; + + else if( aName == "to" && !m_aRecipient.isEmpty() ) + return true; + + else if( aName == "cc" && m_CcRecipients.hasElements() ) + return true; + + else if( aName == "bcc" && m_BccRecipients.hasElements() ) + return true; + + else if( aName == "subject" && !m_aSubject.isEmpty() ) + return true; + + else if( aName == "attachment" && m_Attachments.hasElements() ) + return true; + + return false; +} + +Type SAL_CALL CmdMailMsg::getElementType( ) +{ + // returning void for multi type container + return Type(); +} + +sal_Bool SAL_CALL CmdMailMsg::hasElements( ) +{ + return getElementNames().hasElements(); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/shell/source/cmdmail/cmdmailmsg.hxx b/shell/source/cmdmail/cmdmailmsg.hxx new file mode 100644 index 000000000..b48140395 --- /dev/null +++ b/shell/source/cmdmail/cmdmailmsg.hxx @@ -0,0 +1,105 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef INCLUDED_SHELL_SOURCE_CMDMAIL_CMDMAILMSG_HXX +#define INCLUDED_SHELL_SOURCE_CMDMAIL_CMDMAILMSG_HXX + +#include +#include +#include + +#include + + + + +class CmdMailMsg : + public cppu::WeakImplHelper< + css::system::XSimpleMailMessage2, + css::container::XNameAccess > +{ + OUString m_aBody; + OUString m_aRecipient; + OUString m_aOriginator; + OUString m_aSubject; + css::uno::Sequence< OUString > m_CcRecipients; + css::uno::Sequence< OUString > m_BccRecipients; + css::uno::Sequence< OUString > m_Attachments; + + std::mutex m_aMutex; + +public: + + CmdMailMsg() {}; + + + // XSimpleMailMessage + + + virtual void SAL_CALL setBody( const OUString& aBody ) override; + + virtual OUString SAL_CALL getBody( ) override; + + virtual void SAL_CALL setRecipient( const OUString& aRecipient ) override; + + virtual OUString SAL_CALL getRecipient( ) override; + + virtual void SAL_CALL setCcRecipient( const css::uno::Sequence< OUString >& aCcRecipient ) override; + + virtual css::uno::Sequence< OUString > SAL_CALL getCcRecipient( ) override; + + virtual void SAL_CALL setBccRecipient( const css::uno::Sequence< OUString >& aBccRecipient ) override; + + virtual css::uno::Sequence< OUString > SAL_CALL getBccRecipient( ) override; + + virtual void SAL_CALL setOriginator( const OUString& aOriginator ) override; + + virtual OUString SAL_CALL getOriginator( ) override; + + virtual void SAL_CALL setSubject( const OUString& aSubject ) override; + + virtual OUString SAL_CALL getSubject( ) override; + + virtual void SAL_CALL setAttachement( const css::uno::Sequence< OUString >& aAttachement ) override; + + virtual css::uno::Sequence< OUString > SAL_CALL getAttachement( ) override; + + + // XNameAccess + + + virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override; + + virtual css::uno::Sequence< OUString > SAL_CALL getElementNames( ) override ; + + virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override; + + + // XElementAccess + + + virtual css::uno::Type SAL_CALL getElementType( ) override; + + virtual sal_Bool SAL_CALL hasElements( ) override; + +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx b/shell/source/cmdmail/cmdmailsuppl.cxx new file mode 100644 index 000000000..00b6517c4 --- /dev/null +++ b/shell/source/cmdmail/cmdmailsuppl.cxx @@ -0,0 +1,287 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#include + +#include + +#include + +#include +#include +#include "cmdmailsuppl.hxx" +#include "cmdmailmsg.hxx" +#include +#include +#include +#include +#include +#include +#include + +using com::sun::star::beans::PropertyValue; +using com::sun::star::system::XSimpleMailClientSupplier; +using com::sun::star::system::XSimpleMailClient; +using com::sun::star::system::XSimpleMailMessage; +using com::sun::star::system::XSimpleMailMessage2; +using com::sun::star::container::XNameAccess; +using osl::FileBase; + +using namespace cppu; +using namespace com::sun::star::system::SimpleMailClientFlags; +using namespace com::sun::star::uno; +using namespace com::sun::star::lang; +using namespace com::sun::star::configuration; + +CmdMailSuppl::CmdMailSuppl( const Reference< XComponentContext >& xContext ) +{ + m_xConfigurationProvider = theDefaultProvider::get(xContext); +} + +// XSimpleMailClientSupplier + +Reference< XSimpleMailClient > SAL_CALL CmdMailSuppl::querySimpleMailClient( ) +{ + return static_cast < XSimpleMailClient * > (this); +} + +// XSimpleMailClient + +Reference< XSimpleMailMessage > SAL_CALL CmdMailSuppl::createSimpleMailMessage( ) +{ + return Reference< XSimpleMailMessage >( new CmdMailMsg( ) ); +} + +namespace { + +void appendShellWord(OStringBuffer & buffer, OUString const & word, bool strict) +{ + OString sys; + if (!word.convertToString( + &sys, osl_getThreadTextEncoding(), + (strict + ? (RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR + | RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR) + : OUSTRING_TO_OSTRING_CVTFLAGS))) + { + throw css::uno::Exception( + ("Could not convert \"" + word + "\" to encoding #" + + OUString::number(osl_getThreadTextEncoding())), + css::uno::Reference()); + } + buffer.append('\''); + for (sal_Int32 i = 0; i != sys.getLength(); ++i) { + char c = sys[i]; + switch (c) { + case 0: + if (strict) { + throw css::uno::Exception( + "Could not convert word containing NUL, \"" + word + "\"", + css::uno::Reference()); + } + break; + case '\'': + buffer.append("'\\''"); + break; + default: + buffer.append(c); + break; + } + } + buffer.append('\''); +} + +} + +void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailMessage >& xSimpleMailMessage, sal_Int32 /*aFlag*/ ) +{ + if ( ! xSimpleMailMessage.is() ) + { + throw css::lang::IllegalArgumentException( "No message specified" , + static_cast < XSimpleMailClient * > (this), 1 ); + } + + if( ! m_xConfigurationProvider.is() ) + { + throw css::uno::Exception( "Can not access configuration" , + static_cast < XSimpleMailClient * > (this) ); + } + + + OUString aProgramURL("$BRAND_BASE_DIR/" LIBO_LIBEXEC_FOLDER "/senddoc"); + rtl::Bootstrap::expandMacros(aProgramURL); + + OUString aProgram; + if ( FileBase::E_None != FileBase::getSystemPathFromFileURL(aProgramURL, aProgram)) + { + throw css::uno::Exception("Could not convert executable path", + static_cast < XSimpleMailClient * > (this)); + } + + OStringBuffer aBuffer; + appendShellWord(aBuffer, aProgram, true); + + try + { + // Query XNameAccess interface of the org.openoffice.Office.Common/ExternalMailer + // configuration node to retrieve the users preferred email application. This may + // transparently by redirected to e.g. the corresponding GConf setting in GNOME. + + PropertyValue aProperty; + aProperty.Name = "nodepath"; + aProperty.Value <<= OUString("org.openoffice.Office.Common/ExternalMailer"); + + Sequence< Any > aArgumentList{ Any(aProperty) }; + + Reference< XNameAccess > xNameAccess( + m_xConfigurationProvider->createInstanceWithArguments( + "com.sun.star.configuration.ConfigurationAccess", + aArgumentList ), + UNO_QUERY ); + + if( xNameAccess.is() ) + { + OUString aMailer; + + // Retrieve the value for "Program" node and append it feed senddoc with it + // using the (undocumented) --mailclient switch + xNameAccess->getByName("Program") >>= aMailer; + + if( !aMailer.isEmpty() ) + { + // make sure we have a system path + FileBase::getSystemPathFromFileURL( aMailer, aMailer ); + + aBuffer.append(" --mailclient "); + appendShellWord(aBuffer, aMailer, true); + } +#ifdef MACOSX + else + aBuffer.append(" --mailclient Mail"); +#endif + } + + } + + catch(const RuntimeException & ) + { + TOOLS_WARN_EXCEPTION("shell", "RuntimeException caught accessing configuration provider" ); + m_xConfigurationProvider.clear(); + throw; + } + + Reference< XSimpleMailMessage2 > xMessage( xSimpleMailMessage, UNO_QUERY ); + if ( xMessage.is() ) + { + OUString sBody = xMessage->getBody(); + if ( sBody.getLength() > 0 ) + { + aBuffer.append(" --body "); + appendShellWord(aBuffer, sBody, false); + } + } + + // Convert from, to, etc. in a best-effort rather than a strict way to the + // system encoding, based on the assumption that the relevant address parts + // of those strings are ASCII anyway and any problematic characters are only + // in the human-readable, informational-only parts: + + // Append originator if set in the message + if ( !xSimpleMailMessage->getOriginator().isEmpty() ) + { + aBuffer.append(" --from "); + appendShellWord(aBuffer, xSimpleMailMessage->getOriginator(), false); + } + + // Append recipient if set in the message + if ( !xSimpleMailMessage->getRecipient().isEmpty() ) + { + aBuffer.append(" --to "); + appendShellWord(aBuffer, xSimpleMailMessage->getRecipient(), false); + } + + // Append carbon copy recipients set in the message + Sequence< OUString > aStringList = xSimpleMailMessage->getCcRecipient(); + for ( const auto& rString : std::as_const(aStringList) ) + { + aBuffer.append(" --cc "); + appendShellWord(aBuffer, rString, false); + } + + // Append blind carbon copy recipients set in the message + aStringList = xSimpleMailMessage->getBccRecipient(); + for ( const auto& rString : std::as_const(aStringList) ) + { + aBuffer.append(" --bcc "); + appendShellWord(aBuffer, rString, false); + } + + // Append subject if set in the message + if ( !xSimpleMailMessage->getSubject().isEmpty() ) + { + aBuffer.append(" --subject "); + appendShellWord(aBuffer, xSimpleMailMessage->getSubject(), false); + } + + // Append attachments set in the message + aStringList = xSimpleMailMessage->getAttachement(); + for ( const auto& rString : std::as_const(aStringList) ) + { + OUString aSystemPath; + if ( FileBase::E_None == FileBase::getSystemPathFromFileURL(rString, aSystemPath) ) + { + aBuffer.append(" --attach "); + appendShellWord(aBuffer, aSystemPath, true); + } + } + + OString cmd = aBuffer.makeStringAndClear(); + FILE * f = popen(cmd.getStr(), "w"); + if (f == nullptr || pclose(f) != 0) + { + throw css::uno::Exception("No mail client configured", + static_cast < XSimpleMailClient * > (this) ); + } +} + +// XServiceInfo + +OUString SAL_CALL CmdMailSuppl::getImplementationName( ) +{ + return "com.sun.star.comp.system.SimpleCommandMail"; +} + +sal_Bool SAL_CALL CmdMailSuppl::supportsService( const OUString& ServiceName ) +{ + return cppu::supportsService(this, ServiceName); +} + +Sequence< OUString > SAL_CALL CmdMailSuppl::getSupportedServiceNames( ) +{ + return { "com.sun.star.system.SimpleCommandMail" }; +} + +extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface* +shell_CmdMailSuppl_get_implementation( + css::uno::XComponentContext* context, css::uno::Sequence const&) +{ + return cppu::acquire(new CmdMailSuppl(context)); +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/shell/source/cmdmail/cmdmailsuppl.hxx b/shell/source/cmdmail/cmdmailsuppl.hxx new file mode 100644 index 000000000..43915d662 --- /dev/null +++ b/shell/source/cmdmail/cmdmailsuppl.hxx @@ -0,0 +1,74 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#ifndef INCLUDED_SHELL_SOURCE_CMDMAIL_CMDMAILSUPPL_HXX +#define INCLUDED_SHELL_SOURCE_CMDMAIL_CMDMAILSUPPL_HXX + +#include +#include +#include +#include + +#include + +#include + + + + +class CmdMailSuppl : + public cppu::WeakImplHelper< + css::system::XSimpleMailClientSupplier, + css::system::XSimpleMailClient, + css::lang::XServiceInfo > +{ + + css::uno::Reference< css::lang::XMultiServiceFactory > m_xConfigurationProvider; + +public: + explicit CmdMailSuppl( const css::uno::Reference< css::uno::XComponentContext >& xContext ); + + + // XSimpleMailClientSupplier + + + virtual css::uno::Reference< css::system::XSimpleMailClient > SAL_CALL querySimpleMailClient( ) override; + + + // XSimpleMailClient + + + virtual css::uno::Reference< css::system::XSimpleMailMessage > SAL_CALL createSimpleMailMessage( ) override; + + virtual void SAL_CALL sendSimpleMailMessage( const css::uno::Reference< css::system::XSimpleMailMessage >& xSimpleMailMessage, sal_Int32 aFlag ) override; + + + // XServiceInfo + + + virtual OUString SAL_CALL getImplementationName( ) override; + + virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override; + + virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override; +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit v1.2.3