KiyonoKara / Kukoshi

A Scala HTTP client to simplify the network suite's HTTP requests and responses.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kukoshi

Release Version Scala Workflow PRs Code Size Last Commit License

Kukoshi, is a Scala library made to simplify Java's network suite for making HTTP requests and reading responses.

Overview

Kukoshi makes HTTP-based interactions simpler. This client doesn't require any boilerplate set-up or a blend of imports.

Features

  • GZIP and Deflate support for compressed responses and data.
  • Supports GET, POST, DELETE, PUT, HEAD, OPTIONS, PATCH methods.
  • Library supports headers in the form of a Map or Seq (works with collections that can be adapted as Iterable[(String, String)]).
  • Can append URL parameters to a request if they are provided in the form of a (Iterable[(String, String)]).
  • Bonus Features:
    • No external dependencies required.
    • head and options supported for headers, data returned as a Scala map.

Installation

Main (Preferred) Installation

The credentials need a token with the read:packages permission, the username field can be an empty string.

credentials += Credentials(
  realm = "GitHub Package Registry",
  host = "maven.pkg.github.com",
  userName = "",
  passwd = "<READ_PACKAGES_TOKEN>"
)

resolvers += "GitHub Package Registry (KiyonoKara/Kukoshi)" at "https://maven.pkg.github.com/KiyonoKara/Kukoshi"
libraryDependencies += "org.kiyo" %% "kukoshi" % "1.0.0"

Alternate Installation

lazy val http = RootProject(uri("git://github.com/KiyonoKara/Kukoshi.git"))
lazy val http_root = project in file(".") dependsOn http

Documentation

As a preface, there is one read-only method, which is GET. Other methods such as POST, DELETE, PUT, and PATCH are writable methods (DELETE usually doesn't require a body`).

Note: The example URL will be https://kukoshi.sc, it is not a real website nor host.

Importing

Importing the Request class of the library.

import org.kiyo.Request

Declaration

Primarily, the Kukoshi library is utilized through its Request class. There are several ways the class can be used.
Creating an instance of the Request case class.

// A regular Request instance.
val requester: Request = Request()

Optionally, you may declare the URL, method, headers and timeouts in the case class' parameters. If you declare these in the constructor, you can carry out most requests without supplying parameters to the request() function call.

Creating a Request

Read-only request examples.

// Defaults to a GET request if no method is provided.
// Example works if there is nothing provided in the request function, but in the constructor.
val requesterA: Request = Request(url = "https://kukoshi.sc")
val getA: String = requester.request()

// Works the other way around.
val requesterB: Request = Request()
val getB: String = requester.request(url = "https://kukoshi.sc")

Headers

Headers are accepted in the form of any collection extending from Iterable[(String, String)], this includes but isn't limited to Map and Seq.

// Examples for Map and Seq
val requesterWithMapHeaders: Request = Request(
  url = "https://kukoshi.sc", 
  headers = Map("Content-Type" -> "User-Agent" -> "*", "Accept" -> "*/*")
)

URL Parameters

When appending URL parameters to the request, URL parameters can only be added in request() function calls. URL parameters are taken with anything following the Iterable[(String, String)] type format.

// Requests to "https://kukoshi.sc?parameter=value"
val requesterA: Request = Request()
val requestA: String = requester.request(url = "https://kukoshi.sc", parameters = Map("parameter" -> "value"))

// Requests to "https://kukoshi.sc?parameter1=value1&parameter2=value2"
val requesterB: Request = Request()
val requestB: String = requester.request(url = "https://kukoshi.sc", parameters = Map("parameter1" -> "value1", "parameter2" -> "value2"))

Writable Requests

Writable requests generally require the request() function to be used since data can only be provided through it.

// POST request example, similar requests like this can be made for DELETE, PUT, and PATCH. 
// Be sure to include headers if the APIs you are requesting to require them.
val requester: Request = Request()
val POST: String = requester.request(url = "https://kukoshi.sc", method = "POST", data = "{\"key\": \"value\"}")

Alternative HTTP Methods

head and options are HTTP methods that don't return bodies or response data. Only the headers are intended to be accessed. The Request case class has both of these methods as functions, and use the URL and headers (following the type format). Both return a Scala map as Map[String, List[String]]

HEAD request.

val req = Request("https://kukoshi.sc", Map("Authorization" -> "authorization_token_here"))
val resHeaders: Map[String, List[String]] = req.head()

OPTIONS request.

val req = Request("https://kukoshi.sc", Map("Authorization" -> "authorization_token_here"))
val resHeaders: Map[String, List[String]] = req.options()

Contributing

Read about contributing here.

About

A Scala HTTP client to simplify the network suite's HTTP requests and responses.

License:Apache License 2.0


Languages

Language:Scala 100.0%