NAME

HON::Http::UrlChecker::Service - HTTP Status Code Checker

VERSION

Version 0.02

SYNOPSIS

use HON::Http::UrlChecker::Service;

my @listOfStatus = checkUrl('http://www.example.com');

DESCRIPTION

Check status code, response headers, redirect location and redirect chain of a HTTP connection.

SUBROUTINES/METHODS

checkUrl( $url )

Check a url (status code, response headers, redirect location and redirect chain).

PRIVATE SUBROUTINES/METHODS

p_createUserAgent

Return a LWP::UserAgent. LWP::UserAgent objects can be used to dispatch web requests.

p_getUrl

Dispatch a GET request on the given $url The return value is a response object. See HTTP::Response for a description of the interface it provides.

p_retrieveInfo

Retrieve desired fields from an HTTP::Response

p_parseResponse

Retrieve a list of Status from HTTP::Response

p_isUrlAllowed

Check if the url is formatted correctly

AUTHOR

William Belle, <william.belle at gmail.com>

BUGS AND LIMITATIONS

Please report any bugs or feature requests to bug-hon-http-urlchecker-service at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=HON-Http-UrlChecker-Service. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc HON::Http::UrlChecker::Service

You can also look for information at:

LICENSE AND COPYRIGHT

Copyright 2016 William Belle.

This program is distributed under the MIT (X11) License: http://www.opensource.org/licenses/mit-license.php

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.