Giter Club home page Giter Club logo

Comments (2)

ganigeorgiev avatar ganigeorgiev commented on June 18, 2024

The store at the moment is not persistent because the SDK is intended as generic Dart package, not just for Flutter and as noted in #13, there are too many options - localstore, std or encrypted shared_preferences, local json file, key-value store, etc.

For now this is left to the developers to handle on their own depending on what persistent store and state management they prefer to use.

You can find 2 example approaches using shared_preferences in pocketbase/pocketbase#1887 (reply in thread) (note that there is also encrypted shared_preferences). The second shown example (with the pb.authStore.onChange.listen stream) is the easier and more generic approach.

from dart-sdk.

ganigeorgiev avatar ganigeorgiev commented on June 18, 2024

Sorry, I forgot about the "and check if authorization is valid" part of the question.

To loosely check (without making request to the backend) whether a pb.authStore holds unexpired auth data, you can call pb.authStore.isValid.

To check the loaded pb.authStore auth data server-side, you can send an authRefresh() request. On invalid or expired token it returns an error, otherwise - up-to-date user data and new token with refreshed exp claim (pb.authStore is updated automatically on success).

You can also combine both to prevent sending unnecessary server-side requests like this:

try {
  pb.authStore.isValid && await pb.collection("users").authRefresh();
} catch (e) {
  // clear the store on invalid or expired data
  pb.authStore.clear();
}

from dart-sdk.

Related Issues (20)

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.