diff options
author | Vitaly Takmazov | 2015-10-31 01:35:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2015-10-31 01:35:22 +0300 |
commit | 5f4602b34ccc3f899edd45e5e541cbb7307c9585 (patch) | |
tree | d9dc7924e19740f97a36d5d905ff5c4aed81b2de /src/main/java/com/juick/json/Place.java | |
parent | 94dba01c5581e43b618d6828ed1b378fd63461a8 (diff) |
moved to Gradle
Diffstat (limited to 'src/main/java/com/juick/json/Place.java')
-rw-r--r-- | src/main/java/com/juick/json/Place.java | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/main/java/com/juick/json/Place.java b/src/main/java/com/juick/json/Place.java new file mode 100644 index 00000000..f195e7d7 --- /dev/null +++ b/src/main/java/com/juick/json/Place.java @@ -0,0 +1,71 @@ +/* + * Juick + * Copyright (C) 2008-2011, Ugnich Anton + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +package com.juick.json; + +import org.json.JSONArray; +import org.json.JSONException; +import org.json.JSONObject; + +/** + * + * @author Ugnich Anton + */ +public class Place { + + public static com.juick.Place parseJSON(JSONObject json) throws JSONException { + com.juick.Place jplace = new com.juick.Place(); + + jplace.pid = json.getInt("pid"); + jplace.lat = json.getDouble("lat"); + jplace.lon = json.getDouble("lon"); + jplace.name = json.getString("name").replace(""", "\""); + if (json.has("users")) { + jplace.users = json.getInt("users"); + } + if (json.has("messages")) { + jplace.messages = json.getInt("messages"); + } + if (json.has("distance")) { + jplace.distance = json.getInt("distance"); + } + + return jplace; + } + + public static JSONObject toJSON(com.juick.Place place) { + JSONObject json = new JSONObject(); + + try { + if (place.pid > 0) { + json.put("pid", place.pid); + } + if (place.lat >= -90 && place.lat <= 90) { + json.put("lat", place.lat); + } + if (place.lon >= -180 && place.lon <= 180) { + json.put("lon", place.lon); + } + if (place.name != null) { + json.put("name", place.name); + } + } catch (JSONException e) { + } + + return json; + } +} |