Bump version and update Changes
[webservice-strike.git] / lib / WebService / Strike.pm
CommitLineData
27da1d36
MG
1package WebService::Strike;
2
3use 5.014000;
4use strict;
5use warnings;
6use parent qw/Exporter/;
7
9373f0ad
MG
8our @EXPORT = qw/strike strike_search/; ## no critic (ProhibitAutomaticExportation)
9our @EXPORT_OK = qw/strike_query strike strike_search/;
b1241fec 10our $VERSION = '0.003';
95b1c120 11our $BASE_URL = 'http://getstrike.net/api/v2/torrents';
27da1d36
MG
12
13use JSON::MaybeXS qw/decode_json/;
14use HTTP::Tiny;
15use Sort::ByExample qw/sbe/;
16use WebService::Strike::Torrent;
17
18sub _ht { HTTP::Tiny->new(agent => "WebService-Strike/$VERSION") }
19
9373f0ad
MG
20sub _query {
21 my ($url) = @_;
22
27da1d36
MG
23 my $ht = _ht;
24 my $response = $ht->get($url);
25 die $response unless $response->{success}; ## no critic (RequireCarping)
26 $response = decode_json $response->{content};
27
95b1c120 28 map { WebService::Strike::Torrent->new($_) } @{$response->{torrents}};
9373f0ad
MG
29}
30
31sub strike_query {
32 my (@hashes) = @_;
0e74b120
MG
33 if (@hashes > 50) {
34 return strike_query (@hashes[0 .. 49]), strike_query (@hashes[50 .. $#hashes]);
35 }
9373f0ad
MG
36 my $url = "$BASE_URL/info/?hashes=" . join ',', map { uc } @hashes;
37
27da1d36 38 my $sorter = sbe(\@hashes, {xform => sub { $_[0]->hash }});
9373f0ad
MG
39 my @torrents = $sorter->(_query $url);
40 wantarray ? @torrents : $torrents[0]
41}
42
43sub strike_search {
44 my ($query, $full, %args) = @_;
95b1c120 45 $args{phrase} = $query;
9373f0ad
MG
46 my $url = "$BASE_URL/search/?" . HTTP::Tiny->www_form_urlencode(\%args);
47
48 my @torrents = _query $url;
49 @torrents = $torrents[0] unless wantarray;
50 @torrents = strike_query map { $_->hash } @torrents if $full;
27da1d36
MG
51 wantarray ? @torrents : $torrents[0]
52}
53
54BEGIN { *strike = \&strike_query }
55
561;
57__END__
58
59=encoding utf-8
60
61=head1 NAME
62
63WebService::Strike - Get torrent info from getstrike.net API
64
65=head1 SYNOPSIS
66
67 use WebService::Strike;
68 my $t = strike 'B425907E5755031BDA4A8D1B6DCCACA97DA14C04';
69 say $t->title; # Arch Linux 2015.01.01 (x86\/x64)
70 say $t->magnet; # Returns a magnet link
71 my $torrent = $t->torrent; # Returns the torrent file
72 $t->torrent('file.torrent'); # Downloads the torrent file to 'file.torrent'
73
9373f0ad
MG
74 my @debian = strike_search 'Debian';
75 say 'Found ' . @debian . ' torrents matching "Debian"';
76 say 'First torrent has info hash ' . $debian[0]->hash;
77
95b1c120 78 my $mp = strike_search 'Modern perl', 1, category => 'Books';
9373f0ad
MG
79 say 'Torrent has ' . $mp->count . ' files. They are:';
80 say join ' ', @{$mp->file_names};
81
27da1d36
MG
82=head1 DESCRIPTION
83
84Strike API is a service for getting information about a torrent given
85its info hash. WebService::Strike is a wrapper for this service.
86
87=over
88
89=item B<strike>(I<@info_hashes>)
90
9373f0ad
MG
91Returns a list of L<WebService::Strike::Torrent> objects in list
92context or the first such object in scalar context. Dies in case of
93error.
27da1d36
MG
94
95=item B<strike_query>
96
97Alias for B<strike>. Not exported by default.
98
95b1c120 99=item B<strike_search>(I<$phrase>, [I<$full>, [ key => value ... ]])
9373f0ad 100
95b1c120 101Searches for torrents given a phrase. Returns a list of
9373f0ad
MG
102L<WebService::Strike::Torrent> objects in list context or the first
103such object in scalar context.
104
105If I<$full> is false (default), the returned objects will be
106incomplete: their B<file_names> and B<file_lengths> accessors will
107return undef.
108
109If I<$full> is true, B<strike> will be called with the info hashes of
110the found torrents, thus obtaining complete objects.
111
95b1c120
MG
112You can filter the search by appending key => value pairs to the call.
113For example:
114
115 strike_search 'windows', 0, category => 'Applications', sub_category => 'Windows';
116
27da1d36
MG
117=back
118
119=head1 SEE ALSO
120
121L<WebService::Strike::Torrent>, L<http://getstrike.net/api/>, L<WWW::Search::Torrentz>
122
123=head1 AUTHOR
124
125Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
126
127=head1 COPYRIGHT AND LICENSE
128
129Copyright (C) 2015 by Marius Gavrilescu
130
131This library is free software; you can redistribute it and/or modify
132it under the same terms as Perl itself, either Perl version 5.20.2 or,
133at your option, any later version of Perl 5 you may have available.
134
135
136=cut
This page took 0.01812 seconds and 4 git commands to generate.