package com.socks.jiandan.okhttp.parser; import android.support.annotation.Nullable; import com.socks.jiandan.model.Comment4FreshNews; import com.socks.jiandan.okhttp.OkHttpBaseParser; import com.socks.jiandan.utils.logger.Logger; import com.squareup.okhttp.Response; import org.json.JSONObject; import java.net.URLEncoder; import java.text.MessageFormat; /** * Created by zhaokaiqiang on 15/11/22. */ public class Push4FreshCommentParser extends OkHttpBaseParser<Boolean> { @Nullable public Boolean parse(Response response) { code = wrapperCode(response.code()); if (!response.isSuccessful()) return null; try { JSONObject resultObj = new JSONObject(response.body().string()); String result = resultObj.optString("status"); if (result.equals("ok")) { return true; } else { return false; } } catch (Exception e) { e.printStackTrace(); return false; } } /** * 包装请求参数 * * @return */ public static String getRequestURL(String post_id, String parent_id, String parent_name, String name, String email, String content) { content = MessageFormat.format("@<a href=\"#comment-{0}\">{1}</a>: {2}", parent_id, parent_name, content); return getRequestURLNoParent(post_id, name, email, content); } /** * 包装无父评论的请求参数 * * @return */ public static String getRequestURLNoParent(String post_id, String name, String email, String content) { //方法1 转义 //content= MessageFormat.format("%40%3Ca+href%3D%27%23comment-{0}%27%3E{1}%3C%2Fa%3E%3A+{2}",parent_id,parent_name, content); //方法2 URLEncoder(更优) try { name = URLEncoder.encode(name, "utf-8"); content = URLEncoder.encode(content, "utf-8"); } catch (Exception ex) { Logger.d("URLEncoder error"); } return MessageFormat.format("{0}&post_id={1}&content={2}&email={3}&name={4}", Comment4FreshNews.URL_PUSH_COMMENT, post_id, content, email, name); } }