2024-01-10 18:54:00 +01:00
|
|
|
/* Copyright (C) 2017-2024 Carsten Pfeiffer, Daniele Gobbetti, José Rebelo
|
2018-02-26 14:27:32 +01:00
|
|
|
|
|
|
|
This file is part of Gadgetbridge.
|
|
|
|
|
|
|
|
Gadgetbridge 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.
|
|
|
|
|
|
|
|
Gadgetbridge 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
|
2024-01-10 18:54:00 +01:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2017-12-17 22:35:17 +01:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.content.pm.PackageManager.NameNotFoundException;
|
|
|
|
import android.database.ContentObserver;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Handler;
|
|
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
2024-03-29 22:10:40 +01:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Collections;
|
2017-12-17 22:35:17 +01:00
|
|
|
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.Weather;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.WeatherSpec;
|
|
|
|
|
|
|
|
|
|
|
|
public class OmniJawsObserver extends ContentObserver {
|
|
|
|
|
|
|
|
private static final Logger LOG = LoggerFactory.getLogger(OmniJawsObserver.class);
|
|
|
|
|
|
|
|
private static final String SERVICE_PACKAGE = "org.omnirom.omnijaws";
|
|
|
|
public static final Uri WEATHER_URI = Uri.parse("content://org.omnirom.omnijaws.provider/weather");
|
|
|
|
private static final Uri SETTINGS_URI = Uri.parse("content://org.omnirom.omnijaws.provider/settings");
|
|
|
|
|
|
|
|
private Context mContext;
|
|
|
|
private boolean mInstalled;
|
|
|
|
private boolean mEnabled = false;
|
|
|
|
private boolean mMetric = true;
|
|
|
|
|
|
|
|
|
|
|
|
private final String[] WEATHER_PROJECTION = new String[]{
|
|
|
|
"city",
|
|
|
|
"condition", //unused, see below
|
|
|
|
"condition_code",
|
|
|
|
"temperature",
|
|
|
|
"humidity",
|
|
|
|
"forecast_low",
|
|
|
|
"forecast_high",
|
|
|
|
"forecast_condition",
|
|
|
|
"forecast_condition_code",
|
|
|
|
"time_stamp",
|
2018-04-14 19:42:05 +02:00
|
|
|
"forecast_date",
|
|
|
|
"wind_speed",
|
|
|
|
"wind_direction"
|
2017-12-17 22:35:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
private final String[] SETTINGS_PROJECTION = new String[]{
|
|
|
|
"enabled",
|
|
|
|
"units"
|
|
|
|
};
|
|
|
|
|
|
|
|
public OmniJawsObserver(Handler handler) throws NameNotFoundException {
|
|
|
|
super(handler);
|
|
|
|
mContext = GBApplication.getContext();
|
|
|
|
mInstalled = isOmniJawsServiceAvailable();
|
|
|
|
LOG.info("OmniJaws installation status: " + mInstalled);
|
|
|
|
checkSettings();
|
|
|
|
LOG.info("OmniJaws is enabled: " + mEnabled);
|
|
|
|
if (!mEnabled) {
|
|
|
|
throw new NameNotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
updateWeather();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onChange(boolean selfChange) {
|
|
|
|
super.onChange(selfChange);
|
|
|
|
LOG.info("Weather update received");
|
|
|
|
checkSettings();
|
|
|
|
if (!mEnabled) {
|
|
|
|
LOG.info("Provider was disabled, ignoring.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
queryWeather();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void queryWeather() {
|
|
|
|
Cursor c = mContext.getContentResolver().query(WEATHER_URI, WEATHER_PROJECTION, null, null, null);
|
|
|
|
if (c != null) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
WeatherSpec weatherSpec = new WeatherSpec();
|
|
|
|
weatherSpec.forecasts = new ArrayList<>();
|
|
|
|
|
|
|
|
int count = c.getCount();
|
|
|
|
if (count > 0) {
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
c.moveToPosition(i);
|
|
|
|
if (i == 0) {
|
|
|
|
|
|
|
|
weatherSpec.location = c.getString(0);
|
|
|
|
weatherSpec.currentConditionCode = Weather.mapToOpenWeatherMapCondition(c.getInt(2));
|
|
|
|
weatherSpec.currentCondition = Weather.getConditionString(weatherSpec.currentConditionCode);
|
|
|
|
//alternatively the following would also be possible
|
|
|
|
//weatherSpec.currentCondition = c.getString(1);
|
|
|
|
|
|
|
|
weatherSpec.currentTemp = toKelvin(c.getFloat(3));
|
|
|
|
weatherSpec.currentHumidity = (int) c.getFloat(4);
|
2018-04-14 19:42:05 +02:00
|
|
|
|
|
|
|
weatherSpec.windSpeed = toKmh(c.getFloat(11));
|
|
|
|
weatherSpec.windDirection = c.getInt(12);
|
2018-08-17 00:25:48 +02:00
|
|
|
weatherSpec.timestamp = (int) (Long.parseLong(c.getString(9)) / 1000);
|
2018-02-10 16:01:07 +01:00
|
|
|
} else if (i == 1) {
|
2017-12-17 22:35:17 +01:00
|
|
|
weatherSpec.todayMinTemp = toKelvin(c.getFloat(5));
|
|
|
|
weatherSpec.todayMaxTemp = toKelvin(c.getFloat(6));
|
|
|
|
} else {
|
|
|
|
|
2023-08-25 23:32:17 +02:00
|
|
|
WeatherSpec.Daily gbForecast = new WeatherSpec.Daily();
|
2017-12-17 22:35:17 +01:00
|
|
|
gbForecast.minTemp = toKelvin(c.getFloat(5));
|
|
|
|
gbForecast.maxTemp = toKelvin(c.getFloat(6));
|
|
|
|
gbForecast.conditionCode = Weather.mapToOpenWeatherMapCondition(c.getInt(8));
|
|
|
|
weatherSpec.forecasts.add(gbForecast);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-29 22:10:40 +01:00
|
|
|
ArrayList<WeatherSpec> weatherSpecs = new ArrayList<>(Collections.singletonList(weatherSpec));
|
|
|
|
Weather.getInstance().setWeatherSpec(weatherSpecs);
|
|
|
|
GBApplication.deviceService().onSendWeather(weatherSpecs);
|
2017-12-17 22:35:17 +01:00
|
|
|
|
|
|
|
} finally {
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateWeather() {
|
|
|
|
Intent updateIntent = new Intent(Intent.ACTION_MAIN)
|
|
|
|
.setClassName(SERVICE_PACKAGE, SERVICE_PACKAGE + ".WeatherService");
|
|
|
|
updateIntent.setAction(SERVICE_PACKAGE + ".ACTION_UPDATE");
|
|
|
|
mContext.startService(updateIntent);
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean isOmniJawsServiceAvailable() throws NameNotFoundException {
|
|
|
|
final PackageManager pm = mContext.getPackageManager();
|
|
|
|
pm.getPackageInfo("org.omnirom.omnijaws", 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void checkSettings() {
|
|
|
|
if (!mInstalled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final Cursor c = mContext.getContentResolver().query(SETTINGS_URI, SETTINGS_PROJECTION,
|
|
|
|
null, null, null);
|
|
|
|
if (c != null) {
|
|
|
|
int count = c.getCount();
|
|
|
|
if (count == 1) {
|
|
|
|
c.moveToPosition(0);
|
|
|
|
mEnabled = c.getInt(0) == 1 ? true : false;
|
|
|
|
mMetric = c.getInt(1) == 0 ? true : false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int toKelvin(double temperature) {
|
|
|
|
if (mMetric) {
|
|
|
|
return (int) (temperature + 273.15);
|
|
|
|
}
|
|
|
|
return (int) ((temperature - 32) * 0.5555555555555556D + 273.15);
|
|
|
|
}
|
|
|
|
|
2018-04-14 19:42:05 +02:00
|
|
|
private float toKmh(float speed) {
|
|
|
|
if (mMetric) {
|
|
|
|
return speed;
|
|
|
|
}
|
|
|
|
return (speed * 1.61f);
|
|
|
|
}
|
2017-12-17 22:35:17 +01:00
|
|
|
}
|