2019-02-13 20:43:30 +01:00
|
|
|
/* Copyright (C) 2015-2019 Alberto, Andreas Shimokawa, Carsten Pfeiffer,
|
|
|
|
criogenic, dakhnod, Daniele Gobbetti, Frank Slezak, ivanovlev, José Rebelo,
|
2019-04-21 18:50:56 +02:00
|
|
|
Julien Pivotto, Kasha, Roi Greenberg, Sebastian Kranz, Steffen Liebergeld
|
2017-03-10 14:53:19 +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
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2015-08-21 00:58:18 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.impl;
|
|
|
|
|
|
|
|
import android.app.Service;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
2017-01-27 21:16:19 +01:00
|
|
|
import android.database.Cursor;
|
2015-08-21 00:58:18 +02:00
|
|
|
import android.net.Uri;
|
2019-05-01 15:13:08 +02:00
|
|
|
import android.os.Build;
|
2017-01-27 21:16:19 +01:00
|
|
|
import android.provider.ContactsContract;
|
2015-08-21 00:58:18 +02:00
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.UUID;
|
|
|
|
|
2019-01-26 15:52:40 +01:00
|
|
|
import androidx.annotation.Nullable;
|
2017-02-07 10:15:23 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
2015-08-21 00:58:18 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.Alarm;
|
2016-05-16 17:30:11 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CalendarEventSpec;
|
2016-04-04 20:08:34 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CallSpec;
|
2016-06-24 10:25:08 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.CannedMessagesSpec;
|
2015-08-21 00:58:18 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.DeviceService;
|
2016-04-04 20:08:34 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.MusicSpec;
|
2016-06-08 20:27:25 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.MusicStateSpec;
|
2015-09-24 14:45:21 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.NotificationSpec;
|
2016-12-31 15:56:05 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.model.WeatherSpec;
|
2015-08-22 01:08:46 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.service.DeviceCommunicationService;
|
2017-01-24 19:04:06 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.LanguageUtils;
|
2018-09-04 01:00:14 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.util.RtlUtils;
|
2015-08-21 00:58:18 +02:00
|
|
|
|
2017-01-27 21:16:19 +01:00
|
|
|
import static nodomain.freeyourgadget.gadgetbridge.util.JavaExtensions.coalesce;
|
|
|
|
|
2018-09-04 01:00:14 +02:00
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
public class GBDeviceService implements DeviceService {
|
|
|
|
protected final Context mContext;
|
2016-12-31 15:56:05 +01:00
|
|
|
private final Class<? extends Service> mServiceClass;
|
2017-01-24 19:04:06 +01:00
|
|
|
private final String[] transliterationExtras = new String[]{
|
|
|
|
EXTRA_NOTIFICATION_PHONENUMBER,
|
|
|
|
EXTRA_NOTIFICATION_SENDER,
|
|
|
|
EXTRA_NOTIFICATION_SUBJECT,
|
|
|
|
EXTRA_NOTIFICATION_TITLE,
|
|
|
|
EXTRA_NOTIFICATION_BODY,
|
|
|
|
EXTRA_NOTIFICATION_SOURCENAME,
|
|
|
|
EXTRA_CALL_PHONENUMBER,
|
2017-01-27 21:16:19 +01:00
|
|
|
EXTRA_CALL_DISPLAYNAME,
|
2017-01-24 19:04:06 +01:00
|
|
|
EXTRA_MUSIC_ARTIST,
|
|
|
|
EXTRA_MUSIC_ALBUM,
|
|
|
|
EXTRA_MUSIC_TRACK,
|
|
|
|
EXTRA_CALENDAREVENT_TITLE,
|
|
|
|
EXTRA_CALENDAREVENT_DESCRIPTION
|
|
|
|
};
|
2015-08-21 00:58:18 +02:00
|
|
|
|
2015-08-22 01:08:46 +02:00
|
|
|
public GBDeviceService(Context context) {
|
2015-08-21 00:58:18 +02:00
|
|
|
mContext = context;
|
2015-08-22 01:08:46 +02:00
|
|
|
mServiceClass = DeviceCommunicationService.class;
|
2015-08-21 00:58:18 +02:00
|
|
|
}
|
|
|
|
|
2015-08-22 01:08:46 +02:00
|
|
|
protected Intent createIntent() {
|
2016-06-24 10:25:08 +02:00
|
|
|
return new Intent(mContext, mServiceClass);
|
2015-08-21 00:58:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void invokeService(Intent intent) {
|
2017-03-14 21:37:16 +01:00
|
|
|
if (LanguageUtils.transliterate()) {
|
|
|
|
for (String extra : transliterationExtras) {
|
|
|
|
if (intent.hasExtra(extra)) {
|
2017-01-24 19:04:06 +01:00
|
|
|
intent.putExtra(extra, LanguageUtils.transliterate(intent.getStringExtra(extra)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 01:00:14 +02:00
|
|
|
if (RtlUtils.rtlSupport()) {
|
2018-08-21 20:27:00 +02:00
|
|
|
for (String extra : transliterationExtras) {
|
|
|
|
if (intent.hasExtra(extra)) {
|
2018-09-04 01:00:14 +02:00
|
|
|
intent.putExtra(extra, RtlUtils.fixRtl(intent.getStringExtra(extra)));
|
2018-08-21 20:27:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
mContext.startService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void stopService(Intent intent) {
|
|
|
|
mContext.stopService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void start() {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_START);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void connect() {
|
|
|
|
connect(null, false);
|
|
|
|
}
|
|
|
|
|
2015-12-13 00:43:07 +01:00
|
|
|
@Override
|
2017-01-26 00:11:52 +01:00
|
|
|
public void connect(@Nullable GBDevice device) {
|
|
|
|
connect(device, false);
|
2015-08-21 00:58:18 +02:00
|
|
|
}
|
|
|
|
|
2017-02-07 10:15:23 +01:00
|
|
|
@Override
|
2017-04-12 21:33:19 +02:00
|
|
|
public void connect(@Nullable GBDevice device, boolean firstTime) {
|
2015-08-21 00:58:18 +02:00
|
|
|
Intent intent = createIntent().setAction(ACTION_CONNECT)
|
2017-01-26 00:11:52 +01:00
|
|
|
.putExtra(GBDevice.EXTRA_DEVICE, device)
|
2017-04-12 21:33:19 +02:00
|
|
|
.putExtra(EXTRA_CONNECT_FIRST_TIME, firstTime);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void disconnect() {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_DISCONNECT);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void quit() {
|
|
|
|
Intent intent = createIntent();
|
|
|
|
stopService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void requestDeviceInfo() {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_REQUEST_DEVICEINFO);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-09-24 14:45:21 +02:00
|
|
|
public void onNotification(NotificationSpec notificationSpec) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_NOTIFICATION)
|
2016-01-09 17:54:17 +01:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_FLAGS, notificationSpec.flags)
|
2015-09-24 14:45:21 +02:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_PHONENUMBER, notificationSpec.phoneNumber)
|
2017-01-27 21:16:19 +01:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_SENDER, coalesce(notificationSpec.sender, getContactDisplayNameByNumber(notificationSpec.phoneNumber)))
|
2015-09-24 14:45:21 +02:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_SUBJECT, notificationSpec.subject)
|
|
|
|
.putExtra(EXTRA_NOTIFICATION_TITLE, notificationSpec.title)
|
|
|
|
.putExtra(EXTRA_NOTIFICATION_BODY, notificationSpec.body)
|
2018-10-31 21:47:12 +01:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_ID, notificationSpec.getId())
|
2015-09-24 14:45:21 +02:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_TYPE, notificationSpec.type)
|
2018-10-31 21:47:12 +01:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_ACTIONS, notificationSpec.attachedActions)
|
2017-09-19 13:24:31 +02:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_SOURCENAME, notificationSpec.sourceName)
|
2018-07-23 02:24:38 +02:00
|
|
|
.putExtra(EXTRA_NOTIFICATION_PEBBLE_COLOR, notificationSpec.pebbleColor)
|
|
|
|
.putExtra(EXTRA_NOTIFICATION_SOURCEAPPID, notificationSpec.sourceAppId);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2017-01-09 16:33:00 +01:00
|
|
|
@Override
|
|
|
|
public void onDeleteNotification(int id) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_DELETE_NOTIFICATION)
|
|
|
|
.putExtra(EXTRA_NOTIFICATION_ID, id);
|
|
|
|
invokeService(intent);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
@Override
|
|
|
|
public void onSetTime() {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SETTIME);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetAlarms(ArrayList<? extends Alarm> alarms) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SET_ALARMS)
|
2019-01-07 01:10:57 +01:00
|
|
|
.putExtra(EXTRA_ALARMS, alarms);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-04-04 20:08:34 +02:00
|
|
|
public void onSetCallState(CallSpec callSpec) {
|
2017-02-07 10:15:23 +01:00
|
|
|
Context context = GBApplication.getContext();
|
|
|
|
String currentPrivacyMode = GBApplication.getPrefs().getString("pref_call_privacy_mode", GBApplication.getContext().getString(R.string.p_call_privacy_mode_off));
|
2018-01-30 22:44:27 +01:00
|
|
|
if (currentPrivacyMode.equals(context.getString(R.string.p_call_privacy_mode_name))) {
|
2017-02-07 10:15:23 +01:00
|
|
|
callSpec.name = callSpec.number;
|
2018-01-30 22:44:27 +01:00
|
|
|
} else if (currentPrivacyMode.equals(context.getString(R.string.p_call_privacy_mode_complete))) {
|
2017-02-07 10:15:23 +01:00
|
|
|
callSpec.number = null;
|
|
|
|
callSpec.name = null;
|
2018-01-30 22:44:27 +01:00
|
|
|
} else if (currentPrivacyMode.equals(context.getString(R.string.p_call_privacy_mode_number))){
|
2017-03-14 21:37:16 +01:00
|
|
|
callSpec.name = coalesce(callSpec.name, getContactDisplayNameByNumber(callSpec.number));
|
2017-03-14 22:03:30 +01:00
|
|
|
if (callSpec.name != null && !callSpec.name.equals(callSpec.number)) {
|
2017-03-14 21:37:16 +01:00
|
|
|
callSpec.number = null;
|
|
|
|
}
|
|
|
|
} else {
|
2017-02-07 10:15:23 +01:00
|
|
|
callSpec.name = coalesce(callSpec.name, getContactDisplayNameByNumber(callSpec.number));
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
Intent intent = createIntent().setAction(ACTION_CALLSTATE)
|
2016-04-04 20:08:34 +02:00
|
|
|
.putExtra(EXTRA_CALL_PHONENUMBER, callSpec.number)
|
2017-02-07 10:15:23 +01:00
|
|
|
.putExtra(EXTRA_CALL_DISPLAYNAME, callSpec.name)
|
2016-04-04 20:08:34 +02:00
|
|
|
.putExtra(EXTRA_CALL_COMMAND, callSpec.command);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2016-06-24 10:25:08 +02:00
|
|
|
@Override
|
|
|
|
public void onSetCannedMessages(CannedMessagesSpec cannedMessagesSpec) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SETCANNEDMESSAGES)
|
|
|
|
.putExtra(EXTRA_CANNEDMESSAGES_TYPE, cannedMessagesSpec.type)
|
|
|
|
.putExtra(EXTRA_CANNEDMESSAGES, cannedMessagesSpec.cannedMessages);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2016-06-08 20:27:25 +02:00
|
|
|
@Override
|
|
|
|
public void onSetMusicState(MusicStateSpec stateSpec) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SETMUSICSTATE)
|
|
|
|
.putExtra(EXTRA_MUSIC_REPEAT, stateSpec.repeat)
|
|
|
|
.putExtra(EXTRA_MUSIC_RATE, stateSpec.playRate)
|
|
|
|
.putExtra(EXTRA_MUSIC_STATE, stateSpec.state)
|
|
|
|
.putExtra(EXTRA_MUSIC_SHUFFLE, stateSpec.shuffle)
|
|
|
|
.putExtra(EXTRA_MUSIC_POSITION, stateSpec.position);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
@Override
|
2016-04-04 20:08:34 +02:00
|
|
|
public void onSetMusicInfo(MusicSpec musicSpec) {
|
2015-08-21 00:58:18 +02:00
|
|
|
Intent intent = createIntent().setAction(ACTION_SETMUSICINFO)
|
2016-04-04 20:08:34 +02:00
|
|
|
.putExtra(EXTRA_MUSIC_ARTIST, musicSpec.artist)
|
|
|
|
.putExtra(EXTRA_MUSIC_ALBUM, musicSpec.album)
|
|
|
|
.putExtra(EXTRA_MUSIC_TRACK, musicSpec.track)
|
|
|
|
.putExtra(EXTRA_MUSIC_DURATION, musicSpec.duration)
|
|
|
|
.putExtra(EXTRA_MUSIC_TRACKCOUNT, musicSpec.trackCount)
|
|
|
|
.putExtra(EXTRA_MUSIC_TRACKNR, musicSpec.trackNr);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onInstallApp(Uri uri) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_INSTALL)
|
|
|
|
.putExtra(EXTRA_URI, uri);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAppInfoReq() {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_REQUEST_APPINFO);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-09-13 21:44:26 +02:00
|
|
|
public void onAppStart(UUID uuid, boolean start) {
|
2015-08-21 00:58:18 +02:00
|
|
|
Intent intent = createIntent().setAction(ACTION_STARTAPP)
|
2015-09-13 21:44:26 +02:00
|
|
|
.putExtra(EXTRA_APP_UUID, uuid)
|
|
|
|
.putExtra(EXTRA_APP_START, start);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAppDelete(UUID uuid) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_DELETEAPP)
|
|
|
|
.putExtra(EXTRA_APP_UUID, uuid);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2016-03-03 14:23:17 +01:00
|
|
|
@Override
|
2017-08-01 00:03:28 +02:00
|
|
|
public void onAppConfiguration(UUID uuid, String config, Integer id) {
|
2016-03-03 14:23:17 +01:00
|
|
|
Intent intent = createIntent().setAction(ACTION_APP_CONFIGURE)
|
|
|
|
.putExtra(EXTRA_APP_UUID, uuid)
|
|
|
|
.putExtra(EXTRA_APP_CONFIG, config);
|
2017-08-01 00:03:28 +02:00
|
|
|
|
|
|
|
if (id != null) {
|
|
|
|
intent.putExtra(EXTRA_APP_CONFIG_ID, id);
|
|
|
|
}
|
2016-03-03 14:23:17 +01:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2016-06-12 01:20:12 +02:00
|
|
|
@Override
|
|
|
|
public void onAppReorder(UUID[] uuids) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_APP_REORDER)
|
|
|
|
.putExtra(EXTRA_APP_UUID, uuids);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
@Override
|
2018-03-31 16:21:25 +02:00
|
|
|
public void onFetchRecordedData(int dataTypes) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_FETCH_RECORDED_DATA)
|
|
|
|
.putExtra(EXTRA_RECORDED_DATA_TYPES, dataTypes);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-12-16 16:05:13 +01:00
|
|
|
public void onReset(int flags) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_RESET)
|
|
|
|
.putExtra(EXTRA_RESET_FLAGS, flags);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2015-12-28 14:38:56 +01:00
|
|
|
@Override
|
2016-02-29 22:05:29 +01:00
|
|
|
public void onHeartRateTest() {
|
2015-12-28 14:38:56 +01:00
|
|
|
Intent intent = createIntent().setAction(ACTION_HEARTRATE_TEST);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
@Override
|
|
|
|
public void onFindDevice(boolean start) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_FIND_DEVICE)
|
2015-08-22 12:38:35 +02:00
|
|
|
.putExtra(EXTRA_FIND_START, start);
|
2015-08-21 00:58:18 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2016-09-20 20:28:52 +02:00
|
|
|
@Override
|
|
|
|
public void onSetConstantVibration(int intensity) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SET_CONSTANT_VIBRATION)
|
|
|
|
.putExtra(EXTRA_VIBRATION_INTENSITY, intensity);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2015-08-21 00:58:18 +02:00
|
|
|
@Override
|
|
|
|
public void onScreenshotReq() {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_REQUEST_SCREENSHOT);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
2015-09-02 08:00:26 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnableRealtimeSteps(boolean enable) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_ENABLE_REALTIME_STEPS)
|
2016-04-03 22:38:06 +02:00
|
|
|
.putExtra(EXTRA_BOOLEAN_ENABLE, enable);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnableHeartRateSleepSupport(boolean enable) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_ENABLE_HEARTRATE_SLEEP_SUPPORT)
|
|
|
|
.putExtra(EXTRA_BOOLEAN_ENABLE, enable);
|
2015-09-02 08:00:26 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
2016-04-12 23:12:15 +02:00
|
|
|
|
2017-11-11 00:04:51 +01:00
|
|
|
@Override
|
|
|
|
public void onSetHeartRateMeasurementInterval(int seconds) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SET_HEARTRATE_MEASUREMENT_INTERVAL)
|
|
|
|
.putExtra(EXTRA_INTERVAL_SECONDS, seconds);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2016-04-12 23:12:15 +02:00
|
|
|
@Override
|
|
|
|
public void onEnableRealtimeHeartRateMeasurement(boolean enable) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_ENABLE_REALTIME_HEARTRATE_MEASUREMENT)
|
|
|
|
.putExtra(EXTRA_BOOLEAN_ENABLE, enable);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
2016-05-16 17:30:11 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAddCalendarEvent(CalendarEventSpec calendarEventSpec) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_ADD_CALENDAREVENT)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_ID, calendarEventSpec.id)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_TYPE, calendarEventSpec.type)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_TIMESTAMP, calendarEventSpec.timestamp)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_DURATION, calendarEventSpec.durationInSeconds)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_TITLE, calendarEventSpec.title)
|
2017-04-21 10:50:10 +02:00
|
|
|
.putExtra(EXTRA_CALENDAREVENT_DESCRIPTION, calendarEventSpec.description)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_LOCATION, calendarEventSpec.location);
|
2016-05-16 17:30:11 +02:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
2016-05-16 23:37:40 +02:00
|
|
|
|
|
|
|
@Override
|
2016-05-24 13:11:57 +02:00
|
|
|
public void onDeleteCalendarEvent(byte type, long id) {
|
2016-05-16 23:37:40 +02:00
|
|
|
Intent intent = createIntent().setAction(ACTION_DELETE_CALENDAREVENT)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_TYPE, type)
|
|
|
|
.putExtra(EXTRA_CALENDAREVENT_ID, id);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
2016-10-11 23:06:59 +02:00
|
|
|
|
2016-11-13 20:47:24 +01:00
|
|
|
@Override
|
|
|
|
public void onSendConfiguration(String config) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SEND_CONFIGURATION)
|
|
|
|
.putExtra(EXTRA_CONFIG, config);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2019-02-20 14:09:21 +01:00
|
|
|
@Override
|
|
|
|
public void onReadConfiguration(String config) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_READ_CONFIGURATION)
|
|
|
|
.putExtra(EXTRA_CONFIG, config);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
2016-10-11 23:06:59 +02:00
|
|
|
@Override
|
|
|
|
public void onTestNewFunction() {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_TEST_NEW_FUNCTION);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
2016-12-31 15:56:05 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSendWeather(WeatherSpec weatherSpec) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SEND_WEATHER)
|
2017-11-29 23:57:36 +01:00
|
|
|
.putExtra(EXTRA_WEATHER, weatherSpec);
|
2016-12-31 15:56:05 +01:00
|
|
|
invokeService(intent);
|
|
|
|
}
|
2017-01-27 21:16:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns contact DisplayName by call number
|
2017-03-14 21:37:16 +01:00
|
|
|
*
|
2017-01-27 21:16:19 +01:00
|
|
|
* @param number contact number
|
|
|
|
* @return contact DisplayName, if found it
|
|
|
|
*/
|
|
|
|
private String getContactDisplayNameByNumber(String number) {
|
2019-05-01 15:13:08 +02:00
|
|
|
Uri uri;
|
|
|
|
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
|
|
|
uri = Uri.withAppendedPath(ContactsContract.PhoneLookup.ENTERPRISE_CONTENT_FILTER_URI, Uri.encode(number));
|
|
|
|
} else {
|
|
|
|
uri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
|
|
|
|
}
|
2017-01-27 21:16:19 +01:00
|
|
|
String name = number;
|
|
|
|
|
|
|
|
if (number == null || number.equals("")) {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
try (Cursor contactLookup = mContext.getContentResolver().query(uri, null, null, null, null)) {
|
|
|
|
if (contactLookup != null && contactLookup.getCount() > 0) {
|
|
|
|
contactLookup.moveToNext();
|
|
|
|
name = contactLookup.getString(contactLookup.getColumnIndex(ContactsContract.Data.DISPLAY_NAME));
|
|
|
|
}
|
|
|
|
} catch (SecurityException e) {
|
|
|
|
// ignore, just return name below
|
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
2018-07-28 17:23:58 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetFmFrequency(float frequency) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SET_FM_FREQUENCY)
|
|
|
|
.putExtra(EXTRA_FM_FREQUENCY, frequency);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetLedColor(int color) {
|
|
|
|
Intent intent = createIntent().setAction(ACTION_SET_LED_COLOR)
|
|
|
|
.putExtra(EXTRA_LED_COLOR, color);
|
|
|
|
invokeService(intent);
|
|
|
|
}
|
2015-08-21 00:58:18 +02:00
|
|
|
}
|