2012-07-01 19:05:03 -04:00
|
|
|
/*
|
|
|
|
* Retroshare Posted Plugin.
|
|
|
|
*
|
|
|
|
* Copyright 2012-2012 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
|
|
|
|
#include "PostedItem.h"
|
2013-07-15 14:39:39 -04:00
|
|
|
#include "gui/feeds/FeedHolder.h"
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-10-21 15:45:35 -04:00
|
|
|
#include <retroshare/rsposted.h>
|
2012-07-01 19:05:03 -04:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
/** Constructor */
|
2013-03-15 17:02:43 -04:00
|
|
|
|
|
|
|
PostedItem::PostedItem(FeedHolder *parent, uint32_t feedId, const RsGxsGroupId &groupId, const RsGxsMessageId &messageId, bool isHome)
|
|
|
|
:GxsFeedItem(parent, feedId, groupId, messageId, isHome, rsPosted, true)
|
2012-07-01 19:05:03 -04:00
|
|
|
{
|
2013-03-15 17:02:43 -04:00
|
|
|
setup();
|
|
|
|
}
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2013-03-15 17:02:43 -04:00
|
|
|
PostedItem::PostedItem(FeedHolder *parent, uint32_t feedId, const RsPostedPost &post, bool isHome)
|
|
|
|
:GxsFeedItem(parent, feedId, post.mMeta.mGroupId, post.mMeta.mMsgId, isHome, rsPosted, false),
|
|
|
|
mPost(post)
|
|
|
|
{
|
|
|
|
setup();
|
|
|
|
|
|
|
|
setContent(mPost);
|
|
|
|
}
|
2012-12-09 17:38:49 -05:00
|
|
|
|
2013-03-15 17:02:43 -04:00
|
|
|
void PostedItem::setup()
|
|
|
|
{
|
|
|
|
setupUi(this);
|
2013-07-15 14:39:39 -04:00
|
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
2013-03-15 17:02:43 -04:00
|
|
|
|
2013-07-15 14:39:39 -04:00
|
|
|
connect(commentButton, SIGNAL( clicked()), this, SLOT(loadComments()));
|
|
|
|
connect(voteUpButton, SIGNAL(clicked()), this, SLOT(makeUpVote()));
|
|
|
|
connect(voteDownButton, SIGNAL(clicked()), this, SLOT( makeDownVote()));
|
2012-12-09 17:38:49 -05:00
|
|
|
}
|
|
|
|
|
2013-03-15 17:02:43 -04:00
|
|
|
void PostedItem::loadMessage(const uint32_t &token)
|
|
|
|
{
|
|
|
|
std::vector<RsPostedPost> posts;
|
2013-07-15 14:39:39 -04:00
|
|
|
if (!rsPosted->getPostData(token, posts))
|
|
|
|
{
|
|
|
|
std::cerr << "GxsChannelPostItem::loadMessage() ERROR getting data";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (posts.size() != 1)
|
|
|
|
{
|
|
|
|
std::cerr << "GxsChannelPostItem::loadMessage() Wrong number of Items";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2013-03-15 17:02:43 -04:00
|
|
|
|
|
|
|
mPost = posts[0];
|
|
|
|
setContent(mPost);
|
|
|
|
}
|
|
|
|
|
2012-12-09 17:38:49 -05:00
|
|
|
void PostedItem::setContent(const RsPostedPost &post)
|
|
|
|
{
|
2013-03-15 17:02:43 -04:00
|
|
|
mPost = post;
|
2013-07-15 14:39:39 -04:00
|
|
|
|
2013-03-15 17:02:43 -04:00
|
|
|
QDateTime qtime;
|
|
|
|
qtime.setTime_t(mPost.mMeta.mPublishTs);
|
|
|
|
QString timestamp = qtime.toString("dd.MMMM yyyy hh:mm");
|
|
|
|
dateLabel->setText(timestamp);
|
2013-06-04 17:00:43 -04:00
|
|
|
fromLabel->setId(post.mMeta.mAuthorId);
|
2013-03-15 17:02:43 -04:00
|
|
|
titleLabel->setText("<a href=" + QString::fromStdString(post.mLink) +
|
|
|
|
"><span style=\" text-decoration: underline; color:#0000ff;\">" +
|
|
|
|
QString::fromStdString(post.mMeta.mMsgName) + "</span></a>");
|
|
|
|
siteLabel->setText("<a href=" + QString::fromStdString(post.mLink) +
|
|
|
|
"><span style=\" text-decoration: underline; color:#0000ff;\">" +
|
|
|
|
QString::fromStdString(post.mLink) + "</span></a>");
|
|
|
|
|
2013-06-04 17:00:43 -04:00
|
|
|
//QString score = "Hot" + QString::number(post.mHotScore);
|
|
|
|
//score += " Top" + QString::number(post.mTopScore);
|
|
|
|
//score += " New" + QString::number(post.mNewScore);
|
|
|
|
|
|
|
|
QString score = QString::number(post.mTopScore);
|
|
|
|
|
|
|
|
scoreLabel->setText(score);
|
|
|
|
|
|
|
|
// FIX THIS UP LATER.
|
|
|
|
//notes->setPlainText(QString::fromUtf8(post.mNotes.c_str()));
|
|
|
|
// differences between Feed or Top of Comment.
|
|
|
|
if (mParent)
|
|
|
|
{
|
|
|
|
// feed.
|
|
|
|
//frame_notes->hide();
|
|
|
|
//frame_comment->show();
|
|
|
|
commentButton->show();
|
|
|
|
|
|
|
|
if (post.mComments)
|
|
|
|
{
|
|
|
|
QString commentText = QString::number(post.mComments);
|
|
|
|
commentText += " ";
|
|
|
|
commentText += tr("Comments");
|
|
|
|
commentButton->setText(commentText);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
commentButton->setText(tr("Comment"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// no feed.
|
|
|
|
//frame_notes->show();
|
|
|
|
//frame_comment->hide();
|
|
|
|
commentButton->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// disable voting buttons - if they have already voted.
|
|
|
|
if (post.mMeta.mMsgStatus & GXS_SERV::GXS_MSG_STATUS_VOTE_MASK)
|
|
|
|
{
|
|
|
|
voteUpButton->setEnabled(false);
|
|
|
|
voteDownButton->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
2013-03-15 17:02:43 -04:00
|
|
|
uint32_t up, down, nComments;
|
2012-12-08 16:50:13 -05:00
|
|
|
|
2013-03-11 16:53:15 -04:00
|
|
|
#if 0
|
2013-03-15 17:02:43 -04:00
|
|
|
bool ok = rsPosted->retrieveScores(mPost.mMeta.mServiceString, up, down, nComments);
|
|
|
|
|
|
|
|
if(ok)
|
|
|
|
{
|
|
|
|
int32_t vote = up - down;
|
|
|
|
scoreLabel->setText(QString::number(vote));
|
|
|
|
|
|
|
|
numCommentsLabel->setText("<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px;"
|
|
|
|
"margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span"
|
|
|
|
"style=\" font-size:10pt; font-weight:600;\">#</span><span "
|
|
|
|
"style=\" font-size:8pt; font-weight:600;\"> Comments: "
|
|
|
|
+ QString::number(nComments) + "</span></p>");
|
|
|
|
}
|
2013-03-11 16:53:15 -04:00
|
|
|
#endif
|
2013-07-15 14:39:39 -04:00
|
|
|
}
|
2012-07-31 21:47:53 -04:00
|
|
|
|
2013-07-15 14:39:39 -04:00
|
|
|
const RsPostedPost &PostedItem::getPost() const
|
|
|
|
{
|
|
|
|
return mPost;
|
2012-07-01 19:05:03 -04:00
|
|
|
}
|
|
|
|
|
2013-07-15 14:39:39 -04:00
|
|
|
RsPostedPost &PostedItem::post()
|
2012-11-22 17:40:31 -05:00
|
|
|
{
|
2013-03-15 17:02:43 -04:00
|
|
|
return mPost;
|
2012-11-22 17:40:31 -05:00
|
|
|
}
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-12-05 17:45:44 -05:00
|
|
|
void PostedItem::makeDownVote()
|
|
|
|
{
|
2013-03-15 17:02:43 -04:00
|
|
|
RsGxsGrpMsgIdPair msgId;
|
|
|
|
msgId.first = mPost.mMeta.mGroupId;
|
|
|
|
msgId.second = mPost.mMeta.mMsgId;
|
2013-06-04 17:00:43 -04:00
|
|
|
|
|
|
|
voteUpButton->setEnabled(false);
|
|
|
|
voteDownButton->setEnabled(false);
|
2013-07-15 14:39:39 -04:00
|
|
|
|
2013-03-15 17:02:43 -04:00
|
|
|
emit vote(msgId, false);
|
2012-12-05 17:45:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void PostedItem::makeUpVote()
|
|
|
|
{
|
2013-03-15 17:02:43 -04:00
|
|
|
RsGxsGrpMsgIdPair msgId;
|
|
|
|
msgId.first = mPost.mMeta.mGroupId;
|
|
|
|
msgId.second = mPost.mMeta.mMsgId;
|
2013-06-04 17:00:43 -04:00
|
|
|
|
|
|
|
voteUpButton->setEnabled(false);
|
|
|
|
voteDownButton->setEnabled(false);
|
|
|
|
|
2013-03-15 17:02:43 -04:00
|
|
|
emit vote(msgId, true);
|
2012-12-05 17:45:44 -05:00
|
|
|
}
|
|
|
|
|
2012-07-31 21:47:53 -04:00
|
|
|
void PostedItem::loadComments()
|
|
|
|
{
|
2013-03-15 17:02:43 -04:00
|
|
|
std::cerr << "PostedItem::loadComments()";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
if (mParent)
|
|
|
|
{
|
|
|
|
QString title = QString::fromUtf8(mPost.mMeta.mMsgName.c_str());
|
|
|
|
mParent->openComments(0, mPost.mMeta.mGroupId, mPost.mMeta.mMsgId, title);
|
|
|
|
}
|
2012-07-31 21:47:53 -04:00
|
|
|
}
|