bool VWallSession::sendMessage(const qutim_sdk_0_3::Message& message) { Q_D(VWallSession); QVariantMap data; data.insert("owner_id", d->id); data.insert("message", message.text()); QNetworkReply *reply = d->account()->connection()->get("wall.post", data); Q_UNUSED(reply); return true; }
QDebug operator<<(QDebug dbg, const qutim_sdk_0_3::Message &msg) { dbg.nospace() << QLatin1String("Ureen::Message(") << QLatin1String("id: ") << msg.id() << QLatin1String("chatUnit: ") << msg.chatUnit() << QLatin1String("isIncoming: ") << msg.isIncoming() << QLatin1String("text: ") << msg.text() << QLatin1String("time: ") << msg.time() << QLatin1String("properties: ("); foreach (QByteArray name, msg.dynamicPropertyNames()) dbg.nospace() << name << ": " << msg.property(name); return dbg.nospace() << QLatin1String(") )"); }
void JMessageSessionManager::sendMessage(qutim_sdk_0_3::ChatUnit *unit, const qutim_sdk_0_3::Message &message) { JID jid = unit->id(); Jreen::MessageSession *s = session(jid, Jreen::Message::Chat, true); Jreen::Message msg(Jreen::Message::Chat, jid, message.text(), message.property("subject").toString()); msg.setID(QString::number(message.id())); // if (JPGPSupport::instance()->send(s, unit, msg)) // emit messageEcnrypted(message.id()); // else s->sendMessage(msg); //We will close the session at Jreen together with a session in qutim s->setParent(ChatLayer::get(const_cast<ChatUnit*>(message.chatUnit()),true)); }
void NetworkManager::sendMessage(const qutim_sdk_0_3::Message &message) { MessageAction *action = new MessageAction(); ChatUnit *contact = const_cast<ChatUnit*>(message.chatUnit()->getHistoryUnit()); action->account = AccountId(contact->account()); action->contact = contact->id(); action->time = message.time(); action->text = message.text(); action->incoming = message.isIncoming(); if (message.property("otrEncrypted", false)) action->encryption << QLatin1String("otr"); if (message.property("pgpEncrypted", false) || (encryptedMessageIdInited && encryptedMessageId == message.id())) { action->encryption << QLatin1String("pgp"); } if (message.property("autoreply", false)) action->encryption << QLatin1String("autoreply"); m_actions << action; trySend(); }
void QuickChatController::appendMessage(const qutim_sdk_0_3::Message& msg) { if (msg.text().isEmpty()) return; emit messageAppended(messageToVariant(msg)); }