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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
/*
* Copyright (C) 2016 Evgeny Khryukin
*
* 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include <QDomElement>
#include <QWidget>
#include <QVariant>
#include <QFile>
#include <QDataStream>
#include <QColorDialog>
#include <QAction>
//#include <QTextStream>
#include "enummessagesplugin.h"
#include "optionaccessinghost.h"
#include "activetabaccessinghost.h"
#include "applicationinfoaccessinghost.h"
#include "psiaccountcontrollinghost.h"
#include "defines.h"
static const char* propAcc = "em_account";
static const char* propJid = "em_jid";
static const QString emIdName = "psi_em_id";
static const QString htmlimNS = "http://www.w3.org/1999/xhtml";
static const QString xhtmlProtoNS = "http://jabber.org/protocol/xhtml-im";
EnumMessagesPlugin::EnumMessagesPlugin()
: enabled(false)
, _psiOptions(0)
, _activeTab(0)
, _applicationInfo(0)
, _accContrller(0)
, _inColor(QColor(Qt::red))
, _outColor(QColor(Qt::green))
, _defaultAction(true)
, _options(0)
{
}
QString EnumMessagesPlugin::name() const
{
return constPluginName;
}
QString EnumMessagesPlugin::shortName() const
{
return "enummessages";
}
QString EnumMessagesPlugin::version() const
{
return constVersion;
}
QWidget* EnumMessagesPlugin::options()
{
if(!enabled) {
return 0;
}
_options = new QWidget();
_ui.setupUi(_options);
_ui.hack->hide();
connect(_ui.tb_inColor, SIGNAL(clicked()), SLOT(getColor()));
connect(_ui.tb_outColor, SIGNAL(clicked()), SLOT(getColor()));
restoreOptions();
return _options;
}
bool EnumMessagesPlugin::enable()
{
enabled = true;
QFile f(_applicationInfo->appCurrentProfileDir(ApplicationInfoAccessingHost::DataLocation) + QString(constEnumsFileName));
if(f.exists() && f.open(QFile::ReadOnly)) {
QDataStream s(&f);
s >>_enumsIncomming >> _jidActions;
}
_inColor = _psiOptions->getPluginOption(constInColor, _inColor).value<QColor>();
_outColor = _psiOptions->getPluginOption(constOutColor, _outColor).value<QColor>();
_defaultAction = _psiOptions->getPluginOption(constDefaultAction, _defaultAction).toBool();
return true;
}
bool EnumMessagesPlugin::disable()
{
enabled = false;
QFile f(_applicationInfo->appCurrentProfileDir(ApplicationInfoAccessingHost::DataLocation) + QString(constEnumsFileName));
if(f.open(QFile::WriteOnly | QFile::Truncate)) {
QDataStream s(&f);
s << _enumsIncomming << _jidActions;
}
return true;
}
void EnumMessagesPlugin::applyOptions()
{
_defaultAction = _ui.rb_enabled->isChecked();
_inColor = _ui.tb_inColor->property("psi_color").value<QColor>();
_outColor = _ui.tb_outColor->property("psi_color").value<QColor>();
_psiOptions->setPluginOption(constInColor, _inColor);
_psiOptions->setPluginOption(constOutColor, _outColor);
_psiOptions->setPluginOption(constDefaultAction, _defaultAction);
}
void EnumMessagesPlugin::restoreOptions()
{
if (_defaultAction) {
_ui.rb_enabled->setChecked(true);
}
else {
_ui.rb_disabled->setChecked(true);
}
_ui.tb_inColor->setStyleSheet(QString("background-color: %1;").arg(_inColor.name()));
_ui.tb_inColor->setProperty("psi_color", _inColor);
_ui.tb_outColor->setStyleSheet(QString("background-color: %1;").arg(_outColor.name()));
_ui.tb_outColor->setProperty("psi_color", _outColor);
}
QPixmap EnumMessagesPlugin::icon() const
{
return QPixmap(":/icons/em.png");
}
void EnumMessagesPlugin::setOptionAccessingHost(OptionAccessingHost* host)
{
_psiOptions = host;
}
void EnumMessagesPlugin::setActiveTabAccessingHost(ActiveTabAccessingHost* host)
{
_activeTab = host;
}
void EnumMessagesPlugin::setApplicationInfoAccessingHost(ApplicationInfoAccessingHost* host)
{
_applicationInfo = host;
}
void EnumMessagesPlugin::setPsiAccountControllingHost(PsiAccountControllingHost *host)
{
_accContrller = host;
}
bool EnumMessagesPlugin::incomingStanza(int account, const QDomElement& stanza)
{
if(!enabled)
return false;
if (stanza.tagName() == "message" ) {
QString type = stanza.attribute("type");
if(type != "chat")
return false;
if(stanza.firstChildElement("body").isNull())
return false;
if (!stanza.hasAttribute(emIdName))
return false;
const QString jid(stanza.attribute("from").split('/').first());
if(!isEnabledFor(account, jid))
return false;
quint16 num = stanza.attribute(emIdName,"1").toUShort();
quint16 myNum = 0;
JidEnums jids;
if (_enumsIncomming.contains(account)) {
jids = _enumsIncomming.value(account);
if(jids.contains(jid)) {
myNum = jids.value(jid);
}
}
if (num > myNum+1) {
QString missed;
while (num > myNum+1) {
missed += QString("%1 ").arg(numToFormatedStr(myNum+1));
++myNum;
}
_accContrller->appendSysMsg(account, jid, tr("Missed messages: %1").arg(missed));
}
jids.insert(jid, num);
_enumsIncomming.insert(account, jids);
QDomDocument doc = stanza.ownerDocument();
QDomElement& nonConst = const_cast<QDomElement&>(stanza);
addMessageNum(&doc, &nonConst, num, _inColor);
}
return false;
}
bool EnumMessagesPlugin::outgoingStanza(int account, QDomElement &stanza)
{
if(!enabled)
return false;
if (stanza.tagName() == "message" ) {
QString type = stanza.attribute("type");
if(type != "chat")
return false;
if(stanza.firstChildElement("body").isNull())
return false;
const QString jid(stanza.attribute("to").split('/').first());
if(!isEnabledFor(account, jid))
return false;
quint16 num = 1;
JidEnums jids;
if (_enumsOutgoing.contains(account)) {
jids = _enumsOutgoing.value(account);
if(jids.contains(jid)) {
num = jids.value(jid);
++num;
}
}
jids.insert(jid, num);
_enumsOutgoing.insert(account, jids);
stanza.setAttribute(emIdName, num);
}
return false;
}
QAction *EnumMessagesPlugin::getAction(QObject *parent, int account, const QString &contact)
{
QAction* act = new QAction(icon(), tr("Enum Messages"), parent);
act->setCheckable(true);
const QString jid = contact.split("/").first();
act->setProperty("account", account);
act->setProperty("contact", jid);
connect(act, SIGNAL(triggered(bool)), SLOT(onActionActivated(bool)));
act->setChecked(_defaultAction);
if(_jidActions.contains(account)) {
JidActions a = _jidActions.value(account);
if(a.contains(jid)) {
act->setChecked(a.value(jid));
}
}
return act;
}
void EnumMessagesPlugin::setupChatTab(QWidget* tab, int account, const QString &contact)
{
tab->setProperty(propAcc, account);
tab->setProperty(propJid, contact);
connect(tab, SIGNAL(destroyed()), SLOT(removeWidget()));
}
bool EnumMessagesPlugin::appendingChatMessage(int account, const QString &contact, QString &body, QDomElement &html, bool local)
{
if(!enabled || !local)
return false;
if(body.isEmpty())
return false;
const QString jid(contact.split('/').first());
if(!isEnabledFor(account, jid))
return false;
quint16 num = 0;
JidEnums jids;
if (_enumsOutgoing.contains(account)) {
jids = _enumsOutgoing.value(account);
if(jids.contains(jid)) {
num = jids.value(jid);
}
}
if (num == 0)
return false;
QDomNode bodyNode;
QDomDocument doc = html.ownerDocument();
// QString s;
// QTextStream str(&s, QIODevice::WriteOnly);
// html.save(str, 2);
// qDebug() << s;
if(html.isNull()) {
html = doc.createElement("body");
html.setAttribute("xmlns", htmlimNS);
doc.appendChild(html);
}
else {
bodyNode = html.firstChild();
}
if(bodyNode.isNull()) {
nl2br(&html, &doc, body);
}
QDomElement msgNum = doc.createElement("span");
msgNum.setAttribute("style", "color: " + _outColor.name());
msgNum.appendChild(doc.createTextNode(QString("%1 ").arg(numToFormatedStr(num))));
QDomNode n = html.firstChild();
html.insertBefore(msgNum,n);
return false;
}
void EnumMessagesPlugin::removeWidget()
{
QWidget* w = static_cast<QWidget*>(sender());
int account = w->property(propAcc).toInt();
QString jid = w->property(propJid).toString();
if(_enumsOutgoing.contains(account)) {
JidEnums jids = _enumsOutgoing.value(account);
if(jids.contains(jid.split('/').first())) {
jids.remove(jid);
_enumsOutgoing[account] = jids;
}
}
}
void EnumMessagesPlugin::getColor()
{
QToolButton *button = static_cast<QToolButton*>(sender());
QColor c(button->property("psi_color").value<QColor>());
c = QColorDialog::getColor(c);
if(c.isValid()) {
button->setProperty("psi_color", c);
button->setStyleSheet(QString("background-color: %1").arg(c.name()));
//HACK
_ui.hack->toggle();
}
}
void EnumMessagesPlugin::onActionActivated(bool checked)
{
QAction* act = static_cast<QAction*>(sender());
const int account = act->property("account").toInt();
const QString jid = act->property("contact").toString();
JidActions acts;
if(_jidActions.contains(account)) {
acts = _jidActions.value(account);
}
acts[jid] = checked;
_jidActions[account] = acts;
}
void EnumMessagesPlugin::addMessageNum(QDomDocument *doc, QDomElement *stanza, quint16 num, const QColor& color)
{
bool appendBody = false;
QDomElement body;
QDomElement element = stanza->firstChildElement("html");
if(element.isNull()) {
element = doc->createElement("html");
element.setAttribute("xmlns", xhtmlProtoNS);
}
else {
body = element.firstChildElement("body");
}
if(body.isNull()) {
body = doc->createElement("body");
body.setAttribute("xmlns", htmlimNS);
appendBody = true;
}
QDomElement msgNum = doc->createElement("span");
msgNum.setAttribute("style", "color: " + color.name());
msgNum.appendChild(doc->createTextNode(QString("%1 ").arg(numToFormatedStr(num))));
if(appendBody) {
body.appendChild(msgNum);
nl2br(&body, doc, stanza->firstChildElement("body").text());
}
else {
QDomNode n = body.firstChild();
body.insertBefore(msgNum,n);
}
element.appendChild(body);
stanza->appendChild(element);
}
QString EnumMessagesPlugin::numToFormatedStr(int number)
{
return QString("%1").arg(number, 5, 10, QChar('0'));
}
void EnumMessagesPlugin::nl2br(QDomElement *body, QDomDocument *doc, const QString &msg)
{
foreach (const QString& str, msg.split("\n")) {
body->appendChild(doc->createTextNode(str));
body->appendChild(doc->createElement("br"));
}
body->removeChild(body->lastChild());
}
bool EnumMessagesPlugin::isEnabledFor(int account, const QString &jid) const
{
bool res = _defaultAction;
if(_jidActions.contains(account)) {
JidActions acts = _jidActions.value(account);
if(acts.contains(jid)) {
res = acts.value(jid);
}
}
return res;
}
QString EnumMessagesPlugin::pluginInfo()
{
return tr("Authors: ") + "Dealer_WeARE\n\n" +
tr("The plugin is designed to enumerate messages, adding the messages numbers in chat logs "
"and notification of missed messages. \n"
"Supports per contact on / off message enumeration via the buttons on the chats toolbar.");
}
#ifndef HAVE_QT5
Q_EXPORT_PLUGIN(EnumMessagesPlugin)
#endif
|