7c5d57f5c3683600c34033dd393f47420a190ed0
[www-backpacktf.git] / lib / WWW / BackpackTF / Item.pm
1 package WWW::BackpackTF::Item;
2
3 use 5.014000;
4 use strict;
5 use warnings;
6 our $VERSION = '0.001';
7
8 sub new{
9 my ($class, $name, $content) = @_;
10 $content->{name} = $name;
11 bless $content, $class
12 }
13
14 sub name { shift->{name} }
15 sub defindex { wantarray ? @{shift->{defindex}} : shift->{defindex}->[0] }
16 sub price {
17 my ($self, $quality, $tradable, $craftable, $priceindex) = (@_, 6, 1, 1);
18 $tradable = $tradable ? 'Tradable' : 'Non-Tradable';
19 $craftable = $craftable ? 'Craftable' : 'Non-Craftable';
20 my $price = shift->{prices}->{$quality}->{$tradable}->{$craftable};
21 defined $priceindex ? $price->{$priceindex} : $price->[0]
22 }
23
24 1;
25 __END__
26
27 =encoding utf-8
28
29 =head1 NAME
30
31 WWW::BackpackTF::Item - Class representing item information
32
33 =head1 SYNOPSIS
34
35 use WWW::BackpackTF qw/VINTAGE GENUINE UNUSUAL/;
36 use Data::Dumper qw/Dumper/;
37
38 my @items = $bp->get_prices;
39 my $item = $items[0];
40 say 'Name: ', $item->name;
41 say 'Linked defindexes: ', join ' ', $item->defindex;
42 say 'Price of Unique, Tradable, Craftable version: ', $item->price;
43 say 'Price of Vintage, Tradable, Craftable version: ', Dumper $item->price(VINTAGE);
44 say 'Price of Vintage, Non-Tradable, Craftable version: ', Dumper $item->price(VINTAGE, 0);
45 say 'Price of Genuine, Non-Tradable, Non-Craftable version: ', Dumper $item->price(GENUINE, 0, 0);
46 say 'Price of Unusual, Tradable, Craftable version with effect 10: ', Dumper $item->price(UNUSUAL, 1, 1, 10);
47
48 =head1 DESCRIPTION
49
50 WWW::BackpackTF::Item is a class representing price information about an item.
51
52 =head2 METHODS
53
54 =over
55
56 =item B<name>
57
58 The name of the item.
59
60 =item B<defindex>
61
62 In list context, a list of defindexes linked to the item. In scalar context, the first such defindex.
63
64 =item B<price>([I<$quality>, [I<$tradable>, [I<$craftable>, [I<$priceindex>]]]])
65
66 The price of an item. Takes four optional arguments: the quality (defaults to 6, which is Unique), the tradability of the item (defaults to true), the craftability of an item (defaults to true), and the priceindex (crate series/unusual effect, defaults to none).
67
68 Returns an hashref with the following keys/values:
69
70 =over
71
72 =item B<currency>
73
74 The currency the item's price is in.
75
76 =item B<value>
77
78 The price.
79
80 =item B<value_high>
81
82 If present, the upper range of the price range.
83
84 =item B<value_raw>
85
86 The price in the lowest currency, without rounding. Only present if get_prices was called with a true value for $raw.
87
88 =item B<last_update>
89
90 Timestamp of last price update.
91
92 =item B<difference>
93
94 The difference bitween the former price and the current price. 0 if the current price is new.
95
96 =back
97
98 =back
99
100 =head1 SEE ALSO
101
102 L<http://backpack.tf/api/prices>
103
104 =head1 AUTHOR
105
106 Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
107
108 =head1 COPYRIGHT AND LICENSE
109
110 Copyright (C) 2014, 2015 by Marius Gavrilescu
111
112 This library is free software; you can redistribute it and/or modify
113 it under the same terms as Perl itself, either Perl version 5.18.2 or,
114 at your option, any later version of Perl 5 you may have available.
115
116
117 =cut
This page took 0.02532 seconds and 3 git commands to generate.