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
|
# Copyright (c) 2011 CentralNic Ltd. All rights reserved. This program is
# free software; you can redistribute it and/or modify it under the same
# terms as Perl itself.
# $Id: PollTransfers.pm,v 1.5 2011/05/13 13:31:49 gavin Exp $
package WWW::CNic::Response::PollTransfers;
use vars qw($VERSION);
=pod
=head1 NAME
WWW::CNic::Response::PollTransfers - a WWW::CNic::Response object for WWW::CNic::Response.
=head1 SYNOPSIS
use WWW::CNic;
my $query = WWW::CNic->new( OPTIONS );
$query->set( PARAMETERS );
my $response = $query->execute();
=head1 DESCRIPTION
Response module for listing all pending domain transfers via the CentralNic Toolkit (http://toolkit.centralnic.com/). This module inherits all but one of its methods from the base class, I<WWW::CNic::Response>.
=head1 METHODS
my @transfers = $response->transfers;
This returns an array of hashrefs containing information about a transfer. The hashref has the following keys:
domain
initiated (timestamp)
actiondate (timestamp)
auto (integer)
gaining_id (only present for outgoing transfers)
gaining_email (only present for outgoing transfers)
losing_id (only present for incoming transfers)
losing_email (only present for incoming transfers)
type (in or out)
=head1 COPYRIGHT
This module is (c) 2011 CentralNic Ltd. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
=over
=item *
http://toolkit.centralnic.com/
=item *
L<WWW::CNic::Response>
=item *
L<WWW::CNic>
=back
=cut
use WWW::CNic::Response;
@ISA = qw(WWW::CNic::Response);
use strict;
sub transfers {
my $self = shift;
my @transfers;
foreach my $key (grep { /^domain=/ } $self->keys) {
my $info = $self->response($key);
$info->{type} = $info->{':type'};
delete($info->{':type'});
$key =~ s/^domain=//g;
$info->{domain} = $key;
push(@transfers, $info);
}
return @transfers;
}
1;
|