Giter Site home page Giter Site logo

cactoos-http's Introduction

Donate via Zerocracy

EO principles respected here Managed by Zerocracy DevOps By Rultor.com We recommend IntelliJ IDEA

Build Status Javadoc PDD status Maven Central License

Test Coverage SonarQube

Cactoos-HTTP is a experimental HTTP client, fully object-oriented.

These are the design principles behind Cactoos-HTTP.

All you need is this:

<dependency>
  <groupId>org.cactoos</groupId>
  <artifactId>cactoos-http</artifactId>
  <version><!-- Get it here: https://github.com/yegor256/cactoos-http/releases --></version>
</dependency>

Java version required: 1.8+.

StackOverflow tag is cactoos.

We are well aware of competitors (most likely they are more powerful than our client, but less object-oriented):

How to use

Ht stands for HTTP. We are not using Http just in order to look a bit different than all other libraries.

To make a simple HTTP GET request and read its body:

String body = new TextOf(
  new HtBody(
    new HtResponse(
      "http://www.google.com"
    )
  )
).asString();

This one sends a PUT request with a multi-part form and reads back some headers and the response code (mind the usage of StickyInput):

Input head = new StickyInput(
  new HtHead(
    new HtResponse(
      new HtWire("www.example.com"),
      new JoinedText(
        "\n\r",
        "PUT / HTTP/1.1",
        "Host: www.example.com"
      ).asString()
    )
  )
);
int status = new HtStatus(head).intValue();
Map<String, String> headers = new HtHeaders(head);

Questions

Ask your questions related to cactoos library on Stackoverflow with cactoos tag.

How to contribute?

Just fork the repo and send us a pull request.

Make sure your branch builds without any warnings/issues:

mvn clean install -Pqulice

License (MIT)

Copyright (c) 2018 Yegor Bugayenko

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 NON-INFRINGEMENT. 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.

cactoos-http's People

Contributors

baybatu avatar krzyk avatar llorllale avatar paulodamaso avatar rultor avatar victornoel avatar vssekorin avatar yegor256 avatar

Watchers

 avatar  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.