Giter VIP home page Giter VIP logo

okhttp-preloader-interceptor's Introduction

okhttp-preloader-interceptor

An OkHttp interceptor which uses HTTP requests queue with RxJava.

flow-chart

Prerequisite

  1. Add it in your root build.gradle at the end of repositories:
allprojects {
    repositories {
    	...
        maven { url "https://jitpack.io" }
  1. Add the dependencies:
...
implementation("com.squareup.okhttp3:okhttp:4.2.x")  
implementation("io.reactivex.rxjava2:rxjava:2.x.x")
implementation("com.github.arin-pang:okhttp-preloader-interceptor:v0.1.0")
...

Adding interceptor

public static PublishSubject<HTTPPreloaderInterceptor.PreloaderInfo> 
  publishCall = PublishSubject.create();

HTTPPreloaderInterceptor preloaderInterceptor =  new HTTPPreloaderInterceptor(publishCall); 
 
OkHttpClient okHttpClient = builder  
  .addInterceptor(preloaderInterceptor)  
  .build();  

Get queued requests when requests started/stopped

private CompositeDisposable compositeDisposable = new CompositeDisposable();

private void changePreloader(HTTPPreloaderInterceptor.PreloaderInfo info){  
    if(info.isRemained()){  
        // showPreloaderUI()  
    } else {  
        // hidePreloaderUI()
    }  
}

compositeDisposable.add(  
        APIClient.publishCall.subscribe(  
                info -> {  
                    changePreloader(info);  
                }  
        )  
);

Get queued requests when requests started only

compositeDisposable.add(  
	APIClient.publishCall.ofType(HTTPPreloaderInterceptor.PreloaderRequest.class).subscribe(  
	        info -> {  
				  enqueuedRequest(info);
	        }  
	);
);

Get queued requests when requests stopped only

compositeDisposable.add(  
	APIClient.publishCall.ofType(HTTPPreloaderInterceptor.PreloaderResponse.class).subscribe(  
	        info -> {  
				  dequeuedRequest(info);
	        }
	);
);

Destroy

compositeDisposable.dispose();

Logging

HTTPPreloaderInterceptor preloaderInterceptor =  new HTTPPreloaderInterceptor(publishCallCount);  
preloaderInterceptor.logLevel(HTTPPreloaderInterceptor.LogLevel.REMAINED_REQUESTS_COUNT);  

You can change the log level at any time by calling logLevel().

To log to a custom location, pass a Logger instance to the constructor.

HttpPreloaderInterceptor logging = new HttpPreloaderInterceptor(new Logger() {
  @Override public void log(String message) {
    Timber.tag("OkHttp").d(message);
  }
});

Warning: The logs generated by this interceptor when using the REMAINED_REQUESTS or MODIFIED_REQUEST log levels have the potential to leak sensitive information such as "Authorization" or "Cookie" headers and the contents of request and response bodies. This data should only be logged in a controlled way or in a non-production environment.

okhttp-preloader-interceptor's People

Contributors

arin-pang avatar

Watchers

 avatar  avatar  avatar

okhttp-preloader-interceptor's Issues

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.