2015-04-26 13:50:59 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2015 Marco Martin <mart@kde.org>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
|
* License version 2 as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* 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 program; see the file COPYING. If not, write to
|
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "dialerutils.h"
|
|
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
2015-04-26 14:42:14 +00:00
|
|
|
#include <KLocalizedString>
|
2015-06-18 23:24:46 +00:00
|
|
|
#include <TelepathyQt/PendingOperation>
|
|
|
|
|
#include <TelepathyQt/PendingChannelRequest>
|
|
|
|
|
#include <TelepathyQt/PendingReady>
|
|
|
|
|
#include <TelepathyQt/Constants>
|
|
|
|
|
#include <TelepathyQt/PendingContacts>
|
|
|
|
|
#include <TelepathyQt/Types>
|
|
|
|
|
#include <TelepathyQt/ContactManager>
|
2015-04-26 14:42:14 +00:00
|
|
|
|
2015-06-18 23:24:46 +00:00
|
|
|
DialerUtils::DialerUtils(const Tp::AccountPtr &simAccount, QObject *parent)
|
2015-04-26 14:42:14 +00:00
|
|
|
: QObject(parent),
|
2015-06-18 23:24:46 +00:00
|
|
|
m_missedCalls(0),
|
|
|
|
|
m_simAccount(simAccount)
|
2015-04-26 13:50:59 +00:00
|
|
|
{
|
2015-06-18 23:24:46 +00:00
|
|
|
Tp::PendingReady *op = m_simAccount->becomeReady(Tp::Features() << Tp::Account::FeatureCore);
|
|
|
|
|
|
|
|
|
|
connect(op, &Tp::PendingOperation::finished, [=](){
|
|
|
|
|
if (op->isError()) {
|
|
|
|
|
qWarning() << "SIM card account failed to get ready:" << op->errorMessage();
|
|
|
|
|
} else {
|
|
|
|
|
qDebug() << "SIM Account ready to use";
|
|
|
|
|
}
|
|
|
|
|
});
|
2015-04-26 13:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DialerUtils::~DialerUtils()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-18 23:24:46 +00:00
|
|
|
void DialerUtils::dial(const QString &number)
|
|
|
|
|
{
|
|
|
|
|
// FIXME: this should be replaced by kpeople thing
|
|
|
|
|
auto pendingContact = m_simAccount->connection()->contactManager()->contactsForIdentifiers(QStringList() << number);
|
|
|
|
|
|
|
|
|
|
connect(pendingContact, &Tp::PendingOperation::finished, [=](){
|
|
|
|
|
if (pendingContact->contacts().size() < 1) {
|
|
|
|
|
qWarning() << " no contacts";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
qDebug() << "Starting call...";
|
|
|
|
|
Tp::PendingChannelRequest *pendingChannel = m_simAccount->ensureAudioCall(pendingContact->contacts().first());
|
|
|
|
|
connect(pendingChannel, &Tp::PendingChannelRequest::finished, [=](){
|
|
|
|
|
if (pendingChannel->isError()) {
|
|
|
|
|
qWarning() << "Error when requesting channel" << pendingChannel->errorMessage();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString DialerUtils::callState() const
|
|
|
|
|
{
|
|
|
|
|
return m_callState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DialerUtils::setCallState(const QString &state)
|
|
|
|
|
{
|
|
|
|
|
if (m_callState != state) {
|
|
|
|
|
m_callState = state;
|
|
|
|
|
Q_EMIT callStateChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-26 14:42:14 +00:00
|
|
|
void DialerUtils::resetMissedCalls()
|
|
|
|
|
{
|
|
|
|
|
m_missedCalls = 0;
|
|
|
|
|
if (m_callsNotification) {
|
|
|
|
|
m_callsNotification->close();
|
|
|
|
|
}
|
|
|
|
|
m_callsNotification.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-26 13:50:59 +00:00
|
|
|
#include "moc_dialerutils.cpp"
|