chRyNaN / uri

A Kotlin Multiplatform Utility Library for Uniform Resource Identifiers (URIs)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

uri

A Kotlin Multi-platform Utility Library for Uniform Resource Identifiers (URIs).
GitHub tag (latest by date)

Uri.fromString("https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top")

Using the library

Consider the following Uri: https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top

Creating a Uri:

Uri.fromParts(
    scheme = "https",
    fragment = "top",
    path = "/forum/questions/",
    query = "tag=networking&order=newest",
    userInfo = "john.doe",
    host = "www.example.com",
    port = 123
)

Creating an optional Uri:

If an error is encountered with the Uri.fromParts function, then an exception is thrown. Instead of throwing an exception, null can be returned, using the Uri.fromPartsOrNull function.

Uri.fromPartsOrNull(
    scheme = "https",
    fragment = "top",
    path = "/forum/questions/",
    query = "tag=networking&order=newest",
    userInfo = "john.doe",
    host = "www.example.com",
    port = 123
)

Creating a Uri from a String:

This library has a typealias, UriString, which is just a String. A UriString can be parsed and turned into a Uri .

Uri.fromString(uriString = "https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top")

Creating an optional Uri from a String:

If an error is encountered with the Uri.fromString function, then an exception is thrown. Instead of throwing an exception, null can be returned, using the Uri.fromStringOrNull function.

Uri.fromStringOrNull(uriString = "https://john.doe@www.example.com:123/forum/questions/?tag=networking&order=newest#top")

Building

The library is provided through Repsy.io. Refer to the releases page for the latest version.
GitHub tag (latest by date)

Repository

repositories {
    maven { url = "https://repo.repsy.io/mvn/chrynan/public" }
}

Dependencies

implementation("com.chrynan.uri:uri-core:$VERSION")
implementation("com.chrynan.uri:uri-ktor-client:$VERSION")

Documentation

More detailed documentation is available in the docs folder. The entry point to the documentation can be found here.

License

Copyright 2021 chRyNaN

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

A Kotlin Multiplatform Utility Library for Uniform Resource Identifiers (URIs)

License:Apache License 2.0


Languages

Language:Kotlin 100.0%