/usr/include/KF5/KBlog/kblog/gdata.h is in libkf5blog-dev 4:15.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | /*
This file is part of the kblog library.
Copyright (c) 2007 Christian Weilbach <christian_weilbach@web.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KBLOG_GDATA_H
#define KBLOG_GDATA_H
#include <blog.h>
#include <QDateTime>
#include <QStringList>
class QUrl;
/**
@file
This file is part of the for accessing Blog Servers
and defines the GData class.
@author Reinhold Kainhofer \<reinhold\@kainhofer.com\>
\par Maintainer: Christian Weilbach \<christian_weilbach\@web.de\>
*/
namespace KBlog
{
class GDataPrivate;
class BlogComment;
/**
@brief
A class that can be used for access to GData blogs. The new blogspot.com
accounts ( August 2007 ) exclusively support GData API which is a standard
based on Atom API. Compared to Blogger 1.0, which is based on Xml-Rpc and
less secure, it adds new functionality like titles and comments.
@code
Blog* myblog = new GData("http://myblogspot.account.com");
myblog->setProfileId( "2039484587348593945823" ); // can be fetched via fetchProfileId()
myblog->setBlogId( "1" ); // can be caught by listBlogs()
myblog->setUsername( "your_email@address.com" );
myblog->setPassword( "yOuRFuNnYPasSword" );
KBlog::BlogPost *post = new BlogPost();
post->setTitle( "This is the title." );
post->setContent( "Here is some the content..." );
myblog->createPost( post );
@endcode
@author Christian Weilbach \<christian_weilbach\@web.de\>
@author Reinhold Kainhofer \<reinhold\@kainhofer.com\>
*/
class KBLOG_EXPORT GData : public Blog
{
Q_OBJECT
public:
/**
Create an object for GData
@param server The server url for the xmlrpc gateway.
@param parent The parent object, inherited from QObject.
*/
explicit GData(const QUrl &server, QObject *parent = Q_NULLPTR);
/**
Destructor.
*/
~GData();
/**
Sets the user's name for the blog. Username is only the E-Mail
address of the user. This is used in createPost and modifyPost.
@param fullName is a QString containing the blog username.
@see username()
@see createPost( KBlog::BlogPost* )
@see modifiyPost( KBlog::BlogPost* )
*/
virtual void setFullName(const QString &fullName);
/**
Returns the full name of user of the blog.
@see setFullName()
*/
QString fullName() const;
/**
Returns the profile id of the blog. This is used for rss paths internally.
@return The profile id.
@see setProfileId( const QString& )
*/
QString profileId() const;
/**
Get the profile's id of the blog.
@param pid This is nummeric id.
@see profileId()
*/
virtual void setProfileId(const QString &pid);
/**
Returns the of the inherited object.
*/
QString interfaceName() const Q_DECL_OVERRIDE;
/**
Get information about the profile from the blog.
Sets the profileId automatically for the blog it is called from.
@see setProfileId( const QString& )
@see void fetchedProfileId( const QString& )
*/
void fetchProfileId();
/**
List the blogs available for this authentication on the server.
@see void listedBlogs( const QList\<QMap\<QString,QString\>\>& )
*/
virtual void listBlogs();
/**
List the comments available for this post on the server.
@param post The post, which posts should be listed.
@see void listedComments( KBlog::BlogPost*, const QList\<KBlog::BlogComment\>& )
*/
virtual void listComments(KBlog::BlogPost *post);
/**
List the all comments available for this authentication on the server.
@see void listedAllComments( const QList\<KBlog::BlogComment\>& )
*/
virtual void listAllComments();
/**
List recent posts on the server. The status of the posts will be Fetched.
@param number The number of posts to fetch. The order is newest first.
@see void listedPosts( const QList\<KBlog::BlogPost\>& )
@see void fetchPost( KBlog::BlogPost* )
@see BlogPost::Status
*/
void listRecentPosts(int number) Q_DECL_OVERRIDE;
/**
List recent posts on the server depending on meta information about the post.
@param label The lables of posts to fetch.
@param number The number of posts to fetch. The order is newest first.
@param upMinTime The oldest upload time of the posts to fetch.
@param upMaxTime The newest upload time of the posts to fetch.
@param pubMinTime The oldest publication time of the posts to fetch.
@param pubMaxTime The newest publication time of the posts to fetch.
@see void listedPosts( const QList\<KBlog::BlogPost\>& )
@see void fetchPost( KBlog::BlogPost* )
*/
virtual void listRecentPosts(const QStringList &label = QStringList(), int number = 0,
const QDateTime &upMinTime = QDateTime(),
const QDateTime &upMaxTime = QDateTime(),
const QDateTime &pubMinTime = QDateTime(),
const QDateTime &pubMaxTime = QDateTime());
/**
Fetch the Post with a specific id.
@param post This is the post with its id set correctly.
@see BlogPost::setPostId( const QString& )
@see fetchedPost( KBlog::BlogPost *post )
*/
void fetchPost(KBlog::BlogPost *post) Q_DECL_OVERRIDE;
/**
Modify a post on server.
@param post This is used to send the modified post including the correct id.
*/
void modifyPost(KBlog::BlogPost *post) Q_DECL_OVERRIDE;
/**
Create a new post on server.
@param post This is send to the server.
@see createdPost( KBlog::BlogPost *post )
*/
void createPost(KBlog::BlogPost *post) Q_DECL_OVERRIDE;
/**
Remove a post from the server.
@param post This is the post with its id set correctly.
@see BlogPost::setPostId( const QString& )
@see removedPost( KBlog::BlogPost* )
*/
void removePost(KBlog::BlogPost *post) Q_DECL_OVERRIDE;
/**
Create a comment on the server.
@param post This is the post with its id set correctly.
@param comment This is the comment to create.
@see BlogPost::setPostId( const QString& )
@see createdComment( KBlog::BlogPost*, KBlog::BlogComment* )
*/
virtual void createComment(KBlog::BlogPost *post, KBlog::BlogComment *comment);
/**
Remove a comment from the server.
@param post This is the post with its id set correctly.
@param comment This is the comment to remove.
@see BlogPost::setPostId( const QString& )
@see removedComment( KBlog::BlogPost*, KBlog::BlogComment* )
*/
virtual void removeComment(KBlog::BlogPost *post, KBlog::BlogComment *comment);
Q_SIGNALS:
/**
This signal is emitted when a list of blogs has been fetched
from the blogging server.
@param blogsList The list of blogs.
@see listBlogs()
*/
void listedBlogs(const QList<QMap<QString, QString> > &blogsList);
/**
This signal is emitted when a list of all comments has been
fetched from the blogging server.
@param commentsList The list of comments.
@see listAllComments()
*/
void listedAllComments(const QList<KBlog::BlogComment> &commentsList);
/**
This signal is emitted when a list of comments has been fetched
from the blogging server.
@param post This is the corresponding post.
@param comments The list of comments.
@see listComments( KBlog::BlogPost* )
*/
void listedComments(KBlog::BlogPost *post, const QList<KBlog::BlogComment> &comments);
/**
This signal is emitted when a comment has been created
on the blogging server.
@param post This is the corresponding post.
@param comment This is the created comment.
@see createComment( KBlog::BlogPost *post, KBlog::BlogComment *comment )
*/
void createdComment(const KBlog::BlogPost *post, const KBlog::BlogComment *comment);
/**
This signal is emitted when a comment has been removed
from the blogging server.
@param post This is the corresponding post.
@param comment This is the removed comment.
@see removeComment( KBlog::BlogPost *post, KBlog::BlogComment *comment )
*/
void removedComment(const KBlog::BlogPost *post, const KBlog::BlogComment *comment);
/**
This signal is emitted when the profile id has been
fetched.
@param profileId This is the fetched id. On error it is QString()
@see fetchProfileId()
*/
void fetchedProfileId(const QString &profileId);
protected:
/**
Overloaded for private inheritance handling.
*/
GData(const QUrl &server, GDataPrivate &dd, QObject *parent = Q_NULLPTR);
private:
Q_DECLARE_PRIVATE(GData)
Q_PRIVATE_SLOT(d_func(),
void slotFetchProfileId(KJob *))
Q_PRIVATE_SLOT(d_func(),
void slotListBlogs(Syndication::Loader *,
const Syndication::FeedPtr &, Syndication::ErrorCode))
Q_PRIVATE_SLOT(d_func(),
void slotListComments(Syndication::Loader *,
const Syndication::FeedPtr &, Syndication::ErrorCode))
Q_PRIVATE_SLOT(d_func(),
void slotListAllComments(Syndication::Loader *,
const Syndication::FeedPtr &, Syndication::ErrorCode))
Q_PRIVATE_SLOT(d_func(),
void slotListRecentPosts(Syndication::Loader *,
const Syndication::FeedPtr &, Syndication::ErrorCode))
Q_PRIVATE_SLOT(d_func(),
void slotFetchPost(Syndication::Loader *,
const Syndication::FeedPtr &, Syndication::ErrorCode))
Q_PRIVATE_SLOT(d_func(),
void slotCreatePost(KJob *))
Q_PRIVATE_SLOT(d_func(),
void slotModifyPost(KJob *))
Q_PRIVATE_SLOT(d_func(),
void slotRemovePost(KJob *))
Q_PRIVATE_SLOT(d_func(),
void slotCreateComment(KJob *))
Q_PRIVATE_SLOT(d_func(),
void slotRemoveComment(KJob *))
};
} //namespace KBlog
#endif
|