diff options
Diffstat (limited to 'jobs/joinroomjob.cpp')
-rw-r--r-- | jobs/joinroomjob.cpp | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/jobs/joinroomjob.cpp b/jobs/joinroomjob.cpp new file mode 100644 index 00000000..85a331fa --- /dev/null +++ b/jobs/joinroomjob.cpp @@ -0,0 +1,71 @@ +/****************************************************************************** + * Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser 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 "joinroomjob.h" + +#include <QtCore/QJsonObject> +#include <QtNetwork/QNetworkReply> + +#include "../connectiondata.h" + +using namespace QMatrixClient; + +class JoinRoomJob::Private +{ + public: + QString roomId; + QString roomAlias; +}; + +JoinRoomJob::JoinRoomJob(ConnectionData* data, QString roomAlias) + : BaseJob(data, JobHttpType::PostJob) + , d(new Private) +{ + d->roomAlias = roomAlias; +} + +JoinRoomJob::~JoinRoomJob() +{ + delete d; +} + +QString JoinRoomJob::roomId() +{ + return d->roomId; +} + +QString JoinRoomJob::apiPath() +{ + return QString("_matrix/client/r0/join/%1").arg(d->roomAlias); +} + +void JoinRoomJob::parseJson(const QJsonDocument& data) +{ + QJsonObject json = data.object(); + if( !json.contains("room_id") ) + { + fail( BaseJob::UserDefinedError, "Something went wrong..." ); + qDebug() << data; + return; + } + else + { + d->roomId = json.value("room_id").toString(); + } + emitResult(); +} |