summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/PM/DataModel/Statistics.js
Unidiff
Diffstat (limited to 'frontend/beta/js/Clipperz/PM/DataModel/Statistics.js') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/PM/DataModel/Statistics.js133
1 files changed, 133 insertions, 0 deletions
diff --git a/frontend/beta/js/Clipperz/PM/DataModel/Statistics.js b/frontend/beta/js/Clipperz/PM/DataModel/Statistics.js
new file mode 100644
index 0000000..fb5eb01
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/DataModel/Statistics.js
@@ -0,0 +1,133 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz's Javascript Crypto Library.
6Javascript Crypto Library provides web developers with an extensive
7and efficient set of cryptographic functions. The library aims to
8obtain maximum execution speed while preserving modularity and
9reusability.
10For further information about its features and functionalities please
11refer to http://www.clipperz.com
12
13* Javascript Crypto Library is free software: you can redistribute
14 it and/or modify it under the terms of the GNU Affero General Public
15 License as published by the Free Software Foundation, either version
16 3 of the License, or (at your option) any later version.
17
18* Javascript Crypto Library is distributed in the hope that it will
19 be useful, but WITHOUT ANY WARRANTY; without even the implied
20 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 See the GNU Affero General Public License for more details.
22
23* You should have received a copy of the GNU Affero General Public
24 License along with Javascript Crypto Library. If not, see
25 <http://www.gnu.org/licenses/>.
26
27*/
28
29if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
30if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
31if (typeof(Clipperz.PM.DataModel) == 'undefined') { Clipperz.PM.DataModel = {}; }
32
33
34//#############################################################################
35
36Clipperz.PM.DataModel.Statistics = function(args) {
37 args = args || {};
38
39 this._user = args.user;
40 this._data = args.data || null;
41
42 return this;
43}
44
45Clipperz.PM.DataModel.Statistics.prototype = MochiKit.Base.update(null, {
46
47 //-------------------------------------------------------------------------
48
49 'decrypt': function(aVersion, someEncryptedData) {
50 var deferredResult;
51
52//MochiKit.Logging.logDebug(">>> Statistics.decrypt");
53 if (someEncryptedData == Clipperz.PM.Crypto.nullValue) {
54 this.setData({});
55 deferredResult = MochiKit.Async.succeed(this.data());
56 } else {
57 varstatistic;
58 var user;
59
60 statistic = this;
61 user = this.user();
62 deferredResult = new MochiKit.Async.Deferred();
63//deferredResult.addCallback(function() { console.time("Statistics.decrypt.deferredDecrypt")});
64 deferredResult.addCallback(Clipperz.PM.Crypto.deferredDecrypt, user.passphrase(), someEncryptedData, aVersion);
65//deferredResult.addCallback(function() { console.timeEnd("Statistics.decrypt.deferredDecrypt")});
66//deferredResult.addCallback(function() { console.time("Statistics.decrypt.setup")});
67 deferredResult.addCallbacks(
68 MochiKit.Base.partial(function (aStatistic, someData) {
69 aStatistic.setData(someData);
70 return aStatistic.data();
71 }, statistic),
72 MochiKit.Base.partial(function (aStatistic) {
73 MochiKit.Logging.logWarning("resetting user statistics due to an error while decrypting stored data");
74 aStatistic.setData({});
75 return aStatistic.data();
76 }, statistic)
77 );
78//deferredResult.addCallback(function() { console.timeEnd("Statistics.decrypt.setup")});
79
80 deferredResult.callback();
81 }
82//MochiKit.Logging.logDebug("<<< Statistics.decrypt");
83
84 return deferredResult;
85 },
86
87 //-------------------------------------------------------------------------
88
89 'user': function() {
90 return this._user;
91 },
92
93 //-------------------------------------------------------------------------
94
95 'data': function() {
96 return this._data;
97 },
98
99 'setData': function(aValue) {
100 this._data = aValue;
101
102 this.extractInfoFromData(aValue);
103 },
104
105 //-------------------------------------------------------------------------
106
107 'extractInfoFromData': function(someValues) {
108
109 },
110
111 //-------------------------------------------------------------------------
112
113 'encryptedData': function() {
114 return Clipperz.PM.Crypto.deferredEncryptWithCurrentVersion(this.user().passphrase(), this.serializedData());
115 },
116
117 //-------------------------------------------------------------------------
118
119 'serializedData': function() {
120 var result;
121
122//MochiKit.Logging.logDebug(">>> Statistics.serializedData");
123 result = {};
124//MochiKit.Logging.logDebug("<<< Statistics.serializedData");
125
126 return result;
127 },
128
129 //-------------------------------------------------------------------------
130 __syntaxFix__: "syntax fix"
131
132});
133