File indexing completed on 2024-06-16 05:00:35

0001 /*
0002    SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "importnotesjobinterface.h"
0010 #include "pimdataexportercore_private_export.h"
0011 class ArchiveStorage;
0012 
0013 class PIMDATAEXPORTER_TESTS_EXPORT ImportNotesJobInterfaceImpl : public ImportNotesJobInterface
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit ImportNotesJobInterfaceImpl(QObject *parent, Utils::StoredTypes typeSelected, ArchiveStorage *archiveStorage, int numberOfStep);
0018     ~ImportNotesJobInterfaceImpl() override;
0019 
0020 protected:
0021     [[nodiscard]] QString adaptResourcePath(const KSharedConfigPtr &resourceConfig, const QString &storedData) override;
0022     [[nodiscard]] Akonadi::Collection::Id convertFolderPathToCollectionId(const QString &path) override;
0023 
0024     [[nodiscard]] QString createResource(const QString &resources, const QString &name, const QMap<QString, QVariant> &settings, bool synchronizeTree) override;
0025     void synchronizeResource(const QStringList &lst) override;
0026     [[nodiscard]] QString adaptNewResourceUrl(bool overwriteResources, const KSharedConfig::Ptr &resourceConfig, const QString &storePath) override;
0027 };