From 02ebb2bd3c9a5d4fe224c239b2ea10e7db12ebc6 Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Fri, 25 Dec 2015 18:27:55 +0100 Subject: create resource --- akonadish/CMakeLists.txt | 1 + akonadish/syntax_modules/akonadi_create.cpp | 107 ++++++++++++++++++++++++++++ 2 files changed, 108 insertions(+) create mode 100644 akonadish/syntax_modules/akonadi_create.cpp diff --git a/akonadish/CMakeLists.txt b/akonadish/CMakeLists.txt index e00d25a..03a8898 100644 --- a/akonadish/CMakeLists.txt +++ b/akonadish/CMakeLists.txt @@ -10,6 +10,7 @@ set(akonadi2_cli_SRCS syntax_modules/akonadi_list.cpp syntax_modules/akonadi_clear.cpp syntax_modules/akonadi_count.cpp + syntax_modules/akonadi_create.cpp syntax_modules/akonadi_sync.cpp akonadish_utils.cpp repl/repl.cpp diff --git a/akonadish/syntax_modules/akonadi_create.cpp b/akonadish/syntax_modules/akonadi_create.cpp new file mode 100644 index 0000000..025cd58 --- /dev/null +++ b/akonadish/syntax_modules/akonadi_create.cpp @@ -0,0 +1,107 @@ +/* + * Copyright (C) 2014 Aaron Seigo + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the + * Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include +#include +#include // tr() +#include +#include + +#include "common/resource.h" +#include "common/storage.h" +#include "common/domain/event.h" +#include "common/domain/folder.h" +#include "common/resourceconfig.h" +#include "common/log.h" +#include "common/storage.h" +#include "common/definitions.h" + +#include "akonadish_utils.h" +#include "state.h" +#include "syntaxtree.h" + +namespace AkonadiCreate +{ + + /* +{ + auto type = !args.isEmpty() ? args.takeFirst().toLatin1() : QByteArray(); + auto &store = getStore(type); + Akonadi2::ApplicationDomain::ApplicationDomainType::Ptr object; + if (type == "resource") { + auto resourceType = !args.isEmpty() ? args.takeFirst().toLatin1() : QByteArray(); + object = store.getObject(""); + object->setProperty("type", resourceType); + } else { + auto resource = !args.isEmpty() ? args.takeFirst().toLatin1() : QByteArray(); + object = store.getObject(resource); + } + auto map = consumeMap(args); + for (auto i = map.begin(); i != map.end(); ++i) { + object->setProperty(i.key().toLatin1(), i.value()); + } + auto result = store.create(*object).exec(); + result.waitForFinished(); + if (result.errorCode()) { + std::cout << "An error occurred while creating the entity: " << result.errorMessage().toStdString(); + } +} +*/ +bool resource(const QStringList &args, State &state) +{ + if (args.isEmpty()) { + state.printError(QObject::tr("A resource can not be created without a type"), "akonadicreate/01"); + } + + auto &store = AkonadishUtils::getStore("resource"); + + auto resourceType = args.at(0); + Akonadi2::ApplicationDomain::ApplicationDomainType::Ptr object = store.getObject(""); + object->setProperty("type", resourceType); + + auto map = AkonadishUtils::keyValueMapFromArgs(args); + for (auto i = map.begin(); i != map.end(); ++i) { + object->setProperty(i.key().toLatin1(), i.value()); + } + + auto result = store.create(*object).exec(); + result.waitForFinished(); + if (result.errorCode()) { + state.printError(QObject::tr("An error occurred while creating the entity: %1").arg(result.errorMessage()), + "akonaid_create_" + QString::number(result.errorCode())); + } + + return true; +} + + +Syntax::List syntax() +{ + Syntax::List syntax; + + Syntax create("create");//, QString(), &AkonadiCreate::resource, Syntax::EventDriven); + create.children << Syntax("resource", QObject::tr("Creates a new resource"), &AkonadiCreate::resource);//, Syntax::EventDriven); + + syntax << create; + return syntax; +} + +REGISTER_SYNTAX(AkonadiCreate) + +} -- cgit v1.2.3