Skip to content

VRGsoftUA/Kotlin-Link-Parser

Repository files navigation

Kotlin Link Parser

Here is our implementation of Link Preview written in Kotlin with RxKotlin2

Usage

Include the library as local library project.

allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

dependencies {

  implementation 'com.github.VRGsoftUA:Kotlin-Link-Parser:1.0.0'
}

Initialize LinkCrawler:

val crawler = LinkCrawler()

If you need to do something before parsing url, you can use the preload callback:

crawler.onPreload {
    // Do something
}

To start parsing you need to use crawler.parseUrl and pass desired url, it returns Flowable<Result>:

val subscription = 
  crawler.parseUrl("https://github.com").subscribe { t ->
      mBinding.content = t.result
  }
  
subscription.dispose() // avoid leaks

Result object contains ParseContent field which contains all parsed data of passed url, such as title, description etc.

License

Copyright 2018 VRG Soft

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.