From 8194502f0dd19e0199955322f2ad26dc4989c911 Mon Sep 17 00:00:00 2001 From: Adnan Begovic Date: Thu, 5 May 2016 02:01:57 -0700 Subject: YahooCM: Initial checkin. --- app/src/main/AndroidManifest.xml | 42 +++ .../yahooweatherprovider/ConverterUtils.java | 57 ++++ .../YahooCMWeatherApplication.java | 42 +++ .../yahooweatherprovider/YahooModule.java | 45 +++ .../YahooWeatherProviderService.java | 301 +++++++++++++++++++++ .../yahoo/WeakReferenceHandler.java | 40 +++ .../yahoo/YQLQueryCreator.java | 43 +++ .../yahoo/YahooServiceInterface.java | 28 ++ .../yahoo/YahooWeatherRequestCallback.java | 61 +++++ .../yahoo/YahooWeatherResponseListener.java | 27 ++ .../yahoo/YahooWeatherServiceManager.java | 66 +++++ .../yahoo/response/Admin3.java | 64 +++++ .../yahoo/response/Astronomy.java | 44 +++ .../yahoo/response/Atmosphere.java | 64 +++++ .../yahoo/response/Channel.java | 154 +++++++++++ .../yahoo/response/Condition.java | 64 +++++ .../yahoo/response/Country.java | 65 +++++ .../yahoo/response/Forecast.java | 84 ++++++ .../yahooweatherprovider/yahoo/response/Guid.java | 35 +++ .../yahooweatherprovider/yahoo/response/Image.java | 74 +++++ .../yahooweatherprovider/yahoo/response/Item.java | 117 ++++++++ .../yahoo/response/Location.java | 54 ++++ .../yahooweatherprovider/yahoo/response/Place.java | 55 ++++ .../yahooweatherprovider/yahoo/response/Query.java | 64 +++++ .../yahoo/response/Results.java | 46 ++++ .../yahooweatherprovider/yahoo/response/Units.java | 65 +++++ .../yahooweatherprovider/yahoo/response/Wind.java | 54 ++++ .../yahoo/response/YQLResponse.java | 34 +++ app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 3418 bytes app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 2206 bytes app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 4842 bytes app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 7718 bytes app/src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 10486 bytes app/src/main/res/values/colors.xml | 6 + app/src/main/res/values/strings.xml | 3 + app/src/main/res/values/styles.xml | 6 + 36 files changed, 1904 insertions(+) create mode 100644 app/src/main/AndroidManifest.xml create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/ConverterUtils.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooCMWeatherApplication.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooModule.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooWeatherProviderService.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/WeakReferenceHandler.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YQLQueryCreator.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooServiceInterface.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherRequestCallback.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherResponseListener.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherServiceManager.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Admin3.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Astronomy.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Atmosphere.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Channel.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Condition.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Country.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Forecast.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Guid.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Image.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Item.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Location.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Place.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Query.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Results.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Units.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Wind.java create mode 100644 app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/YQLResponse.java create mode 100644 app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 app/src/main/res/values/colors.xml create mode 100644 app/src/main/res/values/strings.xml create mode 100644 app/src/main/res/values/styles.xml (limited to 'app/src/main') diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..48b4540 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/ConverterUtils.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/ConverterUtils.java new file mode 100644 index 0000000..2dfe3f0 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/ConverterUtils.java @@ -0,0 +1,57 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider; + +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Admin3; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Forecast; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Place; + +import java.util.ArrayList; +import java.util.List; + +import cyanogenmod.weather.WeatherInfo; +import cyanogenmod.weather.WeatherLocation; + +public class ConverterUtils { + + public static ArrayList convertForecastsToDayForecasts(List forecasts) { + ArrayList ret = new ArrayList<>(); + for (Forecast forecast : forecasts) { + System.out.println("Forecast " + forecast); + WeatherInfo.DayForecast dayForecast = new WeatherInfo.DayForecast.Builder( + Integer.parseInt(forecast.getCode())) + .setHigh(Double.parseDouble(forecast.getHigh())) + .setLow(Double.parseDouble(forecast.getLow())) + .build(); + ret.add(dayForecast); + } + return ret; + } + + public static List convertPlacesToWeatherLocations(List places) { + List ret = new ArrayList<>(); + for (Place place : places) { + Admin3 admin3 = place.getAdmin(); + if (admin3 != null && admin3.getContent() != null) { + WeatherLocation weatherLocation = new WeatherLocation.Builder(place.getWoeid(), + admin3.getContent()).build(); + ret.add(weatherLocation); + } + } + return ret; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooCMWeatherApplication.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooCMWeatherApplication.java new file mode 100644 index 0000000..51265a2 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooCMWeatherApplication.java @@ -0,0 +1,42 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + * + * 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. + */ + +package org.cyanogenmod.yahooweatherprovider; + +import android.app.Application; +import android.content.Context; + +import dagger.ObjectGraph; + +public class YahooCMWeatherApplication extends Application { + + private ObjectGraph mObjectGraph; + + @Override + public void onCreate() { + super.onCreate(); + mObjectGraph = ObjectGraph.create(new YahooModule(this)); + } + + public static YahooCMWeatherApplication get(Context context) { + return (YahooCMWeatherApplication) context.getApplicationContext(); + } + + public final void inject(Object object) { + mObjectGraph.inject(object); + } + +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooModule.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooModule.java new file mode 100644 index 0000000..6bc1176 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooModule.java @@ -0,0 +1,45 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + * + * 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. + */ + +package org.cyanogenmod.yahooweatherprovider; + +import org.cyanogenmod.yahooweatherprovider.yahoo.YahooWeatherServiceManager; + +import javax.inject.Singleton; + +import dagger.Module; +import dagger.Provides; + +@Module( + injects = { + YahooWeatherProviderService.class, + } +) +public class YahooModule { + + private YahooCMWeatherApplication mWeatherApplication; + + public YahooModule(YahooCMWeatherApplication weatherApplication) { + mWeatherApplication = weatherApplication; + } + + @Provides + @Singleton + public YahooWeatherServiceManager providesYahooWeatherServiceManager() { + return new YahooWeatherServiceManager(); + } + +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooWeatherProviderService.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooWeatherProviderService.java new file mode 100644 index 0000000..7fcfbf0 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/YahooWeatherProviderService.java @@ -0,0 +1,301 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + * + * 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. + */ + +package org.cyanogenmod.yahooweatherprovider; + +import android.content.Context; +import android.location.Address; +import android.location.Criteria; +import android.location.Geocoder; +import android.location.LocationManager; +import android.os.Message; +import android.text.TextUtils; +import android.util.Log; + +import org.cyanogenmod.yahooweatherprovider.yahoo.WeakReferenceHandler; +import org.cyanogenmod.yahooweatherprovider.yahoo.YahooWeatherRequestCallback; +import org.cyanogenmod.yahooweatherprovider.yahoo.YahooWeatherResponseListener; +import org.cyanogenmod.yahooweatherprovider.yahoo.YahooWeatherServiceManager; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Atmosphere; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Channel; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Condition; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Forecast; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Location; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Place; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Query; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Results; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.Wind; +import org.cyanogenmod.yahooweatherprovider.yahoo.response.YQLResponse; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Locale; + +import javax.inject.Inject; + +import cyanogenmod.providers.WeatherContract; +import cyanogenmod.weather.RequestInfo; +import cyanogenmod.weather.WeatherInfo; +import cyanogenmod.weather.WeatherLocation; +import cyanogenmod.weatherservice.ServiceRequest; +import cyanogenmod.weatherservice.ServiceRequestResult; +import cyanogenmod.weatherservice.WeatherProviderService; +import retrofit2.Call; + +public class YahooWeatherProviderService extends WeatherProviderService + implements YahooWeatherResponseListener { + + private static final String TAG = YahooWeatherProviderService.class.getSimpleName(); + private static final int SERVICE_REQUEST_CANCELLED = -1; + private static final int SERVICE_REQUEST_SUBMITTED = 0; + + @Inject + public YahooWeatherServiceManager mYahooWeatherServiceManager; + + @Override + public void onCreate() { + super.onCreate(); + YahooCMWeatherApplication.get(this).inject(this); + } + + @Override + protected void onRequestSubmitted(ServiceRequest serviceRequest) { + Log.d(TAG, "Received service request: " + serviceRequest.toString()); + Message request = mHandler.obtainMessage(SERVICE_REQUEST_SUBMITTED, serviceRequest); + request.sendToTarget(); + } + + @Override + protected void onRequestCancelled(ServiceRequest serviceRequest) { + Log.d(TAG, "Received service request cancelled: " + serviceRequest.toString()); + Message request = mHandler.obtainMessage(SERVICE_REQUEST_CANCELLED, serviceRequest); + request.sendToTarget(); + } + + private final NonLeakyMessageHandler mHandler = new NonLeakyMessageHandler(this); + + private static class NonLeakyMessageHandler + extends WeakReferenceHandler { + public NonLeakyMessageHandler(YahooWeatherProviderService reference) { + super(reference); + } + + @Override + protected void handleMessage(YahooWeatherProviderService reference, + Message inputMessage) { + ServiceRequest serviceRequest = (ServiceRequest)inputMessage.obj; + switch (inputMessage.what) { + case SERVICE_REQUEST_SUBMITTED: + RequestInfo requestInfo = serviceRequest.getRequestInfo(); + switch (requestInfo.getRequestType()) { + case RequestInfo.TYPE_WEATHER_BY_WEATHER_LOCATION_REQ: + case RequestInfo.TYPE_WEATHER_BY_GEO_LOCATION_REQ: + reference.handleWeatherRequest(serviceRequest); + break; + case RequestInfo.TYPE_LOOKUP_CITY_NAME_REQ: + reference.handleLookupRequest(serviceRequest); + break; + default: + //Don't support anything else, fail. + serviceRequest.fail(); + break; + } + break; + case SERVICE_REQUEST_CANCELLED: + //TODO; Implement + break; + default: + //Don't support anything else, fail. + if (serviceRequest != null) { + serviceRequest.fail(); + } + } + } + } + + private void handleLookupRequest(ServiceRequest serviceRequest) { + final RequestInfo requestInfo = serviceRequest.getRequestInfo(); + + String cityName = requestInfo.getCityName(); + + if (TextUtils.isEmpty(cityName)) { + Log.d(TAG, "Null citname return"); + serviceRequest.fail(); + return; + } + + Call wundergroundCall = mYahooWeatherServiceManager.lookupCity(cityName); + wundergroundCall.enqueue(new YahooWeatherRequestCallback(serviceRequest, this)); + } + + + private void handleWeatherRequest(final ServiceRequest serviceRequest) { + final RequestInfo requestInfo = serviceRequest.getRequestInfo(); + Log.d(TAG, "Received weather request info: " + requestInfo.toString()); + + if (requestInfo.getRequestType() == RequestInfo.TYPE_WEATHER_BY_GEO_LOCATION_REQ) { + android.location.Location location = requestInfo.getLocation(); + if (location == null) { + LocationManager locationManager = (LocationManager) + getSystemService(Context.LOCATION_SERVICE); + Criteria criteria = new Criteria(); + criteria.setAccuracy(Criteria.ACCURACY_HIGH); + location = locationManager.getLastKnownLocation(locationManager.getBestProvider( + criteria, false)); + } + handleRequestByGeoLocation(location, serviceRequest); + } else { + WeatherLocation weatherLocation = requestInfo.getWeatherLocation(); + handleRequestByWeatherLocation(weatherLocation, serviceRequest); + } + } + + /** + * Enqueue request by geolocation (lat/long) + */ + private void handleRequestByGeoLocation(android.location.Location location, + final ServiceRequest serviceRequest) { + Geocoder gcd = new Geocoder(this, Locale.getDefault()); + try { + List

addresses = gcd.getFromLocation(location.getLatitude(), + location.getLongitude(), 1); + Address address = addresses.get(0); + Call wundergroundCall = + mYahooWeatherServiceManager.query(address.getCountryName(), + address.getLocality()); + wundergroundCall.enqueue(new YahooWeatherRequestCallback(serviceRequest, this)); + } catch (IOException e) { + Log.d(TAG, "Failed to get addresses"); + serviceRequest.fail(); + } + } + + /** + * Enqueue request by weatherlocation + */ + private void handleRequestByWeatherLocation(WeatherLocation weatherLocation, + final ServiceRequest serviceRequest) { + + Call wundergroundCall = null; + if (weatherLocation.getCity() != null) { + wundergroundCall = + mYahooWeatherServiceManager.query(weatherLocation.getState(), + weatherLocation.getCity()); + } + //TODO: Add postal code support + //else if (weatherLocation.getPostalCode() != null) { + // wundergroundCall = + // mYahooWeatherServiceManager.query(weatherLocation.getPostalCode()); + //} + else { + Log.e(TAG, "Unable to handle service request"); + serviceRequest.fail(); + return; + } + + wundergroundCall.enqueue(new YahooWeatherRequestCallback(serviceRequest, this)); + } + + @Override + public void processYahooWeatherResponse(YQLResponse yqlResponse, ServiceRequest serviceRequest) { + switch (serviceRequest.getRequestInfo().getRequestType()) { + case RequestInfo.TYPE_WEATHER_BY_WEATHER_LOCATION_REQ: + case RequestInfo.TYPE_WEATHER_BY_GEO_LOCATION_REQ: + processWeatherRequest(yqlResponse, serviceRequest); + break; + case RequestInfo.TYPE_LOOKUP_CITY_NAME_REQ: + processCityLookupRequest(yqlResponse, serviceRequest); + break; + default: + //Don't support anything else, fail. + serviceRequest.fail(); + } + } + + private void processWeatherRequest(YQLResponse yqlResponse, ServiceRequest serviceRequest) { + final Query queryResponse = yqlResponse.getQuery(); + final Results results = queryResponse.getResults(); + + if (results == null) { + Log.d(TAG, "Null query results, return"); + serviceRequest.fail(); + return; + } + final Channel channel = results.getChannel(); + final Location location = channel.getLocation(); + final Condition condition = channel.getItem().getCondition(); + final Atmosphere atmosphere = channel.getAtmosphere(); + final Wind wind = channel.getWind(); + final Forecast[] forecasts = channel.getItem().getForecast(); + + final WeatherInfo.Builder weatherInfoBuilder = new WeatherInfo.Builder(location.getCity(), + Double.parseDouble(condition.getTemp()), + WeatherContract.WeatherColumns.TempUnit.FAHRENHEIT); + + // Set current weather condition code + weatherInfoBuilder.setWeatherCondition(Integer.parseInt(condition.getCode())); + + // Set humidity + weatherInfoBuilder.setHumidity(Double.parseDouble(atmosphere.getHumidity())); + + // Set wind arguments + weatherInfoBuilder.setWind(Double.parseDouble(wind.getSpeed()), + Double.parseDouble(wind.getDirection()), + WeatherContract.WeatherColumns.WindSpeedUnit.MPH); + + // Set high and low for today from the simple forecast days + weatherInfoBuilder.setTodaysHigh(Double.parseDouble(forecasts[0].getHigh())); + weatherInfoBuilder.setTodaysLow(Double.parseDouble(forecasts[0].getHigh())); + + ArrayList forecastList = ConverterUtils.convertForecastsToDayForecasts( + Arrays.asList(forecasts)); + // Remove today + forecastList.remove(0); + + weatherInfoBuilder.setForecast(forecastList); + + ServiceRequestResult serviceRequestResult = + new ServiceRequestResult.Builder(weatherInfoBuilder.build()) + .build(); + serviceRequest.complete(serviceRequestResult); + } + + private void processCityLookupRequest(YQLResponse yqlResponse, ServiceRequest serviceRequest) { + final Query queryResponse = yqlResponse.getQuery(); + final Results results = queryResponse.getResults(); + + if (results == null) { + Log.d(TAG, "Null query results, return"); + serviceRequest.fail(); + return; + } + + final Place[] places = results.getPlace(); + + if (places == null) { + Log.d(TAG, "Null places, return"); + serviceRequest.fail(); + return; + } + + ServiceRequestResult serviceRequestResult = + new ServiceRequestResult.Builder(ConverterUtils.convertPlacesToWeatherLocations( + Arrays.asList(places))).build(); + serviceRequest.complete(serviceRequestResult); + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/WeakReferenceHandler.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/WeakReferenceHandler.java new file mode 100644 index 0000000..0711b45 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/WeakReferenceHandler.java @@ -0,0 +1,40 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo; + +import android.os.Handler; +import android.os.Message; + +import java.lang.ref.WeakReference; + +public abstract class WeakReferenceHandler extends Handler { + private WeakReference mReference; + + public WeakReferenceHandler(T reference) { + mReference = new WeakReference(reference); + } + + @Override + public void handleMessage(Message msg) { + T reference = mReference.get(); + if (reference == null) + return; + handleMessage(reference, msg); + } + + protected abstract void handleMessage(T reference, Message msg); +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YQLQueryCreator.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YQLQueryCreator.java new file mode 100644 index 0000000..b8153af --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YQLQueryCreator.java @@ -0,0 +1,43 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo; + +import android.net.Uri; + +public class YQLQueryCreator { + private final static String YQL_FORECAST_QUERY = + Uri.encode("select * from weather.forecast where woeid in"); + private final static String YQL_LOCATION_QUERY = + Uri.encode("select woeid, postal, admin1, admin2, admin3, " + + "locality1, locality2, country from geo.places where " + + "(placetype = 7 or placetype = 8 or placetype = 9 " + + "or placetype = 10 or placetype = 11 or placetype = 20) and text = "); + + private YQLQueryCreator(){ + } + + public static String getForecastQuery(String state, String city) { + String params = "(select woeid from geo.places(1) where text=\"" + city + "," + state + + "\") and u='f'"; + return YQL_FORECAST_QUERY + Uri.encode(params); + } + + public static String getLocationQuery(String input) { + String params = "\"" + input + "\""; + return YQL_LOCATION_QUERY + Uri.encode(params); + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooServiceInterface.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooServiceInterface.java new file mode 100644 index 0000000..06beda9 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooServiceInterface.java @@ -0,0 +1,28 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + * + * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo; + +import org.cyanogenmod.yahooweatherprovider.yahoo.response.YQLResponse; + +import retrofit2.Call; +import retrofit2.http.GET; +import retrofit2.http.Query; + +public interface YahooServiceInterface { + @GET("/v1/public/yql?format=json&env=store://datatables.org/alltableswithkeys") + Call query(@Query(value = "q", encoded = true) String query); +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherRequestCallback.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherRequestCallback.java new file mode 100644 index 0000000..33753b8 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherRequestCallback.java @@ -0,0 +1,61 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo; + +import android.util.Log; + +import org.cyanogenmod.yahooweatherprovider.yahoo.response.YQLResponse; + +import cyanogenmod.weatherservice.ServiceRequest; +import retrofit2.Call; +import retrofit2.Callback; +import retrofit2.Response; + +public class YahooWeatherRequestCallback implements Callback { + private static final String TAG = YahooWeatherRequestCallback.class.getSimpleName(); + private ServiceRequest mServiceRequest; + private YahooWeatherResponseListener mYahooWeatherResponseListener; + + public YahooWeatherRequestCallback(ServiceRequest serviceRequest, + YahooWeatherResponseListener yahooWeatherdResponseListener) { + mServiceRequest = serviceRequest; + mYahooWeatherResponseListener = yahooWeatherdResponseListener; + } + + @Override + public void onResponse(Call call, Response response) { + if (response.isSuccessful()) { + Log.d(TAG, "Received response:\n" + response.body().toString()); + YQLResponse wundergroundReponse = response.body(); + if (wundergroundReponse == null) { + Log.d(TAG, "Null wu reponse, return"); + mServiceRequest.fail(); + return; + } + mYahooWeatherResponseListener.processYahooWeatherResponse( + wundergroundReponse, mServiceRequest); + } else { + Log.d(TAG, "Response " + response.toString()); + } + } + + @Override + public void onFailure(Call call, Throwable t) { + Log.d(TAG, "Failure " + t.toString()); + mServiceRequest.fail(); + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherResponseListener.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherResponseListener.java new file mode 100644 index 0000000..2e4f468 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherResponseListener.java @@ -0,0 +1,27 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo; + +import org.cyanogenmod.yahooweatherprovider.yahoo.response.YQLResponse; + +import cyanogenmod.weatherservice.ServiceRequest; + + +public interface YahooWeatherResponseListener { + void processYahooWeatherResponse(YQLResponse yqlResponse, + ServiceRequest serviceRequest); +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherServiceManager.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherServiceManager.java new file mode 100644 index 0000000..f9d7009 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/YahooWeatherServiceManager.java @@ -0,0 +1,66 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + * + * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo; + +import android.util.Log; + +import org.cyanogenmod.yahooweatherprovider.yahoo.response.YQLResponse; + +import okhttp3.OkHttpClient; +import okhttp3.logging.HttpLoggingInterceptor; +import retrofit2.Call; +import retrofit2.Retrofit; +import retrofit2.converter.gson.GsonConverterFactory; + +public class YahooWeatherServiceManager { + private final static String TAG = "YahooServiceManager"; + private final static boolean DEBUG = true;//Log.isLoggable(TAG, Log.VERBOSE); + + private final YahooServiceInterface mYahooServiceInterface; + + public YahooWeatherServiceManager() { + Retrofit baseAdapter = buildRestAdapter(); + mYahooServiceInterface = baseAdapter.create(YahooServiceInterface.class); + } + + public Call query(String state, String city) { + String forecastQuery = YQLQueryCreator.getForecastQuery(state, city); + return mYahooServiceInterface.query(forecastQuery); + } + + public Call lookupCity(String city) { + String locationQuery = YQLQueryCreator.getLocationQuery(city); + return mYahooServiceInterface.query(locationQuery); + } + + private Retrofit buildRestAdapter() { + final OkHttpClient.Builder builder = new OkHttpClient().newBuilder(); + if (DEBUG) { + final HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor(); + loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); + builder.addInterceptor(loggingInterceptor); + } + final OkHttpClient client = builder.build(); + + final String baseUrl = "https://query.yahooapis.com"; + return new Retrofit.Builder() + .baseUrl(baseUrl) + .client(client) + .addConverterFactory(GsonConverterFactory.create()) + .build(); + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Admin3.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Admin3.java new file mode 100644 index 0000000..8bcc005 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Admin3.java @@ -0,0 +1,64 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Admin3 { + private String content; + + private String woeid; + + private String code; + + private String type; + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getWoeid() { + return woeid; + } + + public void setWoeid(String woeid) { + this.woeid = woeid; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + @Override + public String toString() { + return "[content = " + content + ", woeid = " + woeid + ", code = " + code + ", type = " + type + "]"; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Astronomy.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Astronomy.java new file mode 100644 index 0000000..be9304f --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Astronomy.java @@ -0,0 +1,44 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Astronomy { + private String sunset; + + private String sunrise; + + public String getSunset() { + return sunset; + } + + public void setSunset(String sunset) { + this.sunset = sunset; + } + + public String getSunrise() { + return sunrise; + } + + public void setSunrise(String sunrise) { + this.sunrise = sunrise; + } + + @Override + public String toString() { + return "[sunset = " + sunset + ", sunrise = " + sunrise + "]"; + } +} \ No newline at end of file diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Atmosphere.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Atmosphere.java new file mode 100644 index 0000000..4fea93d --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Atmosphere.java @@ -0,0 +1,64 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Atmosphere { + private String rising; + + private String humidity; + + private String pressure; + + private String visibility; + + public String getRising() { + return rising; + } + + public void setRising(String rising) { + this.rising = rising; + } + + public String getHumidity() { + return humidity; + } + + public void setHumidity(String humidity) { + this.humidity = humidity; + } + + public String getPressure() { + return pressure; + } + + public void setPressure(String pressure) { + this.pressure = pressure; + } + + public String getVisibility() { + return visibility; + } + + public void setVisibility(String visibility) { + this.visibility = visibility; + } + + @Override + public String toString() { + return "[rising = " + rising + ", humidity = " + humidity + ", pressure = " + pressure + ", visibility = " + visibility + "]"; + } +} \ No newline at end of file diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Channel.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Channel.java new file mode 100644 index 0000000..35f1320 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Channel.java @@ -0,0 +1,154 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Channel { + private Wind wind; + + private Location location; + + private String link; + + private Atmosphere atmosphere; + + private Image image; + + private String ttl; + + private Astronomy astronomy; + + private Units units; + + private String title; + + private String description; + + private Item item; + + private String lastBuildDate; + + private String language; + + public Wind getWind() { + return wind; + } + + public void setWind(Wind wind) { + this.wind = wind; + } + + public Location getLocation() { + return location; + } + + public void setLocation(Location location) { + this.location = location; + } + + public String getLink() { + return link; + } + + public void setLink(String link) { + this.link = link; + } + + public Atmosphere getAtmosphere() { + return atmosphere; + } + + public void setAtmosphere(Atmosphere atmosphere) { + this.atmosphere = atmosphere; + } + + public Image getImage() { + return image; + } + + public void setImage(Image image) { + this.image = image; + } + + public String getTtl() { + return ttl; + } + + public void setTtl(String ttl) { + this.ttl = ttl; + } + + public Astronomy getAstronomy() { + return astronomy; + } + + public void setAstronomy(Astronomy astronomy) { + this.astronomy = astronomy; + } + + public Units getUnits() { + return units; + } + + public void setUnits(Units units) { + this.units = units; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public Item getItem() { + return item; + } + + public void setItem(Item item) { + this.item = item; + } + + public String getLastBuildDate() { + return lastBuildDate; + } + + public void setLastBuildDate(String lastBuildDate) { + this.lastBuildDate = lastBuildDate; + } + + public String getLanguage() { + return language; + } + + public void setLanguage(String language) { + this.language = language; + } + + @Override + public String toString() { + return "[wind = " + wind + ", location = " + location + ", link = " + link + ", atmosphere = " + atmosphere + ", image = " + image + ", ttl = " + ttl + ", astronomy = " + astronomy + ", units = " + units + ", title = " + title + ", description = " + description + ", item = " + item + ", lastBuildDate = " + lastBuildDate + ", language = " + language + "]"; + } +} \ No newline at end of file diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Condition.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Condition.java new file mode 100644 index 0000000..304e665 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Condition.java @@ -0,0 +1,64 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Condition { + private String text; + + private String temp; + + private String code; + + private String date; + + public String getText() { + return text; + } + + public void setText(String text) { + this.text = text; + } + + public String getTemp() { + return temp; + } + + public void setTemp(String temp) { + this.temp = temp; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getDate() { + return date; + } + + public void setDate(String date) { + this.date = date; + } + + @Override + public String toString() { + return "[text = " + text + ", temp = " + temp + ", code = " + code + ", date = " + date + "]"; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Country.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Country.java new file mode 100644 index 0000000..4c1daaf --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Country.java @@ -0,0 +1,65 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Country { + private String content; + + private String woeid; + + private String code; + + private String type; + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getWoeid() { + return woeid; + } + + public void setWoeid(String woeid) { + this.woeid = woeid; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + @Override + public String toString() { + return "[content = " + content + ", woeid = " + woeid + ", code = " + code + ", type = " + type + "]"; + } +} + diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Forecast.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Forecast.java new file mode 100644 index 0000000..eb9b7d9 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Forecast.java @@ -0,0 +1,84 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Forecast { + private String text; + + private String high; + + private String day; + + private String code; + + private String low; + + private String date; + + public String getText() { + return text; + } + + public void setText(String text) { + this.text = text; + } + + public String getHigh() { + return high; + } + + public void setHigh(String high) { + this.high = high; + } + + public String getDay() { + return day; + } + + public void setDay(String day) { + this.day = day; + } + + public String getCode() { + return code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getLow() { + return low; + } + + public void setLow(String low) { + this.low = low; + } + + public String getDate() { + return date; + } + + public void setDate(String date) { + this.date = date; + } + + @Override + public String toString() { + return "[text = " + text + ", high = " + high + ", day = " + day + ", code = " + code + ", low = " + low + ", date = " + date + "]"; + } +} \ No newline at end of file diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Guid.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Guid.java new file mode 100644 index 0000000..aea9589 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Guid.java @@ -0,0 +1,35 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Guid { + private String isPermaLink; + + public String getIsPermaLink() { + return isPermaLink; + } + + public void setIsPermaLink(String isPermaLink) { + this.isPermaLink = isPermaLink; + } + + @Override + public String toString() { + return "[isPermaLink = " + isPermaLink + "]"; + } +} + diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Image.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Image.java new file mode 100644 index 0000000..6357098 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Image.java @@ -0,0 +1,74 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Image { + private String title; + + private String height; + + private String link; + + private String width; + + private String url; + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getHeight() { + return height; + } + + public void setHeight(String height) { + this.height = height; + } + + public String getLink() { + return link; + } + + public void setLink(String link) { + this.link = link; + } + + public String getWidth() { + return width; + } + + public void setWidth(String width) { + this.width = width; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + @Override + public String toString() { + return "[title = " + title + ", height = " + height + ", link = " + link + ", width = " + width + ", url = " + url + "]"; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Item.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Item.java new file mode 100644 index 0000000..528e4b1 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Item.java @@ -0,0 +1,117 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +import java.util.Arrays; + +public class Item { + private Guid guid; + + private String pubDate; + + private String title; + + private Forecast[] forecast; + + private Condition condition; + + private String description; + + private String link; + + private String longz; + + private String lat; + + public Guid getGuid() { + return guid; + } + + public void setGuid(Guid guid) { + this.guid = guid; + } + + public String getPubDate() { + return pubDate; + } + + public void setPubDate(String pubDate) { + this.pubDate = pubDate; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public Forecast[] getForecast() { + return forecast; + } + + public void setForecast(Forecast[] forecast) { + this.forecast = forecast; + } + + public Condition getCondition() { + return condition; + } + + public void setCondition(Condition condition) { + this.condition = condition; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getLink() { + return link; + } + + public void setLink(String link) { + this.link = link; + } + + public String getLong() { + return longz; + } + + public void setLong(String longz) { + this.longz = longz; + } + + public String getLat() { + return lat; + } + + public void setLat(String lat) { + this.lat = lat; + } + + @Override + public String toString() { + return "[guid = " + guid + ", pubDate = " + pubDate + ", title = " + title + ", forecast = " + Arrays.asList(forecast) + ", condition = " + condition + ", description = " + description + ", link = " + link + ", long = " + longz + + ", lat = " + lat + "]"; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Location.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Location.java new file mode 100644 index 0000000..fa3ba9d --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Location.java @@ -0,0 +1,54 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Location { + private String region; + + private String country; + + private String city; + + public String getRegion() { + return region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getCountry() { + return country; + } + + public void setCountry(String country) { + this.country = country; + } + + public String getCity() { + return city; + } + + public void setCity(String city) { + this.city = city; + } + + @Override + public String toString() { + return "[region = " + region + ", country = " + country + ", city = " + city + "]"; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Place.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Place.java new file mode 100644 index 0000000..5c784dc --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Place.java @@ -0,0 +1,55 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Place { + private String woeid; + + private Country country; + + private Admin3 admin1; + + public String getWoeid() { + return woeid; + } + + public void setWoeid(String woeid) { + this.woeid = woeid; + } + + public Country getCountry() { + return country; + } + + public void setCountry(Country country) { + this.country = country; + } + + public Admin3 getAdmin () { + return admin1; + } + + public void setAdmin (Admin3 admin1) { + this.admin1 = admin1; + } + + @Override + public String toString() { + return "[woeid = " + woeid + ", country = " + country + "]"; + } +} + diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Query.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Query.java new file mode 100644 index 0000000..2bc7816 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Query.java @@ -0,0 +1,64 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Query { + private Results results; + + private String count; + + private String created; + + private String lang; + + public Results getResults() { + return results; + } + + public void setResults(Results results) { + this.results = results; + } + + public String getCount() { + return count; + } + + public void setCount(String count) { + this.count = count; + } + + public String getCreated() { + return created; + } + + public void setCreated(String created) { + this.created = created; + } + + public String getLang() { + return lang; + } + + public void setLang(String lang) { + this.lang = lang; + } + + @Override + public String toString() { + return "[results = " + results + ", count = " + count + ", created = " + created + ", lang = " + lang + "]"; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Results.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Results.java new file mode 100644 index 0000000..8b6a45d --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Results.java @@ -0,0 +1,46 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +import java.util.Arrays; + +public class Results { + private Channel channel; + + private Place[] place; + + public Channel getChannel() { + return channel; + } + + public void setChannel(Channel channel) { + this.channel = channel; + } + + public Place[] getPlace() { + return place; + } + + public void setPlace(Place[] place) { + this.place = place; + } + + @Override + public String toString() { + return "[channel = " + channel + ", place + " + Arrays.toString(place) + "]"; + } +} diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Units.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Units.java new file mode 100644 index 0000000..00923df --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Units.java @@ -0,0 +1,65 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Units { + private String distance; + + private String pressure; + + private String speed; + + private String temperature; + + public String getDistance() { + return distance; + } + + public void setDistance(String distance) { + this.distance = distance; + } + + public String getPressure() { + return pressure; + } + + public void setPressure(String pressure) { + this.pressure = pressure; + } + + public String getSpeed() { + return speed; + } + + public void setSpeed(String speed) { + this.speed = speed; + } + + public String getTemperature() { + return temperature; + } + + public void setTemperature(String temperature) { + this.temperature = temperature; + } + + @Override + public String toString() { + return "[distance = " + distance + ", pressure = " + pressure + ", speed = " + speed + ", temperature = " + temperature + "]"; + } +} + diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Wind.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Wind.java new file mode 100644 index 0000000..70fa91e --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/Wind.java @@ -0,0 +1,54 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class Wind { + private String speed; + + private String direction; + + private String chill; + + public String getSpeed() { + return speed; + } + + public void setSpeed(String speed) { + this.speed = speed; + } + + public String getDirection() { + return direction; + } + + public void setDirection(String direction) { + this.direction = direction; + } + + public String getChill() { + return chill; + } + + public void setChill(String chill) { + this.chill = chill; + } + + @Override + public String toString() { + return "[speed = " + speed + ", direction = " + direction + ", chill = " + chill + "]"; + } +} + diff --git a/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/YQLResponse.java b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/YQLResponse.java new file mode 100644 index 0000000..bf47436 --- /dev/null +++ b/app/src/main/java/org/cyanogenmod/yahooweatherprovider/yahoo/response/YQLResponse.java @@ -0,0 +1,34 @@ +/** + * Copyright (C) 2016 The CyanogenMod Project + *

+ * 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. + */ + +package org.cyanogenmod.yahooweatherprovider.yahoo.response; + +public class YQLResponse { + private Query query; + + public Query getQuery() { + return query; + } + + public void setQuery(Query query) { + this.query = query; + } + + @Override + public String toString() { + return "[query = " + query + "]"; + } +} diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..cde69bc Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..c133a0c Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..bfa42f0 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..324e72c Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..aee44e1 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..3ab3e9c --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,6 @@ + + + #3F51B5 + #303F9F + #FF4081 + diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..5f3269a --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Yahoo Weather Provider + diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..3444a02 --- /dev/null +++ b/app/src/main/res/values/styles.xml @@ -0,0 +1,6 @@ + + + + -- cgit v1.2.3