/**************************************************************************** ** ** Copyright (C) Qxt Foundation. Some rights reserved. ** ** This file is part of the QxtWeb module of the Qxt library. ** ** This library is free software; you can redistribute it and/or modify it ** under the terms of the Common Public License, version 1.0, as published ** by IBM, and/or under the terms of the GNU Lesser General Public License, ** version 2.1, as published by the Free Software Foundation. ** ** This file is provided "AS IS", without WARRANTIES OR CONDITIONS OF ANY ** KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY ** WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR ** FITNESS FOR A PARTICULAR PURPOSE. ** ** You should have received a copy of the CPL and the LGPL along with this ** file. See the LICENSE file and the cpl1.0.txt/lgpl-2.1.txt files ** included with the source distribution for more information. ** If you did not receive a copy of the licenses, contact the Qxt Foundation. ** ** ** ****************************************************************************/ /*! \class QxtWebSlotService \inmodule QxtWeb \brief The QxtWebSlotService class provides a Slot based webservice A WebService that resolves the first part of the path to a slot name and passes the rest as arguments. \code class MyService : public QxtWebSlotService { Q_OBJECT public slots: void hello(QxtWebRequestEvent* event, QString a) { postEvent(new QxtWebPageEvent(event->sessionID, event->requestID, "<h1>"+a.toUtf8()+"</h1>)); } } \endcode /hello/foo
will output
<h1>Foo</h1>
\sa QxtAbstractWebService */ #include "qxtwebslotservice.h" #include "qxtwebevent.h" /*! Constructs a new QxtWebSlotService with \a sm and \a parent. */ QxtWebSlotService::QxtWebSlotService(QxtAbstractWebSessionManager* sm, QObject* parent): QxtAbstractWebService(sm, parent) { } /*! Returns the current absolute url of this service depending on the request \a event. */ QUrl QxtWebSlotService::self(QxtWebRequestEvent* event) { QStringList u = event->url.path().split('/'); QStringList o = event->originalUrl.path().split('/'); u.removeFirst(); o.removeFirst(); for (int i = 0;i < u.count();i++) o.removeLast(); QString r = "/"; foreach(const QString& d, o) { r += d + '/'; } return r; } /*! \reimp */ void QxtWebSlotService::pageRequestedEvent(QxtWebRequestEvent* event) { QList args = event->url.path().split('/'); args.removeFirst(); if (args.at(args.count() - 1).isEmpty()) args.removeLast(); ///--------------find action ------------------ QByteArray action = "index"; if (args.count()) { action = args.at(0).toUtf8(); if (action.trimmed().isEmpty()) action = "index"; args.removeFirst(); } bool ok = false; if (args.count() > 7) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)), Q_ARG(QString, args.at(1)), Q_ARG(QString, args.at(2)), Q_ARG(QString, args.at(3)), Q_ARG(QString, args.at(4)), Q_ARG(QString, args.at(5)), Q_ARG(QString, args.at(6)), Q_ARG(QString, args.at(7)) ); } else if (args.count() > 6) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)), Q_ARG(QString, args.at(1)), Q_ARG(QString, args.at(2)), Q_ARG(QString, args.at(3)), Q_ARG(QString, args.at(4)), Q_ARG(QString, args.at(5)), Q_ARG(QString, args.at(6)) ); } else if (args.count() > 5) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)), Q_ARG(QString, args.at(1)), Q_ARG(QString, args.at(2)), Q_ARG(QString, args.at(3)), Q_ARG(QString, args.at(4)), Q_ARG(QString, args.at(5)) ); } else if (args.count() > 4) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)), Q_ARG(QString, args.at(1)), Q_ARG(QString, args.at(2)), Q_ARG(QString, args.at(3)), Q_ARG(QString, args.at(4)) ); } else if (args.count() > 3) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)), Q_ARG(QString, args.at(1)), Q_ARG(QString, args.at(2)), Q_ARG(QString, args.at(3)) ); } else if (args.count() > 2) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)), Q_ARG(QString, args.at(1)), Q_ARG(QString, args.at(2)) ); } else if (args.count() > 1) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)), Q_ARG(QString, args.at(1)) ); } else if (args.count() > 0) { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event), Q_ARG(QString, args.at(0)) ); } else { ok = QMetaObject::invokeMethod(this, action, Q_ARG(QxtWebRequestEvent*, event) ); } if (!ok) { QByteArray err = "

Can not find slot

Class " + QByteArray(metaObject()->className()) + "\r{\npublic slots:\r    void " + action.replace('<', "<") + " ( QxtWebRequestEvent* event, ";
        for (int i = 0;i < args.count();i++)
            err += "QString arg" + QByteArray::number(i) + ", ";
        err.chop(2);

        err += " ); \r};\r
"; postEvent(new QxtWebErrorEvent(event->sessionID, event->requestID, 404, err)); } } /*! \reimp */ void QxtWebSlotService::functionInvokedEvent(QxtWebRequestEvent* event) { postEvent(new QxtWebErrorEvent(event->sessionID, event->requestID, 500, "

Not supported

")); }