| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470 |
- /*
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apache License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://opensource.org/licenses/Apache-2.0/ and read it before using this
- * file.
- *
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
- */
- var exec = require('cordova/exec');
- /**
- * Request permission to show notifications.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.hasPermission = function (callback, scope) {
- var fn = this.createCallbackFn(callback, scope);
- if (device.platform != 'iOS') {
- fn(true);
- return;
- }
- exec(fn, null, 'LocalNotification', 'check', []);
- };
- /**
- * Request permission to show notifications.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.requestPermission = function (callback, scope) {
- var fn = this.createCallbackFn(callback, scope);
- if (device.platform != 'iOS') {
- fn(true);
- return;
- }
- exec(fn, null, 'LocalNotification', 'request', []);
- };
- /**
- * Schedule notifications.
- *
- * @param [ Array ] notifications The notifications to schedule.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- * @param [ Object ] args Optional flags how to schedule.
- *
- * @return [ Void ]
- */
- exports.schedule = function (msgs, callback, scope, args) {
- var fn = function (granted) {
- if (!granted) return;
- var notifications = Array.isArray(msgs) ? msgs : [msgs];
- for (var i = 0; i < notifications.length; i++) {
- var notification = notifications[i];
- this.mergeWithDefaults(notification);
- this.convertProperties(notification);
- }
- this.exec('schedule', notifications, callback, scope);
- };
- if (args && args.skipPermission) {
- fn.call(this, true);
- } else {
- this.requestPermission(fn, this);
- }
- };
- // /**
- // * Update existing notifications specified by IDs in options.
- // *
- // * @param {Object} notifications
- // * 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
- // * @param {Object?} args
- // * skipPermission:true schedules the notifications immediatly without
- // * registering or checking for permission
- // */
- // exports.update = function (msgs, callback, scope, args) {
- // var fn = function(granted) {
- // if (!granted) return;
- // var notifications = Array.isArray(msgs) ? msgs : [msgs];
- // for (var i = 0; i < notifications.length; i++) {
- // var notification = notifications[i];
- // this.convertProperties(notification);
- // }
- // this.exec('update', notifications, callback, scope);
- // };
- // if (args && args.skipPermission) {
- // fn.call(this, true);
- // } else {
- // this.registerPermission(fn, this);
- // }
- // };
- /**
- * Clear the specified notifications by id.
- *
- * @param [ Array<Int> ] ids The IDs of the notifications.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.clear = function (ids, callback, scope) {
- ids = Array.isArray(ids) ? ids : [ids];
- ids = this.convertIds(ids);
- this.exec('clear', ids, callback, scope);
- };
- /**
- * Clear all triggered notifications.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.clearAll = function (callback, scope) {
- this.exec('clearAll', null, callback, scope);
- };
- /**
- * Clear the specified notifications by id.
- *
- * @param [ Array<Int> ] ids The IDs of the notifications.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.cancel = function (ids, callback, scope) {
- ids = Array.isArray(ids) ? ids : [ids];
- ids = this.convertIds(ids);
- this.exec('cancel', ids, callback, scope);
- };
- /**
- * Cancel all scheduled notifications.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.cancelAll = function (callback, scope) {
- this.exec('cancelAll', null, callback, scope);
- };
- /**
- * Check if a notification is present.
- *
- * @param [ Int ] id The ID of the notification.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.isPresent = function (id, callback, scope) {
- this.exec('isPresent', id, callback, scope);
- };
- /**
- * Check if a notification is scheduled.
- *
- * @param [ Int ] id The ID of the notification.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.isScheduled = function (id, callback, scope) {
- this.exec('isScheduled', id, callback, scope);
- };
- /**
- * Check if a notification was triggered.
- *
- * @param [ Int ] id The ID of the notification.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.isTriggered = function (id, callback, scope) {
- this.exec('isTriggered', id, callback, scope);
- };
- /**
- * List of all notification ids.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.getAllIds = function (callback, scope) {
- this.exec('ids', null, callback, scope);
- };
- /**
- * Alias for `getAllIds`.
- */
- exports.getIds = function () {
- this.getAllIds.apply(this, arguments);
- };
- /**
- * List of all scheduled notification IDs.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.getScheduledIds = function (callback, scope) {
- this.exec('scheduledIds', null, callback, scope);
- };
- /**
- * List of all triggered notification IDs.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.getTriggeredIds = function (callback, scope) {
- this.exec('triggeredIds', null, callback, scope);
- };
- /**
- * List of local notifications specified by id.
- * If called without IDs, all notification will be returned.
- *
- * @param [ Array<Int> ] ids The IDs of the notifications.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.get = 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)) {
- this.exec('notification', Number(ids), callback, scope);
- return;
- }
- ids = this.convertIds(ids);
- this.exec('notifications', ids, callback, scope);
- };
- /**
- * List for all notifications.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.getAll = function (callback, scope) {
- this.exec('notifications', null, callback, scope);
- };
- /**
- * List of scheduled notifications specified by id.
- * If called without IDs, all notification will be returned.
- *
- * @param [ Array<Int> ] ids The IDs of the notifications.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- 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];
- }
- if (!Array.isArray(ids)) {
- this.exec('scheduledNotification', Number(ids), callback, scope);
- return;
- }
- ids = this.convertIds(ids);
- this.exec('scheduledNotifications', ids, callback, scope);
- };
- /**
- * List of all scheduled notifications.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- */
- exports.getAllScheduled = function (callback, scope) {
- this.exec('scheduledNotifications', null, callback, scope);
- };
- /**
- * List of triggered notifications specified by id.
- * If called without IDs, all notification will be returned.
- *
- * @param [ Array<Int> ] ids The IDs of the notifications.
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- 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];
- }
- if (!Array.isArray(ids)) {
- this.exec('triggeredNotification', Number(ids), callback, scope);
- return;
- }
- ids = this.convertIds(ids);
- this.exec('triggeredNotifications', ids, callback, scope);
- };
- /**
- * List of all triggered notifications.
- *
- * @param [ Function ] callback The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- */
- exports.getAllTriggered = function (callback, scope) {
- this.exec('triggeredNotifications', null, callback, scope);
- };
- /**
- * The (platform specific) default settings.
- *
- * @return [ Object ]
- */
- exports.getDefaults = function () {
- return this._defaults;
- };
- /**
- * Overwrite default settings.
- *
- * @param [ Object ] newDefaults New default values.
- *
- * @return [ Void ]
- */
- exports.setDefaults = function (newDefaults) {
- var defaults = this.getDefaults();
- for (var key in defaults) {
- if (newDefaults.hasOwnProperty(key)) {
- defaults[key] = newDefaults[key];
- }
- }
- };
- /**
- * Register callback for given event.
- *
- * @param [ String ] event The name of the event.
- * @param [ Function ] callback The function to be exec as callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Void ]
- */
- exports.on = function (event, callback, scope) {
- if (typeof callback !== "function")
- return;
- if (!this._listener[event]) {
- this._listener[event] = [];
- }
- var item = [callback, scope || window];
- this._listener[event].push(item);
- };
- /**
- * Unregister callback for given event.
- *
- * @param [ String ] event The name of the event.
- * @param [ Function ] callback The function to be exec as callback.
- *
- * @return [ Void ]
- */
- exports.un = function (event, callback) {
- var listener = this._listener[event];
- if (!listener)
- return;
- for (var i = 0; i < listener.length; i++) {
- var fn = listener[i][0];
- if (fn == callback) {
- listener.splice(i, 1);
- break;
- }
- }
- };
|