This file is indexed.

/usr/share/perl5/Net/Akamai/RequestData.pm is in libnet-akamai-perl 0.15-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
package Net::Akamai::RequestData;

use Moose;
use MooseX::AttributeHelpers;
use SOAP::Lite;
use Net::Akamai::RequestData::Types;

=head1 NAME
    
Net::Akamai::RequestData - Object to hold request data 
    
=head1 DESCRIPTION

Data container for an akamai purge request

=cut

=head1 Attributes

=head2 user 

akamai login user

=cut
has 'user' => (
	is => 'rw', 
	isa => 'Str',
	required => 1,
);

=head2 pwd 

password of the akamai user

=cut
has 'pwd' => (
	is => 'rw', 
	isa => 'Str',
	required => 1,
);

=head2 network 

akamai network (do not change)

=cut
has 'network' => (
	is => 'ro', 
	isa => 'Str',
	default => 'ff',
);

=head2 ptype 

akamai purge type (cpcode|arl)

=cut
has 'ptype' => (
	is => 'ro', 
	isa => 'Net::Akamai::RequestData::Types::PurgeType',
	default => 'arl',
	predicate => 'has_ptype',
);

=head2 action 

default akamai purge action (invalidate|remove)

=cut
has 'action' => (
	is => 'ro', 
	isa => 'Net::Akamai::RequestData::Types::PurgeAction',
	predicate => 'has_action',
	default => 'remove',
);

=head2 email 

email purge request will be sent to

=cut
has 'email' => (
	is => 'rw', 
	isa => 'Str',
	predicate => 'has_email',
);

=head2 urls 

array of urls to purge

=cut
has 'urls' => (
	metaclass => 'Collection::Array',
	is        => 'rw',
	isa       => 'ArrayRef[Object]',
	default   => sub { [] },
	provides  => {
		'push' => 'add_url',
		'pop'  => 'remove_last_url',
	},
);

around 'add_url' => sub { 
	my $next = shift; 
	my $self = shift;
	my $arg = shift; 

	my $soap_data = SOAP::Data->type('string')->value($arg);
	$self->$next($soap_data, @_);
};

=head2 options 

array of soap options 

=cut

has 'options' => (
	is        => 'rw',
	isa       => 'Net::Akamai::RequestData::Types::PurgeOptionsArrayRef',
	coerce    => 1,
	lazy_build => 1,
);

sub _build_options {
	my $self = shift;
	my @ret;

	push @ret, "email-notification=".$self->email if $self->has_email;
	push @ret, "type=".$self->ptype;
	push @ret, "action=".$self->action;
	# This terminates this list of options and insures the options array is not null
	push @ret, "";
	\@ret;
};

=head1 AUTHOR

John Goulah  <jgoulah@cpan.org>

=head1 LICENSE

This library is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut


1;