| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671 |
- /*
- 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 exec = require('cordova/exec'),
- channel = require('cordova/channel');
- // Called after 'deviceready' event
- channel.deviceready.subscribe( function () {
- // Device is ready now, the listeners are registered
- // and all queued events can be executed.
- exec(null, null, 'LocalNotification', 'deviceready', []);
- });
- // Called before 'deviceready' event
- 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`
- exec(null, null, 'LocalNotification', 'pause', []);
- });
- channel.onResume.subscribe( function () {
- // Necessary to set the state to `foreground`
- exec(null, null, 'LocalNotification', 'resume', []);
- });
- // Necessary to set the state to `foreground`
- exec(null, null, 'LocalNotification', 'resume', []);
- }
- // Merges the platform specific properties into the default properties
- exports.applyPlatformSpecificOptions();
- });
- });
- /**
- * @private
- *
- * Default values.
- */
- exports._defaults = {
- message: '',
- title: '',
- autoCancel: false,
- badge: -1,
- id: '0',
- json: '',
- repeat: ''
- };
- /**
- * Returns the default settings
- *
- * @return {Object}
- */
- exports.getDefaults = function () {
- return this._defaults;
- };
- /**
- * Overwrite default settings
- *
- * @param {Object} defaults
- */
- exports.setDefaults = function (newDefaults) {
- var defaults = this.getDefaults();
- for (var key in defaults) {
- if (newDefaults[key] !== undefined) {
- defaults[key] = newDefaults[key];
- }
- }
- };
- /**
- * Add a new entry to the registry
- *
- * @param {Object} opts
- * The notification properties
- * @param {Function} callback
- * A function to be called after the notification has been canceled
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.add = function (opts, callback, scope) {
- this.registerPermission(function(granted) {
- if (!granted)
- return;
- var notifications = Array.isArray(opts) ? opts : [opts];
- for (var i = 0; i < notifications.length; i++) {
- var properties = notifications[i];
- this.mergeWithDefaults(properties);
- this.convertProperties(properties);
- }
- this.exec('add', notifications, callback, scope);
- }, this);
- };
- /**
- * Update existing notifications specified by IDs in options.
- *
- * @param {Object} options
- * The notification properties to update
- * @param {Function} callback
- * A function to be called after the notification has been updated
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.update = function (opts, callback, scope) {
- var notifications = Array.isArray(opts) ? opts : [opts];
- for (var i = 0; i < notifications.length; i++) {
- var properties = notifications[i];
- this.convertProperties(properties);
- }
- this.exec('update', notifications, callback, scope);
- };
- /**
- * Clear the specified notification.
- *
- * @param {String} id
- * The ID of the notification
- * @param {Function} callback
- * A function to be called after the notification has been cleared
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.clear = function (ids, callback, scope) {
- ids = Array.isArray(ids) ? ids : [ids];
- ids = this.convertIds(ids);
- this.exec('clear', ids, callback, scope);
- };
- /**
- * Clear all previously sheduled notifications.
- *
- * @param {Function} callback
- * A function to be called after all notifications have been cleared
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.clearAll = function (callback, scope) {
- this.exec('clearAll', null, callback, scope);
- };
- /**
- * Cancel the specified notifications.
- *
- * @param {String[]} ids
- * The IDs of the notifications
- * @param {Function} callback
- * A function to be called after the notifications has been canceled
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.cancel = function (ids, callback, scope) {
- ids = Array.isArray(ids) ? ids : [ids];
- ids = this.convertIds(ids);
- this.exec('cancel', ids, callback, scope);
- };
- /**
- * Remove 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
- */
- exports.cancelAll = function (callback, scope) {
- this.exec('cancelAll', null, callback, scope);
- };
- /**
- * Check if 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
- */
- exports.isScheduled = function (id, callback, scope) {
- var notId = (id || '0').toString();
- this.exec('isScheduled', notId, callback, scope);
- };
- /**
- * Check if a notification with an ID was triggered.
- *
- * @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
- */
- exports.isTriggered = function (id, callback, scope) {
- var notId = (id || '0').toString();
- this.exec('isTriggered', notId, callback, scope);
- };
- /**
- * List 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
- */
- exports.getScheduledIds = function (callback, scope) {
- this.exec('getScheduledIds', null, callback, scope);
- };
- /**
- * List all triggered notifications.
- *
- * @param {Function} callback
- * A callback function to be called with the list
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.getTriggeredIds = function (callback, scope) {
- this.exec('getTriggeredIds', null, callback, scope);
- };
- /**
- * List all properties for given scheduled notifications.
- * If called without IDs, all notification will be returned.
- *
- * @param {Number[]?} ids
- * Set of notification IDs
- * @param {Function} callback
- * A callback function to be called with the list
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.getScheduled = function () {
- var args = Array.apply(null, arguments);
- if (typeof args[0] == 'function') {
- args.unshift([]);
- }
- var ids = args[0],
- callback = args[1],
- scope = args[2];
- if (!Array.isArray(ids)) {
- ids = [ids];
- }
- ids = this.convertIds(ids);
- this.exec('getScheduled', ids, callback, scope);
- };
- /**
- * Retrieve the properties for all scheduled notifications.
- *
- * @param {Function} callback
- * A callback function to be called with the list
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.getAllScheduled = function (callback, scope) {
- this.exec('getScheduled', null, callback, scope);
- };
- /**
- * List all properties for given triggered notifications.
- * If called without IDs, all notification will be returned.
- *
- * @param {Number[]?} ids
- * Set of notification IDs
- * @param {Function} callback
- * A callback function to be called with the list
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.getTriggered = function () {
- var args = Array.apply(null, arguments);
- if (typeof args[0] == 'function') {
- args.unshift([]);
- }
- var ids = args[0],
- callback = args[1],
- scope = args[2];
- if (!Array.isArray(ids)) {
- ids = [ids];
- }
- ids = this.convertIds(ids);
- this.exec('getTriggered', ids, callback, scope);
- };
- /**
- * Retrieve the properties for all triggered notifications.
- *
- * @param {Function} callback
- * A callback function to be called with the list
- * @param {Object?} scope
- * The scope for the callback function
- */
- exports.getAllTriggered = function (callback, scope) {
- this.exec('getTriggered', null, callback, scope);
- };
- /**
- * Informs if the app has the permission to show notifications.
- *
- * @param {Function} callback
- * The function to be exec as the callback
- * @param {Object?} scope
- * The callback function's scope
- */
- exports.hasPermission = function (callback, scope) {
- var fn = this.createCallbackFn(callback, scope);
- if (device.platform != 'iOS') {
- fn(true);
- return;
- }
- exec(fn, null, 'LocalNotification', 'hasPermission', []);
- };
- /**
- * Register permission to show notifications if not already granted.
- *
- * @param {Function} callback
- * The function to be exec as the callback
- * @param {Object?} scope
- * The callback function's scope
- */
- exports.registerPermission = function (callback, scope) {
- var fn = this.createCallbackFn(callback, scope);
- if (device.platform != 'iOS') {
- fn(true);
- return;
- }
- exec(fn, null, 'LocalNotification', 'registerPermission', []);
- };
- /**
- * @deprecated
- *
- * Register permission to show notifications if not already granted.
- *
- * @param {Function} callback
- * The function to be exec as the callback
- * @param {Object?} scope
- * The callback function's scope
- */
- exports.promptForPermission = function (callback, scope) {
- console.warn('Depreated: Please use `notification.local.registerPermission` instead.');
- exports.registerPermission.apply(this, arguments);
- };
- /**
- * 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
- * @param {Object} data
- * The notification properties
- */
- exports.onadd = function (id, state, json, data) {};
- /**
- * 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
- * @param {Object} data
- * The notification properties
- */
- exports.ontrigger = function (id, state, json, data) {};
- /**
- * 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
- * @param {Object} data
- * The notification properties
- */
- exports.onclick = function (id, state, json, data) {};
- /**
- * 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
- * @param {Object} data
- * The notification properties
- */
- exports.oncancel = function (id, state, json, data) {};
- /**
- * Get fired when the notification was cleared.
- *
- * @param {String} id
- * The ID of the notification
- * @param {String} state
- * Either "foreground" or "background"
- * @param {String} json
- * A custom (JSON) string
- * @param {Object} data
- * The notification properties
- */
- exports.onclear = function (id, state, json, data) {};
- /**
- * @private
- *
- * Merges custom properties with the default values.
- *
- * @param {Object} options
- * Set of custom values
- *
- * @retrun {Object}
- * The merged property list
- */
- exports.mergeWithDefaults = function (options) {
- var defaults = this.getDefaults();
- options.date = this.getValueFor(options, 'date', 'at', 'firstAt');
- options.repeat = this.getValueFor(options, 'repeat', 'every');
- options.message = this.getValueFor(options, 'message', 'text');
- for (var key in defaults) {
- if (options[key] === null || options[key] === undefined) {
- options[key] = defaults[key];
- }
- }
- for (key in options) {
- if (!defaults.hasOwnProperty(key)) {
- delete options[key];
- }
- }
- return options;
- };
- /**
- * @private
- *
- * Convert the passed values to their required type.
- *
- * @param {Object} options
- * Set of custom values
- *
- * @retrun {Object}
- * The converted property list
- */
- exports.convertProperties = function (options) {
- options.id = options.id.toString();
- options.title = options.title.toString();
- options.message = options.message.toString();
- options.autoCancel = options.autoCancel === true;
- if (isNaN(options.id)) {
- options.id = this.getDefaults().id;
- }
- if (isNaN(options.badge)) {
- options.badge = this.getDefaults().badge;
- }
- options.badge = Number(options.badge);
- if (options.date === undefined || options.date === null) {
- options.date = new Date();
- }
- if (typeof options.date == 'object') {
- options.date = Math.round(options.date.getTime()/1000);
- }
- if (typeof options.json == 'object') {
- options.json = JSON.stringify(options.json);
- }
- return options;
- };
- /**
- * @private
- *
- * Merges the platform specific properties into the default properties.
- *
- * @return {Object}
- * The default properties for the platform
- */
- exports.applyPlatformSpecificOptions = function () {
- var defaults = this._defaults;
- switch (device.platform) {
- case 'Android':
- defaults.icon = 'icon';
- defaults.smallIcon = null;
- defaults.ongoing = false;
- defaults.led = 'FFFFFF'; /*RRGGBB*/
- 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
- */
- exports.createCallbackFn = function (callbackFn, scope) {
- if (typeof callbackFn != 'function')
- return;
- return function () {
- callbackFn.apply(scope || this, arguments);
- };
- };
- /**
- * @private
- *
- * Convert the IDs to Strings.
- *
- * @param {String/Number[]} ids
- *
- * @return Array of Strings
- */
- exports.convertIds = function (ids) {
- var convertedIds = [];
- for (var i = 0; i < ids.length; i++) {
- convertedIds.push(ids[i].toString());
- }
- return convertedIds;
- };
- /**
- * @private
- *
- * Return the first found value for the given keys.
- *
- * @param {Object} options
- * Object with key-value properties
- *
- * @param {String[]} keys*
- * Key list
- */
- exports.getValueFor = function (options) {
- var keys = Array.apply(null, arguments).slice(1);
- for (var i = 0; i < keys.length; i++) {
- var key = keys[i];
- if (options.hasOwnProperty(key)) {
- return options[key];
- }
- }
- };
- /**
- * @private
- *
- * Executes the native counterpart.
- *
- * @param {String} action
- * The name of the action
- * @param args[]
- * Array of arguments
- * @param {Function} callback
- * The callback function
- * @param {Object} scope
- * The scope for the function
- */
- exports.exec = function (action, args, callback, scope) {
- var fn = this.createCallbackFn(callback, scope),
- params = [];
- if (Array.isArray(args)) {
- params = args;
- } else if (args) {
- params.push(args);
- }
- exec(fn, null, 'LocalNotification', action, params);
- };
|