use http::Uri;
use crate::{
attribute::IppAttribute,
model::{DelimiterTag, IppVersion, Operation},
parser::IppParseError,
payload::IppPayload,
request::IppRequestResponse,
value::{IppKeyword, IppMimeMediaType, IppName, IppString, IppValue},
};
pub mod builder;
pub mod cups;
fn with_user_name(user_name: Option<IppName>, req: &mut IppRequestResponse) {
if let Some(user_name) = user_name {
req.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(
IppAttribute::REQUESTING_USER_NAME.try_into().unwrap(),
IppValue::NameWithoutLanguage(user_name),
),
);
}
}
fn with_document_format(document_format: Option<IppMimeMediaType>, req: &mut IppRequestResponse) {
if let Some(document_format) = document_format {
req.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(
IppAttribute::DOCUMENT_FORMAT.try_into().unwrap(),
IppValue::MimeMediaType(document_format),
),
);
}
}
pub trait IppOperation {
fn into_ipp_request(self) -> IppRequestResponse;
fn version(&self) -> IppVersion {
IppVersion::v1_1()
}
}
impl<T: IppOperation> From<T> for IppRequestResponse {
fn from(op: T) -> Self {
op.into_ipp_request()
}
}
pub struct PrintJob {
printer_uri: IppString,
payload: IppPayload,
user_name: Option<IppName>,
job_name: Option<IppName>,
document_format: Option<IppMimeMediaType>,
attributes: Vec<IppAttribute>,
}
impl PrintJob {
pub fn new<S, U, N, D>(
printer_uri: Uri,
payload: S,
user_name: Option<U>,
job_name: Option<N>,
document_format: Option<D>,
) -> Result<PrintJob, IppParseError>
where
S: Into<IppPayload>,
U: AsRef<str>,
N: AsRef<str>,
D: AsRef<str>,
{
Ok(PrintJob {
printer_uri: printer_uri.try_into()?,
payload: payload.into(),
user_name: user_name.map(|v| v.as_ref().to_string().try_into()).transpose()?,
job_name: job_name.map(|v| v.as_ref().to_string().try_into()).transpose()?,
document_format: document_format.map(|v| v.as_ref().to_string().try_into()).transpose()?,
attributes: Vec::new(),
})
}
pub fn add_attribute(&mut self, attribute: IppAttribute) {
self.attributes.push(attribute);
}
}
impl IppOperation for PrintJob {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval = IppRequestResponse::new_internal(self.version(), Operation::PrintJob, Some(self.printer_uri));
with_user_name(self.user_name, &mut retval);
with_document_format(self.document_format, &mut retval);
if let Some(job_name) = self.job_name {
retval.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(
IppAttribute::JOB_NAME.try_into().unwrap(),
IppValue::NameWithoutLanguage(job_name),
),
)
}
for attr in self.attributes {
retval.attributes_mut().add(DelimiterTag::JobAttributes, attr);
}
*retval.payload_mut() = self.payload;
retval
}
}
pub struct GetPrinterAttributes {
printer_uri: IppString,
attributes: Vec<IppKeyword>,
}
impl GetPrinterAttributes {
pub fn new(printer_uri: Uri) -> Result<GetPrinterAttributes, IppParseError> {
Ok(GetPrinterAttributes {
printer_uri: printer_uri.try_into()?,
attributes: Vec::new(),
})
}
pub fn with_attributes<I, T>(printer_uri: Uri, attributes: I) -> Result<GetPrinterAttributes, IppParseError>
where
I: IntoIterator<Item = T>,
T: AsRef<str>,
{
Ok(GetPrinterAttributes {
printer_uri: printer_uri.try_into()?,
attributes: attributes
.into_iter()
.map(|a| a.as_ref().try_into())
.collect::<Result<Vec<IppKeyword>, IppParseError>>()?,
})
}
}
impl IppOperation for GetPrinterAttributes {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval =
IppRequestResponse::new_internal(self.version(), Operation::GetPrinterAttributes, Some(self.printer_uri));
if !self.attributes.is_empty() {
let vals: Vec<IppValue> = self.attributes.into_iter().map(IppValue::Keyword).collect();
retval.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(
IppAttribute::REQUESTED_ATTRIBUTES.try_into().unwrap(),
IppValue::Array(vals),
),
);
}
retval
}
}
pub struct CreateJob {
printer_uri: IppString,
job_name: Option<IppName>,
attributes: Vec<IppAttribute>,
}
impl CreateJob {
pub fn new<T>(printer_uri: Uri, job_name: Option<T>) -> Result<CreateJob, IppParseError>
where
T: AsRef<str>,
{
Ok(CreateJob {
printer_uri: printer_uri.try_into()?,
job_name: job_name.map(|v| v.as_ref().to_string().try_into()).transpose()?,
attributes: Vec::new(),
})
}
pub fn add_attribute(&mut self, attribute: IppAttribute) {
self.attributes.push(attribute);
}
}
impl IppOperation for CreateJob {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval = IppRequestResponse::new_internal(self.version(), Operation::CreateJob, Some(self.printer_uri));
if let Some(job_name) = self.job_name {
retval.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(
IppAttribute::JOB_NAME.try_into().unwrap(),
IppValue::NameWithoutLanguage(job_name),
),
)
}
for attr in self.attributes {
retval.attributes_mut().add(DelimiterTag::JobAttributes, attr);
}
retval
}
}
pub struct SendDocument {
printer_uri: IppString,
job_id: i32,
payload: IppPayload,
user_name: Option<IppName>,
document_format: Option<IppMimeMediaType>,
last: bool,
}
impl SendDocument {
pub fn new<S, U, D>(
printer_uri: Uri,
job_id: i32,
payload: S,
user_name: Option<U>,
document_format: Option<D>,
last: bool,
) -> Result<SendDocument, IppParseError>
where
S: Into<IppPayload>,
U: AsRef<str>,
D: AsRef<str>,
{
Ok(SendDocument {
printer_uri: printer_uri.try_into()?,
job_id,
payload: payload.into(),
user_name: user_name.map(|v| v.as_ref().to_string().try_into()).transpose()?,
document_format: document_format.map(|v| v.as_ref().to_string().try_into()).transpose()?,
last,
})
}
}
impl IppOperation for SendDocument {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval =
IppRequestResponse::new_internal(self.version(), Operation::SendDocument, Some(self.printer_uri));
retval.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(IppAttribute::JOB_ID.try_into().unwrap(), IppValue::Integer(self.job_id)),
);
retval.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(
IppAttribute::LAST_DOCUMENT.try_into().unwrap(),
IppValue::Boolean(self.last),
),
);
with_user_name(self.user_name, &mut retval);
with_document_format(self.document_format, &mut retval);
*retval.payload_mut() = self.payload;
retval
}
}
pub struct PurgeJobs {
printer_uri: IppString,
user_name: Option<IppName>,
}
impl PurgeJobs {
pub fn new<U>(printer_uri: Uri, user_name: Option<U>) -> Result<Self, IppParseError>
where
U: AsRef<str>,
{
Ok(Self {
printer_uri: printer_uri.try_into()?,
user_name: user_name.map(|u| u.as_ref().to_owned().try_into()).transpose()?,
})
}
}
impl IppOperation for PurgeJobs {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval = IppRequestResponse::new_internal(self.version(), Operation::PurgeJobs, Some(self.printer_uri));
with_user_name(self.user_name, &mut retval);
retval
}
}
pub struct CancelJob {
printer_uri: IppString,
job_id: i32,
user_name: Option<IppName>,
}
impl CancelJob {
pub fn new<U>(printer_uri: Uri, job_id: i32, user_name: Option<U>) -> Result<Self, IppParseError>
where
U: AsRef<str>,
{
Ok(Self {
printer_uri: printer_uri.try_into()?,
job_id,
user_name: user_name.map(|u| u.as_ref().to_owned().try_into()).transpose()?,
})
}
}
impl IppOperation for CancelJob {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval = IppRequestResponse::new_internal(self.version(), Operation::CancelJob, Some(self.printer_uri));
retval.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(IppAttribute::JOB_ID.try_into().unwrap(), IppValue::Integer(self.job_id)),
);
with_user_name(self.user_name, &mut retval);
retval
}
}
pub struct GetJobAttributes {
printer_uri: IppString,
job_id: i32,
user_name: Option<IppName>,
}
impl GetJobAttributes {
pub fn new<U>(printer_uri: Uri, job_id: i32, user_name: Option<U>) -> Result<Self, IppParseError>
where
U: AsRef<str>,
{
Ok(Self {
printer_uri: printer_uri.try_into()?,
job_id,
user_name: user_name.map(|u| u.as_ref().to_owned().try_into()).transpose()?,
})
}
}
impl IppOperation for GetJobAttributes {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval =
IppRequestResponse::new_internal(self.version(), Operation::GetJobAttributes, Some(self.printer_uri));
retval.attributes_mut().add(
DelimiterTag::OperationAttributes,
IppAttribute::new(IppAttribute::JOB_ID.try_into().unwrap(), IppValue::Integer(self.job_id)),
);
with_user_name(self.user_name, &mut retval);
retval
}
}
pub struct GetJobs {
printer_uri: IppString,
user_name: Option<IppName>,
}
impl GetJobs {
pub fn new<U>(printer_uri: Uri, user_name: Option<U>) -> Result<Self, IppParseError>
where
U: AsRef<str>,
{
Ok(Self {
printer_uri: printer_uri.try_into()?,
user_name: user_name.map(|u| u.as_ref().to_owned().try_into()).transpose()?,
})
}
}
impl IppOperation for GetJobs {
fn into_ipp_request(self) -> IppRequestResponse {
let mut retval = IppRequestResponse::new_internal(self.version(), Operation::GetJobs, Some(self.printer_uri));
with_user_name(self.user_name, &mut retval);
retval
}
}