/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.*/
/**parser for response
* @author Lemon
* @see #getObject
* @see #getList
* @use JSONResponse response = new JSONResponse(json);
*
User user = response.getObject(User.class);//not a must
*
List commentList = response.getList("Comment[]", Comment.class);//not a must
*/
//ç¶æä¿¡æ¯ï¼éGET请æ±è·å¾çä¿¡æ¯<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
const CODE_SUCCESS = 200; //æå
const CODE_UNSUPPORTED_ENCODING = 400; //ç¼ç é误
const CODE_ILLEGAL_ACCESS = 401; //æéé误
const CODE_UNSUPPORTED_OPERATION = 403; //ç¦æ¢æä½
const CODE_NOT_FOUND = 404; //æªæ¾å°
const CODE_ILLEGAL_ARGUMENT = 406; //åæ°é误
const CODE_NOT_LOGGED_IN = 407; //æªç»å½
const CODE_TIME_OUT = 408; //è¶
æ¶
const CODE_CONFLICT = 409; //éå¤ï¼å·²åå¨
const CODE_CONDITION_ERROR = 412; //æ¡ä»¶é误ï¼å¦å¯ç é误
const CODE_UNSUPPORTED_TYPE = 415; //ç±»åé误
const CODE_OUT_OF_RANGE = 416; //è¶
åºèå´
const CODE_NULL_POINTER = 417; //对象为空
const CODE_SERVER_ERROR = 500; //æå¡å¨å
é¨é误
const MSG_SUCCEED = "success"; //æå
const MSG_SERVER_ERROR = "Internal Server Error!"; //æå¡å¨å
é¨é误
const KEY_CODE = "code";
const KEY_MSG = "msg";
const KEY_ID = "id";
const KEY_ID_IN = KEY_ID + "{}";
const KEY_COUNT = "count";
const KEY_TOTAL = "total";
/**æ¯å¦æå
* @param code
* @return
*/
function isSuccess(code) {
return code == CODE_SUCCESS;
}
/**æ ¡éªæå¡ç«¯æ¯å¦åå¨table
* @param count
* @return
*/
function isExist(count) {
return count > 0;
}
//ç¶æä¿¡æ¯ï¼éGET请æ±è·å¾çä¿¡æ¯>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
/**æ ¼å¼åkeyåç§°
* @param object
* @return
*/
function formatObject(object) {
//å¤ªé¿æ¥ç䏿¹ä¾¿ï¼ä¸å¦debug log(TAG, "format object = \n" + JSON.toJSONString(object));
if (object == null || object == '') {
log(TAG, "format object == null || object == '' >> return object;");
return object;
}
let formattedObject = {};
let value;
for (let key in object) {
value = object[key];
if (value instanceof Array) { // JSONArrayï¼é忥formatå
é¨é¡¹
formattedObject[replaceArray(key)] = formatArray(value);
}
else if (value instanceof Object) { // JSONObjectï¼å¾ä¸ä¸çº§æå
formattedObject[getSimpleName(key)] = formatObject(value);
}
else { // å
¶å®Objectï¼ç´æ¥å¡«å
formattedObject[getSimpleName(key)] = value;
}
}
//å¤ªé¿æ¥ç䏿¹ä¾¿ï¼ä¸å¦debug log(TAG, "format return formattedObject = " + JSON.toJSONString(formattedObject));
return formattedObject;
}
/**æ ¼å¼åkeyåç§°
* @param array
* @return
*/
function formatArray(array) {
//å¤ªé¿æ¥ç䏿¹ä¾¿ï¼ä¸å¦debug log(TAG, "format array = \n" + JSON.toJSONString(array));
if (array == null || array == '') {
log(TAG, "format array == null || array == '' >> return array;");
return array;
}
let formattedArray = [];
let value;
for (let i = 0; i < array.length; i++) {
value = array[i];
if (value instanceof Array) { // JSONArrayï¼é忥formatå
é¨é¡¹
formattedArray.push(formatArray(value));
}
else if (value instanceof Object) { // JSONObjectï¼å¾ä¸ä¸çº§æå
formattedArray.push(formatObject(value));
}
else { // å
¶å®Objectï¼ç´æ¥å¡«å
formattedArray.push(value);
}
}
//å¤ªé¿æ¥ç䏿¹ä¾¿ï¼ä¸å¦debug log(TAG, "format return formattedArray = " + JSON.toJSONString(formattedArray));
return formattedArray;
}
/**æ¿æ¢key+KEY_ARRAY为keyList
* @param key
* @return getSimpleName(isArrayKey(key) ? getArrayKey(...) : key) {@link #getSimpleName(String)}
*/
function replaceArray(key) {
if (isArrayKey(key)) {
key = getArrayKey(key.substring(0, key.lastIndexOf('[]')));
}
return getSimpleName(key);
}
/**è·åå表åéå
* @param key => getNoBlankString(key)
* @return empty ? "list" : key + "List" ä¸é¦åæ¯å°å
*/
function getArrayKey(key) {
return addSuffix(key, "list");
}
/**è·åç®ååç§°
* @param fullName name æ name:alias
* @return name => name; name:alias => alias
*/
function getSimpleName(fullName) {
//key:alias -> alias; key:alias[] -> alias[]
let index = fullName == null ? -1 : fullName.indexOf(":");
if (index >= 0) {
fullName = fullName.substring(index + 1);
}
return fullName;
}