Kgapi

bloggerservice.h
1/*
2 * SPDX-FileCopyrightText: 2014 Daniel Vrátil <dvratil@redhat.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5 */
6
7#pragma once
8
9#include "kgapiblogger_export.h"
10#include "types.h"
11
12#include <QUrl>
13
14namespace KGAPI2
15{
16
17namespace BloggerService
18{
19
20KGAPIBLOGGER_EXPORT QUrl fetchBlogByBlogIdUrl(const QString &blogId);
21KGAPIBLOGGER_EXPORT QUrl fetchBlogByBlogUrlUrl(const QString &blogUrl);
22KGAPIBLOGGER_EXPORT QUrl fetchBlogsByUserIdUrl(const QString &userId);
23
24KGAPIBLOGGER_EXPORT QUrl fetchCommentsUrl(const QString &blogId, const QString &postId = QString(), const QString &commentId = QString());
25
26KGAPIBLOGGER_EXPORT QUrl approveCommentUrl(const QString &blogId, const QString &postId, const QString &commentId);
27KGAPIBLOGGER_EXPORT QUrl markCommentAsSpamUrl(const QString &blogId, const QString &postId, const QString &commentId);
28KGAPIBLOGGER_EXPORT QUrl deleteCommentUrl(const QString &blogId, const QString &postId, const QString &commentId);
29KGAPIBLOGGER_EXPORT QUrl deleteCommentContentUrl(const QString &blogId, const QString &postId, const QString &commentId);
30
31KGAPIBLOGGER_EXPORT QUrl fetchPageUrl(const QString &blogId, const QString &pageId);
32KGAPIBLOGGER_EXPORT QUrl deletePageUrl(const QString &blogId, const QString &pageId);
33KGAPIBLOGGER_EXPORT QUrl modifyPageUrl(const QString &blogId, const QString &pageId);
34KGAPIBLOGGER_EXPORT QUrl createPageUrl(const QString &blogId);
35
36KGAPIBLOGGER_EXPORT QUrl fetchPostUrl(const QString &blogId, const QString &postId);
37KGAPIBLOGGER_EXPORT QUrl searchPostUrl(const QString &blogId);
38KGAPIBLOGGER_EXPORT QUrl createPostUrl(const QString &blogId);
39KGAPIBLOGGER_EXPORT QUrl deletePostUrl(const QString &blogId, const QString &postId);
40KGAPIBLOGGER_EXPORT QUrl modifyPostUrl(const QString &blogId, const QString &postId);
41KGAPIBLOGGER_EXPORT QUrl publishPostUrl(const QString &blogId, const QString &postId);
42KGAPIBLOGGER_EXPORT QUrl revertPostUrl(const QString &blogId, const QString &postId);
43
44} // namespace BloggerService
45} // namespace KGAPI2
A job to fetch a single map tile described by a StaticMapUrl.
Definition blog.h:16
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:51 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.