2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2012-09-03 14:48:17 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-09-03 14:48:17 +02:00
|
|
|
**
|
2012-10-09 12:19:37 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-09-03 14:48:17 +02:00
|
|
|
**
|
2012-10-09 12:19:37 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-03 14:48:17 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-09-03 14:48:17 +02:00
|
|
|
**
|
2012-10-09 12:19:37 +02:00
|
|
|
****************************************************************************/
|
2012-09-03 14:48:17 +02:00
|
|
|
|
|
|
|
|
#include "argumentscollector.h"
|
|
|
|
|
#include "../kdepasteprotocol.h"
|
|
|
|
|
#include "../pastebindotcaprotocol.h"
|
|
|
|
|
#include "../pastebindotcomprotocol.h"
|
|
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QTimer>
|
2013-01-28 17:26:38 +01:00
|
|
|
#include <QCoreApplication>
|
2012-09-03 14:48:17 +02:00
|
|
|
|
|
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
using namespace CodePaster;
|
|
|
|
|
|
|
|
|
|
class PasteReceiver : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2016-02-10 14:32:01 +01:00
|
|
|
|
2012-09-03 14:48:17 +02:00
|
|
|
public:
|
|
|
|
|
PasteReceiver(const QString &protocol, const QString &filePath) : m_filePath(filePath)
|
|
|
|
|
{
|
|
|
|
|
if (protocol == KdePasteProtocol::protocolName().toLower())
|
2013-04-09 09:58:17 +02:00
|
|
|
m_protocol.reset(new KdePasteProtocol);
|
2012-09-03 14:48:17 +02:00
|
|
|
else if (protocol == PasteBinDotCaProtocol::protocolName().toLower())
|
2013-04-09 09:58:17 +02:00
|
|
|
m_protocol.reset(new PasteBinDotCaProtocol);
|
2012-09-03 14:48:17 +02:00
|
|
|
else if (protocol == PasteBinDotComProtocol::protocolName().toLower())
|
2013-04-09 09:58:17 +02:00
|
|
|
m_protocol.reset(new PasteBinDotComProtocol);
|
2012-09-03 14:48:17 +02:00
|
|
|
else
|
|
|
|
|
qFatal("Internal error: Invalid protocol.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void paste()
|
|
|
|
|
{
|
|
|
|
|
QFile file(m_filePath);
|
|
|
|
|
const bool success = m_filePath.isEmpty()
|
|
|
|
|
? file.open(stdin, QIODevice::ReadOnly) : file.open(QIODevice::ReadOnly);
|
|
|
|
|
if (!success) {
|
|
|
|
|
std::cerr << "Error: Failed to open file to paste from." << std::endl;
|
2017-04-24 17:01:10 +02:00
|
|
|
QCoreApplication::exit(EXIT_FAILURE);
|
2012-09-03 14:48:17 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
const QString content = QString::fromLocal8Bit(file.readAll());
|
|
|
|
|
if (content.isEmpty()) {
|
|
|
|
|
std::cerr << "Empty input, aborting." << std::endl;
|
2017-04-24 17:01:10 +02:00
|
|
|
QCoreApplication::exit(EXIT_FAILURE);
|
2012-09-03 14:48:17 +02:00
|
|
|
return;
|
|
|
|
|
}
|
2016-05-28 23:52:16 +03:00
|
|
|
connect(m_protocol.data(), &Protocol::pasteDone, this, &PasteReceiver::handlePasteDone);
|
2012-09-03 14:48:17 +02:00
|
|
|
m_protocol->paste(content);
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-10 14:32:01 +01:00
|
|
|
private:
|
2012-09-03 14:48:17 +02:00
|
|
|
void handlePasteDone(const QString &link)
|
|
|
|
|
{
|
|
|
|
|
std::cout << qPrintable(link) << std::endl;
|
2017-04-24 17:01:10 +02:00
|
|
|
QCoreApplication::quit();
|
2012-09-03 14:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString m_filePath;
|
|
|
|
|
QScopedPointer<Protocol> m_protocol;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
QCoreApplication app(argc, argv);
|
|
|
|
|
|
2017-02-22 15:09:35 +01:00
|
|
|
const QStringList protocols = {KdePasteProtocol::protocolName().toLower(),
|
|
|
|
|
PasteBinDotCaProtocol::protocolName().toLower(),
|
|
|
|
|
PasteBinDotComProtocol::protocolName().toLower()};
|
2012-09-03 14:48:17 +02:00
|
|
|
ArgumentsCollector argsCollector(protocols);
|
|
|
|
|
QStringList arguments = QCoreApplication::arguments();
|
|
|
|
|
arguments.removeFirst();
|
|
|
|
|
if (!argsCollector.collect(arguments)) {
|
|
|
|
|
std::cerr << "Error: " << qPrintable(argsCollector.errorString()) << '.' << std::endl
|
|
|
|
|
<< qPrintable(argsCollector.usageString()) << std::endl;
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (argsCollector.requestType()) {
|
|
|
|
|
case ArgumentsCollector::RequestTypeHelp:
|
|
|
|
|
std::cout << qPrintable(argsCollector.usageString()) << std::endl;
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
case ArgumentsCollector::RequestTypeListProtocols:
|
|
|
|
|
foreach (const QString &protocol, protocols)
|
|
|
|
|
std::cout << qPrintable(protocol) << std::endl;
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
case ArgumentsCollector::RequestTypePaste: {
|
|
|
|
|
PasteReceiver pr(argsCollector.protocol(), argsCollector.inputFilePath());
|
2016-05-28 23:52:16 +03:00
|
|
|
QTimer::singleShot(0, &pr, &PasteReceiver::paste);
|
2012-09-03 14:48:17 +02:00
|
|
|
return app.exec();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "main.moc"
|