Files
newznab-tmux/libs/ApaiIO/Operations/Search.php
T
2015-10-30 15:10:18 +01:00

178 lines
4.3 KiB
PHP

<?php
/*
* Copyright 2013 Jan Eichhorn <exeu65@googlemail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace libs\ApaiIO\Operations;
/**
* A item search operation
*
* @see http://docs.aws.amazon.com/AWSECommerceService/2011-08-01/DG/ItemSearch.html
* @author Jan Eichhorn <exeu65@googlemail.com>
*/
class Search extends AbstractOperation
{
/**
* {@inheritdoc}
*/
public function getName()
{
return 'ItemSearch';
}
/**
* Sets the amazon category
*
* @param string $category
*
* @return \libs\ApaiIO\Operations\Search
*/
public function setCategory($category)
{
$this->parameter['SearchIndex'] = $category;
return $this;
}
/**
* Sets the keywords
*
* @param string $keywords
*
* @return \libs\ApaiIO\Operations\Search
*/
public function setKeywords($keywords)
{
$this->parameter['Keywords'] = $keywords;
return $this;
}
/**
* Sets the amazon browseNode
*
* @param string $browseNode
*
* @return \libs\ApaiIO\Operations\Search
*/
public function setBrowseNode($browseNode)
{
if (false === is_numeric($browseNode) || (int)$browseNode < 0) {
throw new \InvalidArgumentException(
sprintf(
'%s is an invalid browseNode value. It has to be numeric and positive',
$browseNode
)
);
}
$this->parameter['BrowseNode'] = $browseNode;
return $this;
}
/**
* Sets the resultpage to a specified value
* Allows to browse resultsets which have more than one page
*
* @param integer $page
*
* @return \libs\ApaiIO\Operations\Search
*/
public function setPage($page)
{
if (false === is_numeric($page) || $page < 1 || $page > 10) {
throw new \InvalidArgumentException(
sprintf(
'%s is an invalid page value. It has to be numeric, positive and between 1 and 10',
$page
)
);
}
$this->parameter['ItemPage'] = $page;
return $this;
}
/**
* Sets the minimum price to a specified value for the search
* Currency will be given by the site you are querying: EUR for IT, USD for COM
* Price should be given as integer. 8.99$ USD becomes 899
*
* @param integer $price
*
* @return \libs\ApaiIO\Operations\Search
*/
public function setMinimumPrice($price)
{
$this->validatePrice($price);
$this->parameter['MinimumPrice'] = $price;
return $this;
}
/**
* Sets the maximum price to a specified value for the search
* Currency will be given by the site you are querying: EUR for IT, USD for COM
* Price should be given as integer. 8.99$ USD becomes 899
*
* @param integer $price
*
* @return \libs\ApaiIO\Operations\Search
*/
public function setMaximumPrice($price)
{
$this->validatePrice($price);
$this->parameter['MaximumPrice'] = $price;
return $this;
}
/**
* Sets the condition of the items to return: New | Used | Collectible | Refurbished | All
*
* Defaults to New.
*
* @param string $condition
*
* @return \libs\ApaiIO\Operations\Search
*/
public function setCondition($condition)
{
$this->parameter['Condition'] = $condition;
return $this;
}
/**
* Validates the given price.
*
* @param integer $price
*/
protected function validatePrice($price)
{
if (false === is_numeric($price) || $price < 1) {
throw new \InvalidArgumentException(
sprintf(
'%s is an invalid price value. It has to be numeric and >= than 1',
$price
)
);
}
}
}