Giter Club home page Giter Club logo

http_reflector's Introduction

HTTP Reflector

HTTP Reflector is a web server allowing you to check the availability of other web servers. The name is not perfect. It is not actually "reflecting" your request but rather checking a given URL for availability .

Usage

Start the server:

$ ./server.py --port 8080

Run the client:

$ ./client.py --debug http://localhost:8080 http://google.com
HTTP request to http://localhost:8080/check/http%3A//google.com
{'length': 17532, 'code': 200, 'status': 'success'}
The server is reachable!
$ echo $?
0
$ ./client.py --debug http://localhost:8080 http://gogogo.com
HTTP request to http://localhost:8080/check/http%3A//gogogo.com
{'details': 'HTTP Error 403: Forbidden', 'kind': 'urllib.error.URLError', 'status': 'error'}
The server is not reachable!
$ echo $?
128

ToDO

  • Limit requests to 20 per minute?
  • Limit IP range?

Alternative Implementations

Instead of returning JSON containing the information, you could just as well replicate the HTTP status of the contacted server. This would allow simple use from any client without the Python tool but with standard curl commands and exit codes.
An extra URL could possibly provide this service.

Resources

http_reflector's People

Contributors

pklaus avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.