package Monitis::Agents; use warnings; use strict; require Carp; use base 'Monitis'; sub get { my ($self, @params) = @_; my @mandatory = qw//; my @optional = qw/keyRegExp/; my $params = $self->prepare_params(\@params, \@mandatory, \@optional); return $self->api_get('agents' => $params); } sub info { my ($self, @params) = @_; my @mandatory = qw/agentId/; my @optional = qw/loadTests/; my $params = $self->prepare_params(\@params, \@mandatory, \@optional); return $self->api_get('agentInfo' => $params); } sub get_all_agents_snapshot { my ($self, @params) = @_; my @mandatory = qw//; my @optional = qw/platform timezone tag/; my $params = $self->prepare_params(\@params, \@mandatory, \@optional); return $self->api_get('allAgentsSnapshot' => $params); } sub get_agents_snapshot { my ($self, @params) = @_; my @mandatory = qw/agentKey/; my @optional = qw/timezone/; my $params = $self->prepare_params(\@params, \@mandatory, \@optional); return $self->api_get('agentSnapshot' => $params); } sub delete { my ($self, @params) = @_; my @mandatory = qw//; my @optional = qw/agentIds keyRegExp/; my $params = $self->prepare_params(\@params, \@mandatory, \@optional); return $self->api_post('deleteAgents' => $params); } sub download { my ($self, @params) = @_; my @mandatory = qw/platform/; my @optional = qw//; my $params = $self->prepare_params(\@params, \@mandatory, \@optional); my $request = $self->build_post_request('downloadAgent' => $params); my $response = $self->ua->request($request); my $type = $response->header('Content-Type'); # Error handling if ($type =~ /^text/) { return $self->parse_response($response); } elsif (!$response->is_success) { return {status => "Network error: '" . $response->status_line . "'"}; } elsif ($type ne 'application/file') { return {status => "Wrong content-type: '$type'"}; } my $content = $response->decoded_content; my $windows; # Look for platform name in parameters for (my $i = 0; $i <= $#$params; $i += 2) { next unless $params->[$i] eq 'platform'; # Detect platform $windows = $params->[$i + 1] =~ /^win/i; last; } if (!$windows) { # Check GZIP header for non-Windows platforms return unless substr($content, 0, 2) eq chr(31) . chr(139); } elsif ($windows) { # Check ZIP header for Windows platforms return unless unpack 'L4', substr($content, 0, 4) == 0x04034b50; } $content; } __END__ =head1 NAME Monitis::Agents - Agents manipulation =head1 SYNOPSIS use Monitis::Agents; =head1 DESCRIPTION =head1 ATTRIBUTES L implements following attributes: =head1 METHODS L implements following methods: =head2 get my $response = $api->agents->get; Retuirns list of agents. Optional parameters: keyRegExp Normal response is: [ { "key" => "LinAgent_11", "platform" => "LINUX", "status" => "running", "id" => 1985, "processes" => [ "init", # ... ], "drives" => [ "\/(\/dev\/sda3|ext3)", # ... ] } ] =head2 info my $response = $api->agents->get_agent_info; Retuirns agent info. Mandatory parameters: agentId Optional parameters: loadTests Response: Please, refer to documentation: L =head2 get_all_agents_snapshot my $response = $api->agents->get_all_agents_snapshot; Retuirns all agent info. Optional parameters: platform timezone tag Response: Please, refer to documentation: L =head2 get_agents_snapshot my $response = $api->agents->get_agents_snapshot(agentKey => 'linux_test_aent'); Retuirns agent info. Mandatory parameters: agentKey Optional parameters: timezone Response: Please, refer to documentation: L =head2 delete my $response = $api->agents->delete(agentIds => '12345;12346'); Delete agents. Mandatory parameters: agentIds or keyRegExp required Normal response is: {"status" => "ok"} =head2 download my $response = $api->agents->download(platform => 'linux32'); if (ref $response) { die "Error: " . $response->{status}; } Download agent archive. Mandatory parameters: platform - linux32, linux64, win32, Sun8632, FBSD32, FBSD64. Returns archive content in case of success. Otherwise returns hashref with status message. =head1 SEE ALSO L Official API page: L =head1 AUTHOR Yaroslav Korshak C<< >> Alexandr Babenko C<< >> =head1 LICENCE AND COPYRIGHT Copyright (C) 2006-2011, Monitis Inc. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L. =head1 DISCLAIMER OF WARRANTY BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.