File Coverage

blib/lib/Net/IP/Identifier/Plugin/Twitter.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition 1 3 33.3
subroutine 6 6 100.0
pod 1 2 50.0
total 26 29 89.6


line stmt bran cond sub pod time code
1             #===============================================================================
2             # PODNAME: Net::IP::Identifier::Plugin::Twitter
3             # ABSTRACT: identify Twitter (AS13414 AS35995 AS54888) owned IP addresses
4             #
5             # AUTHOR: Reid Augustin (REID)
6             # EMAIL: reid@hellosix.com
7             # CREATED: Sun Oct 12 19:32:46 PDT 2014
8             #===============================================================================
9              
10 1     1   30 use 5.008;
  1         4  
  1         48  
11 1     1   5 use strict;
  1         3  
  1         45  
12 1     1   6 use warnings;
  1         231  
  1         58  
13              
14             package Net::IP::Identifier::Plugin::Twitter;
15              
16 1     1   7 use Role::Tiny::With;
  1         2  
  1         205  
17             with qw( Net::IP::Identifier_Role );
18              
19             our $VERSION = '0.110'; # VERSION
20              
21             sub new {
22 1     1 1 4 my ($class, %opts) = @_;
23              
24 1         2 my $self = {};
25 1   33     9 bless $self, (ref $class || $class);
26              
27             # List of known Twitter (AS13414 AS35995 AS54888) IP blocks as of May 2015.
28 1         5 $self->ips(
29             # 10 Network Blocks
30             # extending 8.25.194.0/23 to include 8.25.196.0/23
31             '8.25.194.0-8.25.197.255',
32             '185.45.4.0/22',
33             '192.133.76.0/22',
34             '199.16.156.0/22',
35             '199.59.148.0/22',
36             '199.96.56.0/21',
37             '209.170.99.0/24',
38             '2400:6680::/32',
39             '2620:fe::/40',
40             '2a04:9d40::/29',
41             );
42 1         11 return $self;
43             }
44              
45             sub name {
46 3     3 0 13 return 'Twitter';
47             }
48              
49             1;
50              
51             __END__