summaryrefslogtreecommitdiffstats
path: root/js/service/Publisher.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-19 02:22:02 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-19 02:22:02 +0200
commit90584316b8f275fcad904b644676544eb0322636 (patch)
tree35ead28e8f0cdccc1771464442bb83ce5b558cc6 /js/service/Publisher.js
parentded252d29e99e068ea341506129e47a05e053a24 (diff)
add test for firstrun page
Diffstat (limited to 'js/service/Publisher.js')
-rw-r--r--js/service/Publisher.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/js/service/Publisher.js b/js/service/Publisher.js
new file mode 100644
index 000000000..da9b0a470
--- /dev/null
+++ b/js/service/Publisher.js
@@ -0,0 +1,38 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
+app.service('Publisher', function () {
+ 'use strict';
+
+ var self = this;
+ this.channels = {};
+
+ this.subscribe = function (object) {
+ return {
+ toChannel: function (channel) {
+ self.channels[channel] = self.channels[channel] || [];
+ self.channels[channel].push(object);
+ }
+ };
+ };
+
+ this.publishAll = function (data) {
+ var channel,
+ counter;
+
+ for (channel in data) {
+ if (data.hasOwnProperty(channel) && this.channels[channel] !== undefined) {
+ for (counter = 0; counter < this.channels[channel].length; counter += 1) {
+ this.channels[channel][counter].receive(data[channel]);
+ }
+ }
+ }
+ };
+
+}); \ No newline at end of file