@@ -9,6 +9,10 @@ class Market
9
9
{
10
10
public function item (int $ itemId , array $ servers = [], string $ dc = '' )
11
11
{
12
+ if (empty ($ servers ) && empty ($ dc )) {
13
+ throw new \Exception ('You must provide either a list of servers or a DC name ' );
14
+ }
15
+
12
16
$ options = [];
13
17
14
18
if ($ servers ) {
@@ -19,11 +23,34 @@ public function item(int $itemId, array $servers = [], string $dc = '')
19
23
$ options ['dc ' ] = $ dc ;
20
24
}
21
25
26
+ return Guzzle::get ("/market/item/ {$ itemId }" , [
27
+ RequestOptions::QUERY => $ options
28
+ ]);
29
+ }
30
+
31
+ public function items (array $ itemIds , array $ servers , string $ dc = '' )
32
+ {
33
+ if (empty ($ itemIds )) {
34
+ throw new \Exception ('You must provide a list of item ids ' );
35
+ }
36
+
22
37
if (empty ($ servers ) && empty ($ dc )) {
23
38
throw new \Exception ('You must provide either a list of servers or a DC name ' );
24
39
}
25
40
26
- return Guzzle::get ("/market/item/ {$ itemId }" , [
41
+ $ options = [];
42
+
43
+ $ options ['ids ' ] = implode (', ' , $ itemIds );
44
+
45
+ if ($ servers ) {
46
+ $ options ['servers ' ] = implode (', ' , $ servers );
47
+ }
48
+
49
+ if ($ dc ) {
50
+ $ options ['dc ' ] = $ dc ;
51
+ }
52
+
53
+ return Guzzle::get ("/market/items " , [
27
54
RequestOptions::QUERY => $ options
28
55
]);
29
56
}
@@ -35,6 +62,11 @@ public function search($elasticQuery)
35
62
]);
36
63
}
37
64
65
+ public function ids ()
66
+ {
67
+ return Guzzle::get ("/market/ids " );
68
+ }
69
+
38
70
public function categories ()
39
71
{
40
72
return Guzzle::get ("/market/categories " );
0 commit comments