Abstract.php
9.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Service
* @subpackage Ebay
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Abstract.php 22824 2010-08-09 18:59:54Z renanbr $
*/
/**
* @category Zend
* @package Zend_Service
* @subpackage Ebay
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class Zend_Service_Ebay_Abstract
{
const OPTION_APP_ID = 'app_id';
const OPTION_GLOBAL_ID = 'global_id';
/**
* @var array
*/
protected $_options = array();
/**
* @var mixed
*/
protected $_client;
/**
* @param Zend_Config|array $options
* @return void
*/
public function __construct($options = null)
{
$options = self::optionsToArray($options);
$this->setOption($options);
}
/**
* @param string|Zend_Config|array $name
* @param mixed $value
* @return Zend_Service_Ebay_Abstract Provides a fluent interface
*/
public function setOption($name, $value = null)
{
if ($name instanceof Zend_Config) {
$name = $name->toArray();
}
if (is_array($name)) {
$this->_options = $name + $this->_options;
} else {
$this->_options[$name] = $value;
}
return $this;
}
/**
* @param string $name
* @return mixed
*/
public function getOption($name = null)
{
if (null === $name) {
return $this->_options;
}
if ($this->hasOption($name)) {
return $this->_options[$name];
}
return null;
}
/**
* @param string $name
* @return boolean
*/
public function hasOption($name)
{
return array_key_exists($name, $this->_options);
}
/**
* @param mixed $client
* @return Zend_Service_Ebay_Abstract Provides a fluent interface
*/
abstract public function setClient($client);
/**
* @return mixed
*/
abstract public function getClient();
/**
* @param Zend_Config|array $options
* @throws Zend_Service_Ebay_Finding_Exception When $options is not an array neither a Zend_Config object
* @return array
*/
public static function optionsToArray($options)
{
if (null === $options) {
$options = array();
} else if ($options instanceof Zend_Config) {
$options = $options->toArray();
}
if (!is_array($options)) {
/**
* @see Zend_Service_Ebay_Exception
*/
require_once 'Zend/Service/Ebay/Exception.php';
throw new Zend_Service_Ebay_Exception('Invalid options provided.');
}
return $options;
}
/**
* Implements Name-value Syntax translator.
*
* Example:
*
* array(
* 'paginationInput' => array(
* 'entriesPerPage' => 5,
* 'pageNumber' => 2
* ),
* 'itemFilter' => array(
* array(
* 'name' => 'MaxPrice',
* 'value' => 25,
* 'paramName' => 'Currency',
* 'paramValue' => 'USD'
* ),
* array(
* 'name' => 'FreeShippingOnly',
* 'value' => true
* ),
* array(
* 'name' => 'ListingType',
* 'value' => array(
* 'AuctionWithBIN',
* 'FixedPrice',
* 'StoreInventory'
* )
* )
* ),
* 'productId' => array(
* '' => 123,
* 'type' => 'UPC'
* )
* )
*
* this above is translated to
*
* array(
* 'paginationInput.entriesPerPage' => '5',
* 'paginationInput.pageNumber' => '2',
* 'itemFilter(0).name' => 'MaxPrice',
* 'itemFilter(0).value' => '25',
* 'itemFilter(0).paramName' => 'Currency',
* 'itemFilter(0).paramValue' => 'USD',
* 'itemFilter(1).name' => 'FreeShippingOnly',
* 'itemFilter(1).value' => '1',
* 'itemFilter(2).name' => 'ListingType',
* 'itemFilter(2).value(0)' => 'AuctionWithBIN',
* 'itemFilter(2).value(1)' => 'FixedPrice',
* 'itemFilter(2).value(2)' => 'StoreInventory',
* 'productId' => '123',
* 'productId.@type' => 'UPC'
* )
*
* @param Zend_Config|array $options
* @link http://developer.ebay.com/DevZone/finding/Concepts/MakingACall.html#nvsyntax
* @return array A simple array of strings
*/
protected function _optionsToNameValueSyntax($options)
{
$options = self::optionsToArray($options);
ksort($options);
$new = array();
$runAgain = false;
foreach ($options as $name => $value) {
if (is_array($value)) {
// parse an array value, check if it is associative
$keyRaw = array_keys($value);
$keyNumber = range(0, count($value) - 1);
$isAssoc = count(array_diff($keyRaw, $keyNumber)) > 0;
// check for tag representation, like <name att="sometinhg"></value>
// empty key refers to text value
// when there is a root tag, attributes receive flags
$hasAttribute = array_key_exists('', $value);
foreach ($value as $subName => $subValue) {
// generate new key name
if ($isAssoc) {
// named keys
$newName = $name;
if ($subName !== '') {
// when $subName is empty means that current value
// is the main value for the main key
$glue = $hasAttribute ? '.@' : '.';
$newName .= $glue . $subName;
}
} else {
// numeric keys
$newName = $name . '(' . $subName . ')';
}
// save value
if (is_array($subValue)) {
// it is necessary run this again, value is an array
$runAgain = true;
} else {
// parse basic type
$subValue = self::toEbayValue($subValue);
}
$new[$newName] = $subValue;
}
} else {
// parse basic type
$new[$name] = self::toEbayValue($value);
}
}
if ($runAgain) {
// this happens if any $subValue found is an array
$new = $this->_optionsToNameValueSyntax($new);
}
return $new;
}
/**
* Translate native PHP values format to ebay format for request.
*
* Boolean is translated to "0" or "1", date object generates ISO 8601,
* everything else is translated to string.
*
* @param mixed $value
* @return string
*/
public static function toEbayValue($value)
{
if (is_bool($value)) {
$value = $value ? '1' : '0';
} else if ($value instanceof Zend_Date) {
$value = $value->getIso();
} else if ($value instanceof DateTime) {
$value = $value->format(DateTime::ISO8601);
} else {
$value = (string) $value;
}
return $value;
}
/**
* Translate an ebay value format to native PHP type.
*
* @param string $value
* @param string $type
* @see http://developer.ebay.com/DevZone/finding/CallRef/types/simpleTypes.html
* @throws Zend_Service_Ebay_Finding_Exception When $type is not valid
* @return mixed
*/
public static function toPhpValue($value, $type)
{
switch ($type) {
// cast for: boolean
case 'boolean':
$value = (string) $value == 'true';
break;
// cast for: Amount, decimal, double, float, MeasureType
case 'float':
$value = floatval((string) $value);
break;
// cast for: int, long
// integer type generates a string value, because 32 bit systems
// have an integer range of -2147483648 to 2147483647
case 'integer':
// break intentionally omitted
// cast for: anyURI, base64Binary, dateTime, duration, string, token
case 'string':
$value = (string) $value;
break;
default:
/**
* @see Zend_Service_Ebay_Exception
*/
require_once 'Zend/Service/Ebay/Exception.php';
throw new Zend_Service_Ebay_Exception("Invalid type '{$type}'.");
}
return $value;
}
}