Convert error responses to a specific Model - Chopper flutter

2.2k Views Asked by At

i use chopper client for make http requests

I written a api, and it have to types of response: success with this format:

{
    "id": 1,
    "title": "Most Popular phone in the world !",
    "image": "/uploads/poll_images/D6voYQriTCSZpMIe.jpg",
    "submits": 2,
    "views": 52,
    "description": "There are many phone on the world, if you are buyer which one will you buy ?",
    "date": {
        "date": "2020.4.13",
        "time": "12:02"
    },
    "comments": 0,
    "options": [
        {
            "id": 1,
            "position": 1,
            "title": "iPhone 11 pro Max",
            "votes": 1
        },
        {
            "id": 2,
            "position": 2,
            "title": "Samsung S20+ Ultra",
            "votes": 1
        }
    ],
    "selected": 2
}

the error response with status code 400 and this format:

{
    "msg": "Your login session expired! please login again"
}

i follow this and create a buildValue converter for my response.

every thing is fine and response convert to data model successfully but i dont know how to handle my error responses !

this is my create method:

static ApiService create() {
    if (instance == null) {
      instance = ChopperClient(
        baseUrl: Commons.baseURL,
        services: [_$ApiService()],
        interceptors: [HttpLoggingInterceptor()],
        converter: BuiltValueConverter(),
        errorConverter: BuiltValueConverter(),
      );
    }
    return _$ApiService(instance);
  }

request method:

@Get(path: 'poll/getSingle/{id}')
  Future<Response<PollSingle>> getPollSingle({@Path('id') int pollId , @Query('client_id') int clientId});

built value converter:

class BuiltValueConverter extends JsonConverter {
  final jsonSerializers =
      (serializers.toBuilder()..addPlugin(StandardJsonPlugin())).build();

  T _deserializer<T>(dynamic value) => jsonSerializers.deserializeWith(
        jsonSerializers.serializerForType(T),
        value,
      );

  @override
  Response<ResultType> convertResponse<ResultType, Item>(Response response) {
    final jsonResponse = super.convertResponse(response);
    final body = _decode<Item>(jsonResponse.body);

    return jsonResponse.copyWith<ResultType>(body: body);
  }

  dynamic _decode<T>(entity) {
    print(entity);
    if (entity is T) return entity;

    try {
      if (entity is List) return _deserializeListOf<T>(entity);
      return _deserializer<T>(entity);
    } catch (e) {
      print(e);
      return null;
    }
  }

  BuiltList<T> _deserializeListOf<T>(Iterable value) => BuiltList(
        value.map((value) => _deserializer<T>(value)).toList(growable: true),
      );
}

how can i handle error responses ?

1

There are 1 best solutions below

0
On

Turns out it's really easy to achieve this. Spent 2 days trying to figure it out though. So in your PollSingle add the extra server response msg as

@nullable
String get msg;

Then in wherever you are handling your logic, check whether the server request was successful or not. Assuming your response is stored in response variable,

var response = ApiService.create().getPollSingle('id', 'client_id');
if (! response.isSuccessful && response.statusCode == 400) {
    var errors = response.error as PollSingle;
    print(errors);
}

You should get

PollSingle {
   msg=Your login session expired! please login again,
}

So you can easily do errors.msg