251 lines
6.8 KiB
C++
251 lines
6.8 KiB
C++
#include "ippprinter.h"
|
|
|
|
IppPrinter::IppPrinter()
|
|
{
|
|
_nam = new QNetworkAccessManager(this);
|
|
_print_nam = new QNetworkAccessManager(this);
|
|
_jobs_nam = new QNetworkAccessManager(this);
|
|
_job_cancel_nam = new QNetworkAccessManager(this);
|
|
|
|
connect(_nam, SIGNAL(finished(QNetworkReply*)),this, SLOT(getPrinterAttributesFinished(QNetworkReply*)));
|
|
connect(_print_nam, SIGNAL(finished(QNetworkReply*)),this, SLOT(printRequestFinished(QNetworkReply*)));
|
|
connect(_jobs_nam, SIGNAL(finished(QNetworkReply*)),this, SLOT(getJobsRequestFinished(QNetworkReply*)));
|
|
connect(_job_cancel_nam, SIGNAL(finished(QNetworkReply*)),this, SLOT(cancelJobFinished(QNetworkReply*)));
|
|
QObject::connect(this, &IppPrinter::urlChanged, this, &IppPrinter::onUrlChanged);
|
|
}
|
|
|
|
IppPrinter::~IppPrinter() {
|
|
delete _nam;
|
|
delete _print_nam;
|
|
delete _jobs_nam;
|
|
delete _job_cancel_nam;
|
|
}
|
|
|
|
QJsonObject IppPrinter::opAttrs() {
|
|
QJsonObject o
|
|
{
|
|
{"attributes-charset", QJsonObject {{"tag", IppMsg::Charset}, {"value", "utf-8"}}},
|
|
{"attributes-natural-language", QJsonObject {{"tag", IppMsg::NaturalLanguage}, {"value", "en-us"}}},
|
|
{"printer-uri", QJsonObject {{"tag", IppMsg::Uri}, {"value", _url.toString()}}},
|
|
{"requesting-user-name", QJsonObject {{"tag", IppMsg::NameWithoutLanguage}, {"value", "nemo"}}},
|
|
};
|
|
return o;
|
|
}
|
|
|
|
void IppPrinter::setUrl(QString url_s)
|
|
{
|
|
QUrl url = QUrl(url_s);
|
|
|
|
qDebug() << url.scheme();
|
|
|
|
if(url.scheme() != "ipp" /* or ipps */)
|
|
{
|
|
//if https -> ipps, else:
|
|
if(url.scheme() == "")
|
|
{
|
|
url = QUrl("ipp://"+url_s); // Why isn't setScheme working?
|
|
}
|
|
else if (url.scheme() == "http") {
|
|
url.setScheme("ipp");
|
|
}
|
|
else {
|
|
url = QUrl();
|
|
}
|
|
}
|
|
|
|
qDebug() << url_s << url;
|
|
|
|
if(url != _url)
|
|
{
|
|
_url = url;
|
|
emit urlChanged();
|
|
}
|
|
}
|
|
|
|
void IppPrinter::onUrlChanged()
|
|
{
|
|
refresh();
|
|
}
|
|
|
|
void IppPrinter::refresh() {
|
|
_attrs = QJsonObject();
|
|
emit attrsChanged();
|
|
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl(httpUrl());
|
|
// request.setRawHeader("User-Agent", "MyOwnBrowser 1.0");
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/ipp");
|
|
|
|
QJsonObject o = opAttrs();
|
|
IppMsg msg = IppMsg(o);
|
|
_nam->post(request, msg.encode(IppMsg::GetPrinterAttrs));
|
|
|
|
}
|
|
|
|
void IppPrinter::getPrinterAttributesFinished(QNetworkReply *reply)
|
|
{
|
|
qDebug() << reply->error() << reply->errorString() << reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toString();
|
|
_attrs = QJsonObject();
|
|
if(reply->error() == QNetworkReply::NoError)
|
|
{
|
|
try {
|
|
IppMsg resp(reply);
|
|
qDebug() << resp.getStatus() << resp.getOpAttrs() << resp.getPrinterAttrs();
|
|
_attrs = resp.getPrinterAttrs();
|
|
}
|
|
catch(std::exception e)
|
|
{
|
|
qDebug() << e.what();
|
|
}
|
|
}
|
|
emit attrsChanged();
|
|
}
|
|
|
|
void IppPrinter::printRequestFinished(QNetworkReply *reply)
|
|
{
|
|
_jobAttrs = QJsonObject();
|
|
bool status = false;
|
|
if(reply->error() == QNetworkReply::NoError)
|
|
{
|
|
try {
|
|
IppMsg resp(reply);
|
|
qDebug() << resp.getStatus() << resp.getOpAttrs() << resp.getJobAttrs();
|
|
_jobAttrs = resp.getJobAttrs()[0].toObject();
|
|
status = resp.getStatus() <= 0xff;
|
|
}
|
|
catch(std::exception e)
|
|
{
|
|
qDebug() << e.what();
|
|
}
|
|
}
|
|
else {
|
|
_jobAttrs.insert("job-state-message", QJsonObject {{"tag", IppMsg::TextWithoutLanguage}, {"value", "Network error"}});
|
|
}
|
|
emit jobAttrsChanged();
|
|
emit jobAttrsFinished(status);
|
|
}
|
|
|
|
void IppPrinter::getJobsRequestFinished(QNetworkReply *reply)
|
|
{
|
|
if(reply->error() == QNetworkReply::NoError)
|
|
{
|
|
try {
|
|
IppMsg resp(reply);
|
|
qDebug() << resp.getStatus() << resp.getOpAttrs() << resp.getJobAttrs();
|
|
_jobs = resp.getJobAttrs();
|
|
emit jobsChanged();
|
|
}
|
|
catch(std::exception e)
|
|
{
|
|
qDebug() << e.what();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void IppPrinter::cancelJobFinished(QNetworkReply *reply)
|
|
{
|
|
if(reply->error() == QNetworkReply::NoError)
|
|
{
|
|
try {
|
|
IppMsg resp(reply);
|
|
qDebug() << resp.getStatus() << resp.getOpAttrs() << resp.getJobAttrs();
|
|
}
|
|
catch(std::exception e)
|
|
{
|
|
qDebug() << e.what();
|
|
}
|
|
}
|
|
getJobs();
|
|
}
|
|
|
|
|
|
bool IppPrinter::print(QJsonObject attrs, QString filename){
|
|
qDebug() << "printing" << filename << attrs;
|
|
|
|
QFile file(filename);
|
|
bool file_ok = file.open(QIODevice::ReadOnly);
|
|
if(!file_ok)
|
|
return false;
|
|
|
|
QFileInfo fileinfo(file);
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl(httpUrl());
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/ipp");
|
|
|
|
QJsonObject o = opAttrs();
|
|
o.insert("job-name", QJsonObject {{"tag", IppMsg::NameWithoutLanguage}, {"value", fileinfo.fileName()}});
|
|
|
|
|
|
// Only include if printer supports it
|
|
// if (filename.endsWith("pdf"))
|
|
// {
|
|
// attrs.insert("document-format", QJsonObject {{"tag", 73}, {"value", "application/pdf"}});
|
|
// }
|
|
// else if (filename.endsWith("jpg")) {
|
|
// attrs.insert("document-format", QJsonObject {{"tag", 73}, {"value", "image/jpeg"}});
|
|
// }
|
|
|
|
qDebug() << "Printing job" << o << attrs;
|
|
IppMsg job = IppMsg(o, attrs);
|
|
|
|
QByteArray contents = job.encode(IppMsg::PrintJob);
|
|
QByteArray filedata = file.readAll();
|
|
contents = contents.append(filedata);
|
|
|
|
_print_nam->post(request, contents);
|
|
file.close();
|
|
return true;
|
|
}
|
|
|
|
bool IppPrinter::getJobs() {
|
|
|
|
qDebug() << "getting jobs";
|
|
|
|
QJsonObject o = opAttrs();
|
|
o.insert("requested-attributes", QJsonObject {{"tag", IppMsg::Keyword}, {"value", "all"}});
|
|
|
|
IppMsg job = IppMsg(o, QJsonObject());
|
|
|
|
QNetworkRequest request;
|
|
|
|
QByteArray contents = job.encode(IppMsg::GetJobs);
|
|
|
|
request.setUrl(httpUrl());
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/ipp");
|
|
_jobs_nam->post(request, contents);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool IppPrinter::cancelJob(qint32 jobId) {
|
|
|
|
qDebug() << "getting jobs";
|
|
|
|
QJsonObject o = opAttrs();
|
|
o.insert("job-id", QJsonObject {{"tag", IppMsg::Integer}, {"value", jobId}});
|
|
|
|
IppMsg job = IppMsg(o, QJsonObject());
|
|
|
|
QNetworkRequest request;
|
|
|
|
QByteArray contents = job.encode(IppMsg::CancelJob);
|
|
|
|
request.setUrl(httpUrl());
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/ipp");
|
|
_job_cancel_nam->post(request, contents);
|
|
|
|
return true;
|
|
}
|
|
|
|
QUrl IppPrinter::httpUrl() {
|
|
QUrl url = _url;
|
|
url.setScheme("http");
|
|
if(url.port() == -1) {
|
|
url.setPort(631);
|
|
}
|
|
return url;
|
|
}
|
|
|