mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 01:11:43 +08:00
Co-authored-by: Alexander Trofimov <alexander.trofimov@onlyoffice.com> Co-committed-by: Alexander Trofimov <alexander.trofimov@onlyoffice.com>
123 lines
5.1 KiB
C++
123 lines
5.1 KiB
C++
/*
|
|
* Copyright (C) Ascensio System SIA, 2009-2026
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation, together with the
|
|
* additional terms provided in the LICENSE file.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: https://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA by email at info@onlyoffice.com
|
|
* or by postal mail at 20A-6 Ernesta Birznieka-Upisha Street, Riga,
|
|
* LV-1050, Latvia, European Union.
|
|
*
|
|
* The interactive user interfaces in modified versions of the Program
|
|
* are required to display Appropriate Legal Notices in accordance with
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* No trademark rights are granted under this License.
|
|
*
|
|
* All non-code elements of the Product, including illustrations,
|
|
* icon sets, and technical writing content, are licensed under the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License:
|
|
* https://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
* This license applies only to such non-code elements and does not
|
|
* modify or replace the licensing terms applicable to the Program's
|
|
* source code, which remains licensed under the GNU Affero General
|
|
* Public License v3.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#ifndef DISABLE_FILE_DOWNLOADER
|
|
#include "../../../Common/Network/FileTransporter/include/FileTransporter.h"
|
|
#endif
|
|
#include <boost/algorithm/string.hpp>
|
|
#include "../Drawing/Attributes.h"
|
|
#include "../../../DesktopEditor/common/File.h"
|
|
|
|
|
|
class CMediaManager
|
|
{
|
|
private:
|
|
std::map<std::wstring, std::wstring> m_mapMedia;
|
|
|
|
long m_lIndexNextAudio;
|
|
long m_lIndexNextVideo;
|
|
long m_lIndexNextImage;
|
|
long m_lIndexNextOleObject;
|
|
|
|
std::wstring m_strDstMedia;
|
|
std::wstring m_strTempMedia;
|
|
std::wstring m_strDstEmbeddings;
|
|
|
|
public:
|
|
CMediaManager();
|
|
~CMediaManager();
|
|
void Clear();
|
|
std::wstring FindMedia(const std::wstring& strInput);
|
|
|
|
void SetDstEmbeddings(const std::wstring& strDst);
|
|
void SetDstMedia(const std::wstring& strDst);
|
|
void SetTempMedia(const std::wstring& strSrc);
|
|
|
|
std::wstring GenerateVideo(const std::wstring& strInput, const std::wstring& strExt = L"");
|
|
std::wstring GenerateAudio(const std::wstring& strInput, const std::wstring& strExt = L"");
|
|
std::wstring GenerateOleObject(const std::wstring& strInput);
|
|
std::wstring GenerateImage(const std::wstring& strInput);
|
|
std::wstring GenerateImageJPEG(const std::wstring& strInput);
|
|
|
|
std::wstring GenerateMedia(const std::wstring& strInput, const std::wstring& Template, long& Indexer, const std::wstring& strDefaultExt);
|
|
std::wstring GenerateEmbedding(const std::wstring& strInput, const std::wstring& Template, long& Indexer, const std::wstring& strDefaultExt);
|
|
|
|
void WriteAudioCollection(const std::vector<PPT::CExFilesInfo>& audioCont);
|
|
bool IsNeedDownload(const std::wstring& strFile);
|
|
};
|
|
|
|
std::wstring CorrectXmlString3(const std::wstring & str);
|
|
class CRelsGenerator
|
|
{
|
|
private:
|
|
PPT::CStringWriter m_oWriter;
|
|
int m_lNextRelsID;
|
|
std::map<std::wstring, int> m_mapMediaRelsID;
|
|
CMediaManager* m_pManager;
|
|
std::map<std::wstring, std::wstring> m_mapHyperlinks;
|
|
|
|
public:
|
|
CRelsGenerator(CMediaManager* pManager);
|
|
~CRelsGenerator();
|
|
void Clear();
|
|
|
|
void StartMaster(int nIndexTheme, int nStartLayoutIndex, int nCountLayouts);
|
|
|
|
std::wstring WriteFile(const std::wstring& strPath);
|
|
|
|
void StartNotes(int nIndexSlide, bool bMaster);
|
|
void StartSlide(int nIndexLayout, int nIndexNotes);
|
|
void CloseRels();
|
|
void SaveRels(const std::wstring& strFile);
|
|
std::wstring WriteHyperlink(const std::wstring& strHyperlink, bool isExternal = false);
|
|
void StartLayout(int nIndexTheme);
|
|
|
|
std::wstring WriteHyperlinkMedia(const std::wstring& strMedia, bool bExternal = true, bool newRIdAlways = false, std::wstring strRelsType = L"http://schemas.microsoft.com/office/2007/relationships/media");
|
|
std::wstring WriteHyperlinkImage(const std::wstring& strImage, bool bExternal = true);
|
|
std::wstring WriteHyperlinkAudio(const std::wstring& strImage, bool bExternal = true);
|
|
std::wstring WriteHyperlinkVideo(const std::wstring& strImage, bool bExternal = true);
|
|
std::wstring WriteHyperlinkOleObject(const std::wstring& strImage, bool bExternal = true);
|
|
std::wstring WriteMedia(const std::wstring& strMediaPath);
|
|
std::wstring WriteImage(const std::wstring& strImagePath);
|
|
std::wstring WriteSlideRef(const std::wstring& strLocation);
|
|
std::wstring WriteAudio(const std::wstring& strAudioPath, bool& bExternal);
|
|
std::wstring WriteVideo(const std::wstring& strVideoPath, bool& bExternal);
|
|
std::wstring WriteOleObject(const std::wstring& strOleObjectPath);
|
|
|
|
int getRId()const { return m_lNextRelsID; }
|
|
};
|