| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- /*
- Copyright 2013-2014 appPlant UG
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you 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.
- */
- var LocalNotification = function () {
- this._defaults = {
- message: '',
- title: '',
- autoCancel: false,
- badge: 0,
- id: '0',
- json: '',
- repeat: ''
- };
- };
- LocalNotification.prototype = {
- /**
- * Returns the default settings
- *
- * @return {Object}
- */
- getDefaults: function () {
- return this._defaults;
- },
- /**
- * Overwrite default settings
- *
- * @param {Object} defaults
- */
- setDefaults: function (newDefaults) {
- var defaults = this.getDefaults();
- for (var key in defaults) {
- if (newDefaults[key] !== undefined) {
- defaults[key] = newDefaults[key];
- }
- }
- },
- /**
- * @private
- *
- * Merges custom properties with the default values.
- *
- * @param {Object} options
- * Set of custom values
- *
- * @retrun {Object}
- * The merged property list
- */
- mergeWithDefaults: function (options) {
- var defaults = this.getDefaults();
- for (var key in defaults) {
- if (options[key] === undefined) {
- options[key] = defaults[key];
- }
- }
- return options;
- },
- /**
- * @private
- *
- * Merges the platform specific properties into the default properties.
- *
- * @return {Object}
- * The default properties for the platform
- */
- applyPlatformSpecificOptions: function () {
- var defaults = this._defaults;
- switch (device.platform) {
- case 'Android':
- defaults.icon = 'icon';
- defaults.smallIcon = null;
- defaults.ongoing = false;
- defaults.sound = 'TYPE_NOTIFICATION'; break;
- case 'iOS':
- defaults.sound = ''; break;
- case 'WinCE': case 'Win32NT':
- defaults.smallImage = null;
- defaults.image = null;
- defaults.wideImage = null;
- };
- return defaults;
- },
- /**
- * @private
- *
- * Creates a callback, which will be executed within a specific scope.
- *
- * @param {Function} callbackFn
- * The callback function
- * @param {Object} scope
- * The scope for the function
- *
- * @return {Function}
- * The new callback function
- */
- createCallbackFn: function (callbackFn, scope) {
- return function () {
- callbackFn.apply(arguments, scope || this);
- }
- },
- /**
- * Add a new entry to the registry
- *
- * @param {Object} options
- * The notification properties
- *
- * @return {Number}
- * The notification's ID
- */
- add: function (options) {
- var options = this.mergeWithDefaults(options),
- callbackFn = null;
- if (options.id) {
- options.id = options.id.toString();
- }
- if (options.date === undefined) {
- options.date = new Date();
- }
- if (typeof options.date == 'object') {
- options.date = Math.round(options.date.getTime()/1000);
- }
- if (['WinCE', 'Win32NT'].indexOf(device.platform)) {
- callbackFn = function (cmd) {
- eval(cmd);
- };
- }
- cordova.exec(callbackFn, null, 'LocalNotification', 'add', [options]);
- return options.id;
- },
- /**
- * Cancels the specified notification.
- *
- * @param {String} id
- * The ID of the notification
- * @param {Function} callback
- * A function to be called after the notification has been canceled
- * @param {Object} scope
- * The scope for the callback function
- */
- cancel: function (id, callback, scope) {
- var id = id.toString(),
- callbackFn = this.createCallbackFn(callback, scope);
- cordova.exec(callbackFn, null, 'LocalNotification', 'cancel', [id]);
- },
- /**
- * Removes all previously registered notifications.
- *
- * @param {Function} callback
- * A function to be called after all notifications have been canceled
- * @param {Object} scope
- * The scope for the callback function
- */
- cancelAll: function (callback, scope) {
- var callbackFn = this.createCallbackFn(callback, scope);
- cordova.exec(callbackFn, null, 'LocalNotification', 'cancelAll', []);
- },
- /**
- * Retrieves a list with all currently pending notifications.
- *
- * @param {Function} callback
- * A callback function to be called with the list
- * @param {Object} scope
- * The scope for the callback function
- */
- getScheduledIds: function (callback, scope) {
- var callbackFn = this.createCallbackFn(callback, scope);
- cordova.exec(callbackFn, null, 'LocalNotification', 'getScheduledIds', []);
- },
- /**
- * Checks wether a notification with an ID is scheduled.
- *
- * @param {String} id
- * The ID of the notification
- * @param {Function} callback
- * A callback function to be called with the list
- * @param {Object} scope
- * The scope for the callback function
- */
- isScheduled: function (id, callback, scope) {
- var id = id.toString(),
- callbackFn = this.createCallbackFn(callback, scope);
- cordova.exec(callbackFn, null, 'LocalNotification', 'isScheduled', [id]);
- },
- /**
- * Occurs when a notification was added.
- *
- * @param {String} id
- * The ID of the notification
- * @param {String} state
- * Either "foreground" or "background"
- * @param {String} json
- * A custom (JSON) string
- */
- onadd: function (id, state, json) {},
- /**
- * Occurs when the notification is triggered.
- *
- * @param {String} id
- * The ID of the notification
- * @param {String} state
- * Either "foreground" or "background"
- * @param {String} json
- * A custom (JSON) string
- */
- ontrigger: function (id, state, json) {},
- /**
- * Fires after the notification was clicked.
- *
- * @param {String} id
- * The ID of the notification
- * @param {String} state
- * Either "foreground" or "background"
- * @param {String} json
- * A custom (JSON) string
- */
- onclick: function (id, state, json) {},
- /**
- * Fires if the notification was canceled.
- *
- * @param {String} id
- * The ID of the notification
- * @param {String} state
- * Either "foreground" or "background"
- * @param {String} json
- * A custom (JSON) string
- */
- oncancel: function (id, state, json) {}
- };
- var plugin = new LocalNotification(),
- channel = require('cordova/channel');
- // Called after all 'deviceready' listener are called
- channel.deviceready.subscribe( function () {
- // Device is ready now, the listeners are registered and all queued events
- // can be executed now.
- cordova.exec(null, null, 'LocalNotification', 'deviceready', []);
- });
- channel.onCordovaReady.subscribe( function () {
- // The cordova device plugin is ready now
- channel.onCordovaInfoReady.subscribe( function () {
- if (device.platform == 'Android') {
- channel.onPause.subscribe( function () {
- // Necessary to set the state to `background`
- cordova.exec(null, null, 'LocalNotification', 'pause', []);
- });
- channel.onResume.subscribe( function () {
- // Necessary to set the state to `foreground`
- cordova.exec(null, null, 'LocalNotification', 'resume', []);
- });
- // Necessary to set the state to `foreground`
- cordova.exec(null, null, 'LocalNotification', 'resume', []);
- }
- // Merges the platform specific properties into the default properties
- plugin.applyPlatformSpecificOptions();
- });
- });
- module.exports = plugin;
|