aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/json-rpc/AddonsOperations.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/json-rpc/AddonsOperations.h')
-rw-r--r--src/interfaces/json-rpc/AddonsOperations.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/interfaces/json-rpc/AddonsOperations.h b/src/interfaces/json-rpc/AddonsOperations.h
new file mode 100644
index 0000000000..ff3dfa87cc
--- /dev/null
+++ b/src/interfaces/json-rpc/AddonsOperations.h
@@ -0,0 +1,41 @@
+#pragma once
+/*
+ * Copyright (C) 2011-2013 Team XBMC
+ * http://xbmc.org
+ *
+ * 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, 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 XBMC; see the file COPYING. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#include "JSONRPC.h"
+#include "addons/IAddon.h"
+
+class CAddonDatabase;
+
+namespace JSONRPC
+{
+ class CAddonsOperations : public CJSONUtils
+ {
+ public:
+ static JSONRPC_STATUS GetAddons(const std::string &method, ITransportLayer *transport, IClient *client, const CVariant &parameterObject, CVariant &result);
+ static JSONRPC_STATUS GetAddonDetails(const std::string &method, ITransportLayer *transport, IClient *client, const CVariant &parameterObject, CVariant &result);
+
+ static JSONRPC_STATUS SetAddonEnabled(const std::string &method, ITransportLayer *transport, IClient *client, const CVariant &parameterObject, CVariant &result);
+ static JSONRPC_STATUS ExecuteAddon(const std::string &method, ITransportLayer *transport, IClient *client, const CVariant &parameterObject, CVariant &result);
+
+ private:
+ static void FillDetails(ADDON::AddonPtr addon, const CVariant& fields, CVariant &result, CAddonDatabase &addondb, bool append = false);
+ };
+}