Giter Club home page Giter Club logo

Comments (2)

hoc081098 avatar hoc081098 commented on May 24, 2024 1

In AuthInterceptor, we use Mutex (see Shared mutable state and concurrency/Mutual exclusion) and check the difference between "maybe-updated-token" and "current token", to ensure there is a single refresh-token-request.

class AuthInterceptor @Inject constructor(...) : Interceptor {
  private val mutex = Mutex()

  override fun intercept(chain: Interceptor.Chain): Response {
    val currentToken = getCurrentTokenFromLocalSource()
 
    val originalResponse = ...
  
    if (!isHttpUnauthorizedCode()) {
       // ignored
       return ...
    }

    // refresh-token logic starts here...
    
    // `withLock` will only allow one `block {}` to execute 
    val newToken: String? = mutex.withLock block@{
       // `maybeUpdatedToken` can be `currentToken` or `refreshed-token by other block {}`
       val maybeUpdatedToken = getCurrentTokenFromLocalSource()
       
       when {
           // [FAILED] already logged out! -> `refresh-token-request by other block {}` failed.
          maybeUpdatedToken == null -> null
          // [SUCCESS] refreshed by another request -> `refresh-token-request by other block {}` succeed,
          // so we don't need to make another request anymore (one is enough!).
          maybeUpdatedToken != token -> maybeUpdatedToken
          // else: means other `block {}`s are blocking while this block is executing -> will make `refresh-token-request`
          else -> {
              val newToken = callRefreshTokenApi()
              if (HTTP_OK) {
                  saveToken(newToken)
                  newToken // return newToken as result
              } else if (HTTP_UNAUTHORIZED) {
                  clearUserAndToken() // means logout...
                  null
              } else {
                  // other errors, don't clearUserAndToken()
                  null 
              }
          }
    }

    return if (newToken != null) {
       retryRequestWithNewToken(newToken)
    } else {
       originalResponse
    }
  }
}

from refresh-token-sample.

lexuanquynh avatar lexuanquynh commented on May 24, 2024 1

thank you very much.

from refresh-token-sample.

Related Issues (2)

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.