00:00
一开始就不多说废话了,主要因为工作时遇到了一些使用 OkHttp 拦截器的问题,所以在此特写这篇以作记录。
现如今,做 Android 开发在选择网络框架时,大多数都会首推 Retrofit 。Retrofit 以其简洁优雅的代码俘获了大多数开发者的心。
然而 Retrofit 内部请求也是基于 OkHttp 的,所以在做一些自定义修改 HTTP 请求时,需要对 OkHttp 拦截器具有一定了解。OkHttp 内部是使用拦截器来完成请求和响应的,利用的是责任链设计模式。所以可以说,拦截器是 OkHttp 的精髓所在。
那么接下来,我们就通过一些例子来学习怎样编写 OkHttp 的拦截器吧,其实这些例子也正是之前我遇到的情景。
00:01
假设现在后台要求我们在请求 API 接口时,都在每一个接口的请求头上添加对应的 token 。使用 Retrofit 比较多的肯定会条件反射出以下代码:
1 2 3
| @FormUrlEncoded @POST("/mobile/login.htm") Call<ResponseBody> login(@Header("token") String token, @Field("mobile") String phoneNumber, @Field("smsCode") String smsCode);
|
这样的写法自然可以,无非就是每次调用 login API 接口时都把 token 传进去而已。但是需要注意的是,假如现在有十多个 API 接口,每一个都需要传入 token ,难道我们去重复一遍又一遍吗?
相信有良知的程序员都会拒绝,因为这会导致代码的冗余。
那么有没有好的办法可以一劳永逸呢?答案是肯定的,那就要用到拦截器了。
代码很简单:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| public class TokenHeaderInterceptor implements Interceptor {
@Override public Response intercept(Chain chain) throws IOException { String token = AppService.getToken(); Request originalRequest = chain.request(); Request updateRequest = originalRequest.newBuilder() .header("token", token) .build(); return chain.proceed(updateRequest); }
}
|
我们先拦截得到 originalRequest ,然后利用 originalRequest 生成新的 updateRequest ,再交给 chain 处理进行下一环。
最后,在 OkHttpClient 中使用:
1 2 3 4 5 6
| OkHttpClient client = new OkHttpClient.Builder() .addNetworkInterceptor(new TokenHeaderInterceptor()) .build();
Retrofit retrofit = new Retrofit.Builder().baseUrl(BuildConfig.BASE_URL) .client(client).addConverterFactory(GsonConverterFactory.create()).build();
|
改变请求体
除了增加请求头之外,拦截器还可以改变请求体。
假设现在我们有如下需求:在上面的 login 接口基础上,后台要求我们传过去的请求参数是要按照一定规则经过加密的。
规则如下:
- 请求参数名统一为content;
- content值:JSON 格式的字符串经过 AES 加密后的内容;
举个例子,根据上面的 login 接口,现有
1
| {"mobile":"157xxxxxxxx", "smsCode":"xxxxxx"}
|
JSON 字符串,然后再将其加密。最后以 content=[加密后的 JSON 字符串] 方式发送给后台。
看完了上面的 TokenHeaderInterceptor
之后,这需求对于我们来说可以算是信手拈来:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| public class RequestEncryptInterceptor implements Interceptor {
private static final String FORM_NAME = "content"; private static final String CHARSET = "UTF-8";
@Override public Response intercept(Chain chain) throws IOException { Request request = chain.request(); RequestBody body = request.body(); if (body instanceof FormBody) { FormBody formBody = (FormBody) body; Map<String, String> formMap = new HashMap<>(); for (int i = 0; i < formBody.size(); i++) { formMap.put(formBody.name(i), formBody.value(i)); } Gson gson = new Gson(); String jsonParams = gson.toJson(formMap); String encryptParams = AESCryptUtils.encrypt(jsonParams.getBytes(CHARSET), AppConstant.getAESKey()); body = new FormBody.Builder().add(FORM_NAME, encryptParams).build(); } if (body != null) { request = request.newBuilder() .post(body) .build(); } return chain.proceed(request); } }
|
最后,自定义拦截器的使用情景通常是对所有网络请求作统一处理。如果下次你也碰到这种类似的需求,可以使用自定义拦截器。
00:02
呃呃呃,按道理来讲应该要结束了。
但是,我在这里开启一个番外篇吧,不过目标不是针对拦截器而是 ConverterFactory 。
还是后台需求,login 接口返回的数据也是经过 AES 加密的。所以需要我们针对所有响应体都做解密处理。
另外,还有很重要的一点,就是数据正常和异常时返回的 JSON 格式不一致。
在业务数据正常的时候(即 code 等于 200 时):
1 2 3 4 5 6 7 8
| { "code":200, "msg":"请求成功", "data":{ "nickName":"Hello", "userId": "1234567890" } }
|
业务数据异常时(即 code 不等于 200 时):
1 2 3 4 5
| { "code":7008, "msg":"用户名或密码错误", "data":"用户名或密码错误" }
|
而这会在使用 Retrofit 自动从 JSON 转化为 bean 类时报错。因为 data 中的正常数据中是 JSON ,而另一个异常数据中是字符串。
那么,如何解决上述的两个问题呢?
利用 自定义 ConverterFactory !!
我们先创建包名 retrofit2.converter.gson
,为什么要创建这个包名呢?
因为自定义的 ConverterFactory 需要继承 Converter.Factory ,而 Converter.Factory 类默认是包修饰符。
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| public final class CustomConverterFactory extends Converter.Factory {
private final Gson gson;
public static CustomConverterFactory create() { return create(new Gson()); }
@SuppressWarnings("ConstantConditions") public static CustomConverterFactory create(Gson gson) { if (gson == null) throw new NullPointerException("gson == null"); return new CustomConverterFactory(gson); } private CustomConverterFactory(Gson gson) { this.gson = gson; }
@Override public Converter<ResponseBody, ?> responseBodyConverter(Type type, Annotation[] annotations, Retrofit retrofit) { TypeAdapter<?> adapter = gson.getAdapter(TypeToken.get(type)); return new CustomResponseConverter<>(gson, adapter); }
@Override public Converter<?, RequestBody> requestBodyConverter(Type type, Annotation[] parameterAnnotations, Annotation[] methodAnnotations, Retrofit retrofit) { TypeAdapter<?> adapter = gson.getAdapter(TypeToken.get(type)); return new GsonRequestBodyConverter<>(gson, adapter); }
}
|
从代码中可知,CustomConverterFactory
内部是根据 CustomResponseConverter
来转化 JSON 的,这才是我们的重点。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| class CustomResponseConverter<T> implements Converter<ResponseBody, T> {
private final Gson gson; private final TypeAdapter<T> adapter; private static final String CODE = "code"; private static final String DATA = "data";
CustomResponseConverter(Gson gson, TypeAdapter<T> adapter) { this.gson = gson; this.adapter = adapter; }
@Override public T convert(ResponseBody value) throws IOException { try { String originalBody = value.string(); String body = AESCryptUtils.decrypt(originalBody, AppConstant.getAESKey()); JSONObject json = new JSONObject(body); int code = json.optInt(CODE); if (code != 200) { Map<String, String> map = gson.fromJson(body, new TypeToken<Map<String, String>>() { }.getType()); map.put(DATA, null); body = gson.toJson(map); } return adapter.fromJson(body); } catch (Exception e) { throw new RuntimeException(e.getMessage()); } finally { value.close(); } } }
|
最后就是使用了 CustomConverterFactory
:
1 2 3 4 5 6
| OkHttpClient client = new OkHttpClient.Builder() .addNetworkInterceptor(new TokenHeaderInterceptor()) .addInterceptor(new RequestEncryptInterceptor()) .build(); Retrofit retrofit = new Retrofit.Builder().baseUrl(BuildConfig.BASE_URL) .client(client).addConverterFactory(CustomConverterFactory.create()).build();
|