var JPushPlugin = function () {} // private plugin function JPushPlugin.prototype.receiveMessage = {} JPushPlugin.prototype.openNotification = {} JPushPlugin.prototype.receiveNotification = {} JPushPlugin.prototype.isPlatformIOS = function () { return (device.platform === 'iPhone' || device.platform === 'iPad' || device.platform === 'iPod touch' || device.platform === 'iOS') } JPushPlugin.prototype.errorCallback = function (msg) { console.log('JPush Callback Error: ' + msg) } JPushPlugin.prototype.callNative = function (name, args, successCallback) { cordova.exec(successCallback, this.errorCallback, 'JPushPlugin', name, args) } // Common methods JPushPlugin.prototype.init = function () { if (this.isPlatformIOS()) { this.callNative('initial', [], null) } else { this.callNative('init', [], null) } } JPushPlugin.prototype.setDebugMode = function (mode) { if (device.platform === 'Android') { this.callNative('setDebugMode', [mode], null) } else { if (mode === true) { this.setDebugModeFromIos() } else { this.setLogOFF() } } } JPushPlugin.prototype.getRegistrationID = function (successCallback) { this.callNative('getRegistrationID', [], successCallback) } JPushPlugin.prototype.stopPush = function () { this.callNative('stopPush', [], null) } JPushPlugin.prototype.resumePush = function () { this.callNative('resumePush', [], null) } JPushPlugin.prototype.isPushStopped = function (successCallback) { this.callNative('isPushStopped', [], successCallback) } JPushPlugin.prototype.clearLocalNotifications = function () { if (device.platform === 'Android') { this.callNative('clearLocalNotifications', [], null) } else { this.clearAllLocalNotifications() } } JPushPlugin.prototype.setTagsWithAlias = function (tags, alias) { if (tags == null) { this.setAlias(alias) return } if (alias == null) { this.setTags(tags) return } var arrayTagWithAlias = [tags] arrayTagWithAlias.unshift(alias) this.callNative('setTagsWithAlias', arrayTagWithAlias, null) } JPushPlugin.prototype.setTags = function (tags) { this.callNative('setTags', tags, null) } JPushPlugin.prototype.setAlias = function (alias) { this.callNative('setAlias', [alias], null) } // 判断系统设置中是否对本应用启用通知。 // iOS: 返回值如果大于 0,代表通知开启;0: 通知关闭。 // UIRemoteNotificationTypeNone = 0, // UIRemoteNotificationTypeBadge = 1 << 0, // UIRemoteNotificationTypeSound = 1 << 1, // UIRemoteNotificationTypeAlert = 1 << 2, // UIRemoteNotificationTypeNewsstandContentAvailability = 1 << 3, // Android: 返回值 1 代表通知启用;0: 通知关闭。 JPushPlugin.prototype.getUserNotificationSettings = function (successCallback) { if (this.isPlatformIOS()) { this.callNative('getUserNotificationSettings', [], successCallback) } else if (device.platform === 'Android') { this.callNative('areNotificationEnabled', [], successCallback) } } // iOS methods JPushPlugin.prototype.startJPushSDK = function () { this.callNative('startJPushSDK', [], null) } JPushPlugin.prototype.setBadge = function (value) { if (this.isPlatformIOS()) { this.callNative('setBadge', [value], null) } } JPushPlugin.prototype.resetBadge = function () { if (this.isPlatformIOS()) { this.callNative('resetBadge', [], null) } } JPushPlugin.prototype.setDebugModeFromIos = function () { if (this.isPlatformIOS()) { this.callNative('setDebugModeFromIos', [], null) } } JPushPlugin.prototype.setLogOFF = function () { if (this.isPlatformIOS()) { this.callNative('setLogOFF', [], null) } } JPushPlugin.prototype.setCrashLogON = function () { if (this.isPlatformIOS()) { this.callNative('crashLogON', [], null) } } JPushPlugin.prototype.addLocalNotificationForIOS = function (delayTime, content, badge, notificationID, extras) { if (this.isPlatformIOS()) { this.callNative('setLocalNotification', [delayTime, content, badge, notificationID, extras], null) } } JPushPlugin.prototype.deleteLocalNotificationWithIdentifierKeyInIOS = function (identifierKey) { if (this.isPlatformIOS()) { this.callNative('deleteLocalNotificationWithIdentifierKey', [identifierKey], null) } } JPushPlugin.prototype.clearAllLocalNotifications = function () { if (this.isPlatformIOS()) { this.callNative('clearAllLocalNotifications', [], null) } } JPushPlugin.prototype.setLocation = function (latitude, longitude) { if (this.isPlatformIOS()) { this.callNative('setLocation', [latitude, longitude], null) } } JPushPlugin.prototype.startLogPageView = function (pageName) { if (this.isPlatformIOS()) { this.callNative('startLogPageView', [pageName], null) } } JPushPlugin.prototype.stopLogPageView = function (pageName) { if (this.isPlatformIOS()) { this.callNative('stopLogPageView', [pageName], null) } } JPushPlugin.prototype.beginLogPageView = function (pageName, duration) { if (this.isPlatformIOS()) { this.callNative('beginLogPageView', [pageName, duration], null) } } JPushPlugin.prototype.setApplicationIconBadgeNumber = function (badge) { if (this.isPlatformIOS()) { this.callNative('setApplicationIconBadgeNumber', [badge], null) } } JPushPlugin.prototype.getApplicationIconBadgeNumber = function (callback) { if (this.isPlatformIOS()) { this.callNative('getApplicationIconBadgeNumber', [], callback) } } JPushPlugin.prototype.addDismissActions = function (actions, categoryId) { this.callNative('addDismissActions', [actions, categoryId]) } JPushPlugin.prototype.addNotificationActions = function (actions, categoryId) { this.callNative('addNotificationActions', [actions, categoryId]) } // Android methods JPushPlugin.prototype.setBasicPushNotificationBuilder = function () { if (device.platform == 'Android') { this.callNative('setBasicPushNotificationBuilder', [], null) } } JPushPlugin.prototype.setCustomPushNotificationBuilder = function () { if (device.platform == 'Android') { this.callNative('setCustomPushNotificationBuilder', [], null) } } JPushPlugin.prototype.receiveRegistrationIdInAndroidCallback = function (data) { if (device.platform === 'Android') { data = JSON.stringify(data) var event = JSON.parse(data) cordova.fireDocumentEvent('jpush.receiveRegistrationId', event) } } JPushPlugin.prototype.receiveMessageInAndroidCallback = function (data) { data = JSON.stringify(data) console.log('JPushPlugin:receiveMessageInAndroidCallback: ' + data) this.receiveMessage = JSON.parse(data) cordova.fireDocumentEvent('jpush.receiveMessage', this.receiveMessage) } JPushPlugin.prototype.openNotificationInAndroidCallback = function (data) { data = JSON.stringify(data) console.log('JPushPlugin:openNotificationInAndroidCallback: ' + data) this.openNotification = JSON.parse(data) cordova.fireDocumentEvent('jpush.openNotification', this.openNotification) } JPushPlugin.prototype.receiveNotificationInAndroidCallback = function (data) { data = JSON.stringify(data) console.log('JPushPlugin:receiveNotificationInAndroidCallback: ' + data) this.receiveNotification = JSON.parse(data) cordova.fireDocumentEvent('jpush.receiveNotification', this.receiveNotification) } JPushPlugin.prototype.clearAllNotification = function () { if (device.platform === 'Android') { this.callNative('clearAllNotification', [], null) } } JPushPlugin.prototype.clearNotificationById = function (id) { if (device.platform === 'Android') { this.callNative('clearNotificationById', [id], null) } } JPushPlugin.prototype.setLatestNotificationNum = function (num) { if (device.platform == 'Android') { this.callNative('setLatestNotificationNum', [num], null) } } JPushPlugin.prototype.addLocalNotification = function (builderId, content, title, notificationID, broadcastTime, extras) { if (device.platform == 'Android') { this.callNative('addLocalNotification', [builderId, content, title, notificationID, broadcastTime, extras], null) } } JPushPlugin.prototype.removeLocalNotification = function (notificationID) { if (device.platform === 'Android') { this.callNative('removeLocalNotification', [notificationID], null) } } JPushPlugin.prototype.reportNotificationOpened = function (msgID) { if (device.platform === 'Android') { this.callNative('reportNotificationOpened', [msgID], null) } } /** *是否开启统计分析功能,用于“用户使用时长”,“活跃用户”,“用户打开次数”的统计,并上报到服务器上, *在 Portal 上展示给开发者。 */ JPushPlugin.prototype.setStatisticsOpen = function (mode) { if (device.platform === 'Android') { this.callNative('setStatisticsOpen', [mode], null) } } /** * 用于在 Android 6.0 及以上系统,申请一些权限 * 具体可看:http://docs.jpush.io/client/android_api/#android-60 */ JPushPlugin.prototype.requestPermission = function () { if (device.platform === 'Android') { this.callNative('requestPermission', [], null) } } JPushPlugin.prototype.setSilenceTime = function (startHour, startMinute, endHour, endMinute) { if (device.platform === 'Android') { this.callNative('setSilenceTime', [startHour, startMinute, endHour, endMinute], null) } } JPushPlugin.prototype.setPushTime = function (weekdays, startHour, endHour) { if (device.platform === 'Android') { this.callNative('setPushTime', [weekdays, startHour, endHour], null) } } if (!window.plugins) { window.plugins = {} } if (!window.plugins.jPushPlugin) { window.plugins.jPushPlugin = new JPushPlugin() } module.exports = new JPushPlugin()