All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dart-jaguar.auth.auth.mustache Maven / Gradle / Ivy

There is a newer version: 3.0.0-rc1
Show newest version
import 'dart:async';

import 'package:jaguar_retrofit/jaguar_retrofit.dart';

abstract class AuthInterceptor extends Interceptor {
    /*
     * Get auth information on given route for the given type
     * Can return null if type is not present on auth data or if route doesn't need authentication
     */
    List> getAuthInfo(RouteBase route, String type) {
        if (route.metadataMap.containsKey("auth")) {
            final auth = route.metadataMap["auth"];
            List> results = [];
            for (var info in auth) {
                if(info["type"] == type) {
                    results.add(info);
                }
            }
            return results;
        }
        return [];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy