2020-11-07 17:59:37 +02:00
|
|
|
import { Notification } from '@joplin/lib/models/Alarm';
|
|
|
|
import Logger from '@joplin/lib/Logger';
|
2021-01-23 17:51:19 +02:00
|
|
|
const PushNotificationIOS = require('@react-native-community/push-notification-ios').default;
|
2017-11-28 21:36:47 +02:00
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
export default class AlarmServiceDriver {
|
2017-11-28 22:17:34 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
private hasPermission_: boolean = null;
|
|
|
|
private inAppNotificationHandler_: any = null;
|
|
|
|
private logger_: Logger;
|
2020-10-09 19:35:46 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
constructor(logger: Logger) {
|
2020-10-16 17:26:19 +02:00
|
|
|
this.logger_ = logger;
|
2020-11-12 21:13:28 +02:00
|
|
|
PushNotificationIOS.addEventListener('localNotification', (instance: any) => {
|
2020-02-09 18:29:46 +02:00
|
|
|
if (!this.inAppNotificationHandler_) return;
|
2017-11-28 22:17:34 +02:00
|
|
|
|
2020-02-09 18:29:46 +02:00
|
|
|
if (!instance || !instance._data || !instance._data.id) {
|
2020-10-16 17:26:19 +02:00
|
|
|
this.logger_.warn('PushNotificationIOS.addEventListener: Did not receive a proper notification instance');
|
2020-02-09 18:29:46 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-11-28 22:17:34 +02:00
|
|
|
|
2020-02-09 18:29:46 +02:00
|
|
|
const id = instance._data.id;
|
|
|
|
this.inAppNotificationHandler_(id);
|
|
|
|
});
|
2017-11-28 21:36:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hasPersistentNotifications() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-13 00:16:42 +02:00
|
|
|
notificationIsSet() {
|
2019-07-29 15:43:53 +02:00
|
|
|
throw new Error('Available only for non-persistent alarms');
|
2017-11-28 21:36:47 +02:00
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
setInAppNotificationHandler(v: any) {
|
2017-11-28 22:17:34 +02:00
|
|
|
this.inAppNotificationHandler_ = v;
|
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
async hasPermissions(perm: any = null) {
|
2017-11-28 21:36:47 +02:00
|
|
|
if (perm !== null) return perm.alert && perm.badge && perm.sound;
|
|
|
|
|
|
|
|
if (this.hasPermission_ !== null) return this.hasPermission_;
|
|
|
|
|
2019-09-13 00:16:42 +02:00
|
|
|
return new Promise((resolve) => {
|
2020-11-12 21:13:28 +02:00
|
|
|
PushNotificationIOS.checkPermissions(async (perm: any) => {
|
2020-02-09 18:29:46 +02:00
|
|
|
const ok = await this.hasPermissions(perm);
|
|
|
|
this.hasPermission_ = ok;
|
|
|
|
resolve(ok);
|
|
|
|
});
|
2017-11-28 21:36:47 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async requestPermissions() {
|
2020-11-12 21:13:28 +02:00
|
|
|
const options: any = {
|
2020-02-09 18:29:46 +02:00
|
|
|
alert: 1,
|
|
|
|
badge: 1,
|
|
|
|
sound: 1,
|
2020-10-09 19:35:46 +02:00
|
|
|
};
|
|
|
|
const newPerm = await PushNotificationIOS.requestPermissions(options);
|
2020-02-09 18:29:46 +02:00
|
|
|
this.hasPermission_ = null;
|
|
|
|
return this.hasPermissions(newPerm);
|
2017-11-28 21:36:47 +02:00
|
|
|
}
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
async clearNotification(id: number) {
|
2020-02-09 18:29:46 +02:00
|
|
|
PushNotificationIOS.cancelLocalNotifications({ id: `${id}` });
|
2017-11-28 21:36:47 +02:00
|
|
|
}
|
2019-07-29 15:43:53 +02:00
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
async scheduleNotification(notification: Notification) {
|
2017-11-28 21:36:47 +02:00
|
|
|
if (!(await this.hasPermissions())) {
|
|
|
|
const ok = await this.requestPermissions();
|
|
|
|
if (!ok) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID must be a string and userInfo must be supplied otherwise cancel won't work
|
2020-11-12 21:13:28 +02:00
|
|
|
const iosNotification: any = {
|
2019-09-19 23:51:18 +02:00
|
|
|
id: `${notification.id}`,
|
2017-11-28 21:36:47 +02:00
|
|
|
alertTitle: notification.title,
|
2020-02-09 18:29:46 +02:00
|
|
|
fireDate: notification.date.toISOString(),
|
2019-09-19 23:51:18 +02:00
|
|
|
userInfo: { id: `${notification.id}` },
|
2017-11-28 21:36:47 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if ('body' in notification) iosNotification.alertBody = notification.body;
|
|
|
|
|
2020-02-09 18:29:46 +02:00
|
|
|
PushNotificationIOS.scheduleLocalNotification(iosNotification);
|
2017-11-28 21:36:47 +02:00
|
|
|
}
|
|
|
|
}
|