| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- /*
- * Apache 2.0 License
- *
- * Copyright (c) Sebastian Katzer 2017
- *
- * 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'),
- channel = require('cordova/channel');
- // Default values
- exports._defaults = {
- actionGroupId : null,
- actions : [],
- attachments : [],
- autoClear : true,
- badge : null,
- channel : null,
- color : null,
- data : null,
- defaults : 0,
- foreground : false,
- group : null,
- groupSummary : false,
- icon : null,
- id : 0,
- launch : true,
- led : true,
- lockscreen : true,
- mediaSession : null,
- number : 0,
- priority : 0,
- progressBar : false,
- showWhen : true,
- silent : false,
- smallIcon : 'res://icon',
- sound : true,
- sticky : false,
- summary : null,
- text : '',
- title : '',
- trigger : { type : 'calendar' },
- vibrate : false
- };
- // Listener
- exports._listener = {};
- /**
- * Merge custom properties with the default values.
- *
- * @param [ Object ] options Set of custom values.
- *
- * @retrun [ Object ]
- */
- exports.mergeWithDefaults = function (options) {
- var values = this.getDefaults();
- if (values.hasOwnProperty('sticky')) {
- options.sticky = this.getValueFor(options, 'sticky', 'ongoing');
- }
- if (options.sticky && options.autoClear !== true) {
- options.autoClear = false;
- }
- Object.assign(values, options);
- for (var key in values) {
- if (values[key] !== null) {
- options[key] = values[key];
- } else {
- delete options[key];
- }
- if (!this._defaults.hasOwnProperty(key)) {
- console.warn('Unknown property: ' + key);
- }
- }
- options.meta = {
- plugin: 'cordova-plugin-local-notifications',
- version: '0.9-beta'
- };
- return options;
- };
- /**
- * Convert the passed values to their required type.
- *
- * @param [ Object ] options Properties to convert for.
- *
- * @return [ Object ] The converted property list
- */
- exports.convertProperties = function (options) {
- var parseToInt = function (prop, options) {
- if (isNaN(options[prop])) {
- console.warn(prop + ' is not a number: ' + options[prop]);
- return this._defaults[prop];
- } else {
- return Number(options[prop]);
- }
- };
- if (options.id) {
- options.id = parseToInt('id', options);
- }
- if (options.title) {
- options.title = options.title.toString();
- }
- if (options.badge) {
- options.badge = parseToInt('badge', options);
- }
- if (options.priority) {
- options.priority = parseToInt('priority', options);
- }
- if (options.foreground === true) {
- options.priority = Math.max(options.priority, 1);
- }
- if (options.foreground === false) {
- options.priority = Math.min(options.priority, 0);
- }
- if (options.defaults) {
- options.defaults = parseToInt('defaults', options);
- }
- if (options.smallIcon && !options.smallIcon.match(/^res:/)) {
- console.warn('Property "smallIcon" must be of kind res://...');
- }
- options.data = JSON.stringify(options.data);
- this.convertTrigger(options);
- this.convertActions(options);
- this.convertProgressBar(options);
- return options;
- };
- /**
- * Convert the passed values to their required type, modifying them
- * directly for Android and passing the converted list back for iOS.
- *
- * @param [ Map ] options Set of custom values.
- *
- * @return [ Map ] Interaction object with category & actions.
- */
- exports.convertActions = function (options) {
- var actions = [];
- if (!options.actions)
- return null;
- for (var action of options.actions) {
- if (!action.id) {
- console.warn('Action with title ' + action.title + ' ' +
- 'has no id and will not be added.');
- continue;
- }
- action.id = action.id.toString();
- actions.push(action);
- }
- options.actions = actions;
- return options;
- };
- /**
- * Convert the passed values for the trigger to their required type.
- *
- * @param [ Map ] options Set of custom values.
- *
- * @return [ Map ] Interaction object with trigger spec.
- */
- exports.convertTrigger = function (options) {
- var trigger = options.trigger || {},
- date = this.getValueFor(trigger, 'at', 'firstAt', 'date');
- var dateToNum = function (date) {
- var num = typeof date == 'object' ? date.getTime() : date;
- return Math.round(num / 1000);
- };
- if (!options.trigger)
- return;
- if (!trigger.type) {
- trigger.type = trigger.center ? 'location' : 'calendar';
- }
- var isCal = trigger.type == 'calendar';
- if (isCal && !date) {
- date = this.getValueFor(options, 'at', 'firstAt', 'date');
- }
- if (isCal && !trigger.every && options.every) {
- trigger.every = options.every;
- }
- if (isCal && (trigger.in || trigger.every)) {
- date = null;
- }
- if (isCal && date) {
- trigger.at = dateToNum(date);
- }
- if (isCal && trigger.firstAt) {
- trigger.firstAt = dateToNum(trigger.firstAt);
- }
- if (isCal && trigger.before) {
- trigger.before = dateToNum(trigger.before);
- }
- if (isCal && trigger.after) {
- trigger.after = dateToNum(trigger.after);
- }
- if (!trigger.count && device.platform == 'windows') {
- trigger.count = trigger.every ? 5 : 1;
- }
- if (trigger.every && device.platform == 'windows') {
- trigger.every = trigger.every.toString();
- }
- if (!isCal) {
- trigger.notifyOnEntry = !!trigger.notifyOnEntry;
- trigger.notifyOnExit = trigger.notifyOnExit === true;
- trigger.radius = trigger.radius || 5;
- trigger.single = !!trigger.single;
- }
- if (!isCal || trigger.at) {
- delete trigger.every;
- }
- delete options.every;
- delete options.at;
- delete options.firstAt;
- delete options.date;
- options.trigger = trigger;
- return options;
- };
- /**
- * Convert the passed values for the progressBar to their required type.
- *
- * @param [ Map ] options Set of custom values.
- *
- * @return [ Map ] Interaction object with trigger spec.
- */
- exports.convertProgressBar = function (options) {
- var isAndroid = device.platform == 'Android',
- cfg = options.progressBar;
- if (cfg === undefined)
- return;
- if (typeof cfg === 'boolean') {
- cfg = options.progressBar = { enabled: cfg };
- }
- if (typeof cfg.enabled !== 'boolean') {
- cfg.enabled = !!(cfg.value || cfg.maxValue || cfg.indeterminate !== null);
- }
- cfg.value = cfg.value || 0;
- if (isAndroid) {
- cfg.maxValue = cfg.maxValue || 100;
- cfg.indeterminate = !!cfg.indeterminate;
- }
- cfg.enabled = !!cfg.enabled;
- return options;
- };
- /**
- * Create a callback function to get executed within a specific scope.
- *
- * @param [ Function ] fn The function to be exec as the callback.
- * @param [ Object ] scope The callback function's scope.
- *
- * @return [ Function ]
- */
- exports.createCallbackFn = function (fn, scope) {
- if (typeof fn != 'function')
- return;
- return function () {
- fn.apply(scope || this, arguments);
- };
- };
- /**
- * Convert the IDs to numbers.
- *
- * @param [ Array ] ids
- *
- * @return [ Array<Number> ]
- */
- exports.convertIds = function (ids) {
- var convertedIds = [];
- for (var id of ids) {
- convertedIds.push(Number(id));
- }
- return convertedIds;
- };
- /**
- * First found value for the given keys.
- *
- * @param [ Object ] options Object with key-value properties.
- * @param [ *Array<String> ] keys List of keys.
- *
- * @return [ Object ]
- */
- exports.getValueFor = function (options) {
- var keys = Array.apply(null, arguments).slice(1);
- for (var key of keys) {
- if (options.hasOwnProperty(key)) {
- return options[key];
- }
- }
- return null;
- };
- /**
- * Convert a value to an array.
- *
- * @param [ Object ] obj Any kind of object.
- *
- * @return [ Array ] An array with the object as first item.
- */
- exports.toArray = function (obj) {
- return Array.isArray(obj) ? Array.from(obj) : [obj];
- };
- /**
- * Fire the event with given arguments.
- *
- * @param [ String ] event The event's name.
- * @param [ *Array] args The callback's arguments.
- *
- * @return [ Void]
- */
- exports.fireEvent = function (event) {
- var args = Array.apply(null, arguments).slice(1),
- listener = this._listener[event];
- if (!listener)
- return;
- if (args[0] && typeof args[0].data === 'string') {
- args[0].data = JSON.parse(args[0].data);
- }
- for (var i = 0; i < listener.length; i++) {
- var fn = listener[i][0],
- scope = listener[i][1];
- fn.apply(scope, args);
- }
- };
- /**
- * Execute the native counterpart.
- *
- * @param [ String ] action The name of the action.
- * @param [ Array ] args Array of arguments.
- * @param [ Function] callback The callback function.
- * @param [ Object ] scope The scope for the function.
- *
- * @return [ Void ]
- */
- 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);
- };
- exports.setLaunchDetails = function () {
- exports.exec('launch', null, function (details) {
- if (details) {
- cordova.plugins.notification.local.launchDetails = details;
- }
- });
- };
- // Called after 'deviceready' event
- channel.deviceready.subscribe(function () {
- if (['Android', 'windows', 'iOS'].indexOf(device.platform) > -1) {
- exports.exec('ready');
- }
- });
- // Called before 'deviceready' event
- channel.onCordovaReady.subscribe(function () {
- channel.onCordovaInfoReady.subscribe(function () {
- if (['Android', 'windows', 'iOS'].indexOf(device.platform) > -1) {
- exports.setLaunchDetails();
- }
- });
- });
|