Statistics
| Branch: | Tag: | Revision:

root / ui / static / snf / js / utils.js @ edd1d565

History | View | Annotate | Download (10.2 kB)

1
;(function(root){
2
    
3
    var root = root;
4
    var snf = root.synnefo = root.synnefo || {};
5
    
6
    snf.i18n = {};
7

    
8
    // Logging namespace
9
    var logging = snf.logging = snf.logging || {};
10

    
11
    // logger object
12
    var logger = logging.logger = function(ns, level){
13
        var levels = ["debug", "info", "error"];
14
        var con = window.console;
15
        
16
        this.level = level || synnefo.logging.level;
17
        this.ns = ns || "";
18

    
19
        this._log = function(lvl) {
20
            if (lvl >= this.level && con) {
21
                var args = Array.prototype.slice.call(arguments[1]);
22
                var level_name = levels[lvl];
23
                    
24
                if (this.ns) {
25
                    args = ["["+this.ns+"] "].concat(args);
26
                }
27

    
28
                log = con.log
29
                if (con[level_name])
30
                    log = con[level_name]
31

    
32
                try {
33
                    con && log.apply(con, Array.prototype.slice.call(args));
34
                } catch (err) {}
35
            }
36
        }
37

    
38
        this.debug = function() {
39
            var args = [0]; args.push.call(args, arguments);
40
            this._log.apply(this, args);
41
        }
42

    
43
        this.info = function() {
44
            var args = [1]; args.push.call(args, arguments);
45
            this._log.apply(this, args);
46
        }
47

    
48
        this.error = function() {
49
            var args = [2]; args.push.call(args, arguments);
50
            try {
51
                console.trace()
52
            } catch (err) {}
53
            this._log.apply(this, args);
54
        }
55

    
56
    };
57
    
58
    synnefo.collect_user_data = function() {
59
        var data = {}
60
        
61
        try {
62
            data.calls = synnefo.api.requests;
63
        } catch (err) { data.calls = err }
64
        try {
65
            data.errors = synnefo.api.errors;
66
        } catch (err) { data.errors = err }
67
        try {
68
            data.data = {};
69
        } catch (err) { data.data = err }
70
        try {
71
            data.data.vms = synnefo.storage.vms.toJSON();
72
        } catch (err) { data.data.vms = err }
73
        try {
74
            data.data.networks = synnefo.storage.vms.toJSON();
75
        } catch (err) { data.data.networks = err }
76
        try {
77
            data.data.images = synnefo.storage.images.toJSON();
78
        } catch (err) { data.data.images = err }
79
        try {
80
            data.data.flavors = synnefo.storage.flavors.toJSON();
81
        } catch (err) { data.data.flavors = err }
82
        try {
83
            data.date = new Date;
84
        } catch (err) { data.date = err }
85

    
86
        return data;
87
    }
88

    
89
    // default logger level (debug)
90
    synnefo.logging.level = 0;
91

    
92
    // generic logger
93
    synnefo.log = new logger({'ns':'SNF'});
94

    
95
    // synnefo config options
96
    synnefo.config = synnefo.config || {};
97
    synnefo.config.api_url = "/api/v1.1";
98
    
99
    // Util namespace
100
    synnefo.util = synnefo.util || {};
101

    
102
    // Extensions and Utility functions
103
    synnefo.util.ISODateString = function(d){
104
        function pad(n){
105
            return n<10 ? '0'+n : n
106
        }
107
         return d.getUTCFullYear()+'-'
108
         + pad(d.getUTCMonth()+1)+'-'
109
         + pad(d.getUTCDate())+'T'
110
         + pad(d.getUTCHours())+':'
111
         + pad(d.getUTCMinutes())+':'
112
         + pad(d.getUTCSeconds())+'Z'
113
    }
114

    
115
 
116
    synnefo.util.parseUri = function(sourceUri) {
117
        var uriPartNames = ["source","protocol","authority","domain","port","path","directoryPath","fileName","query","anchor"];
118
        var uriParts = new RegExp("^(?:([^:/?#.]+):)?(?://)?(([^:/?#]*)(?::(\\d*))?)?((/(?:[^?#](?![^?#/]*\\.[^?#/.]+(?:[\\?#]|$)))*/?)?([^?#/]*))?(?:\\?([^#]*))?(?:#(.*))?").exec(sourceUri);
119
        var uri = {};
120
        
121
        for(var i = 0; i < 10; i++){
122
            uri[uriPartNames[i]] = (uriParts[i] ? uriParts[i] : "");
123
        }
124
    
125
        // Always end directoryPath with a trailing backslash if a path was present in the source URI
126
        // Note that a trailing backslash is NOT automatically inserted within or appended to the "path" key
127
        if(uri.directoryPath.length > 0){
128
            uri.directoryPath = uri.directoryPath.replace(/\/?$/, "/");
129
        }
130
        
131
        return uri;
132
    }
133

    
134
    synnefo.util.equalHeights = function() {
135
        var max_height = 0;
136
        var selectors = _.toArray(arguments);
137
            
138
        _.each(selectors, function(s){
139
            console.log($(s).height());
140
        })
141
        // TODO: implement me
142
    }
143

    
144
    synnefo.util.truncate = function(string, size, append, words) {
145
        if (string.length <= size) {
146
            return string;
147
        }
148

    
149
        if (append === undefined) {
150
            append = "...";
151
        }
152
        
153
        if (!append) { append = "" };
154
        // TODO: implement word truncate
155
        if (words === undefined) {
156
            words = false;
157
        }
158
        
159
        len = size - append.length;
160
        return string.substring(0, len) + append;
161
    }
162

    
163
    synnefo.util.readablizeBytes = function(bytes) {
164
        var s = ['bytes', 'kb', 'MB', 'GB', 'TB', 'PB'];
165
        var e = Math.floor(Math.log(bytes)/Math.log(1024));
166
        return (bytes/Math.pow(1024, Math.floor(e))).toFixed(2)+" "+s[e];
167
    }
168
    
169
    synnefo.i18n.API_ERROR_MESSAGES = {
170
        'timeout': {
171
            'message': 'Timeout', 
172
            'allow_report': false
173
        },
174
        
175
        'error': {
176
            'message': 'API error'
177
        }, 
178

    
179
        'abort': {},
180
        'parserror': {}
181
    }
182
    
183
    synnefo.util.array_diff = function(arr1, arr2) {
184
        var removed = [];
185
        var added = [];
186

    
187
        _.each(arr1, function(v) {
188
            if (arr2.indexOf(v) == -1) {
189
                removed[removed.length] = v;
190
            }
191
        })
192

    
193

    
194
        _.each(arr2, function(v) {
195
            if (arr1.indexOf(v) == -1) {
196
                added[added.length] = v;
197
            }
198
        })
199

    
200
        return {del: removed, add: added};
201
    }
202

    
203
    synnefo.util.open_window = function(url, name, specs) {
204
        // default specs
205
        var opts = _.extend({
206
            scrollbars: 'no',
207
            menubar: 'no',
208
            toolbar: 'no',
209
            status: 'no',
210
            top: 'no',
211
            left: 'no',
212
            height: screen.height,
213
            width: screen.width,
214
            fullscreen: 'yes',
215
            channelmode: 'yes',
216
            directories: 'no',
217
            left: 0,
218
            location: 'no',
219
            top: 0
220
        }, opts)
221
        
222
        window.open(url, name, opts);
223
    }
224

    
225
    synnefo.util.stacktrace = function() {
226
        try {
227
            var obj = {};
228
            if (window.Error && Error.captureStackTrace) {
229
                Error.captureStackTrace(obj, synnefo.util.stacktrace);
230
                return obj.stack;
231
            } else {
232
                return printStackTrace().join("<br /><br />");
233
            }
234
        } catch (err) {}
235
        return "";
236
    },
237
    
238
    synnefo.util.array_combinations = function(arr) {
239
        if (arr.length == 1) {
240
            return arr[0];
241
        } else {
242
            var result = [];
243

    
244
            // recur with the rest of array
245
            var allCasesOfRest = synnefo.util.array_combinations(arr.slice(1));  
246
            for (var i = 0; i < allCasesOfRest.length; i++) {
247
                for (var j = 0; j < arr[0].length; j++) {
248
                    result.push(arr[0][j] + "-" + allCasesOfRest[i]);
249
                }
250
            }
251
            return result;
252
        }
253
    }
254

    
255
    synnefo.util.parse_api_error = function(arguments) {
256
        arguments = arguments[0];
257

    
258
        var xhr = arguments[0];
259
        var error_message = arguments[1];
260
        var error_thrown = arguments[2];
261
        var ajax_settings = arguments.ajax;
262
        var call_settings = arguments.ajax.error_params || {};
263

    
264
        var json_data = undefined;
265
        if (xhr.responseText) {
266
            try {
267
                json_data = JSON.parse(xhr.responseText)
268
            } catch (err) {}
269
        }
270
        
271
        module = "API"
272

    
273
        try {
274
            path = synnefo.util.parseUri(ajax_settings.url).path.split("/");
275
            path.splice(0,3)
276
            module = path.join("/");
277
        } catch (err) {
278
            console.error("cannot identify api error module");
279
        }
280

    
281
        defaults = {
282
            'message': 'Api error',
283
            'type': 'API',
284
            'allow_report': true
285
        }
286

    
287
        var code = -1;
288
        try {
289
            code = xhr.status || "undefined";
290
        } catch (err) {console.error(err);}
291
        var details = "";
292
        
293
        if ([413].indexOf(code) > -1) {
294
            defaults.non_critical = true;
295
            defaults.allow_report = false;
296
            defaults.allow_reload = false;
297
        }
298
        
299
        if (json_data) {
300
            $.each(json_data, function(key, obj) {
301
                code = obj.code;
302
                details = obj.details.replace("\n","<br>");
303
                error_message = obj.message;
304
            })
305
        }
306
        
307
        extra = {'URL': ajax_settings.url};
308
        options = {};
309
        options = _.extend(options, {'details': details, 'message': error_message, 'ns': module, 'extra_details': extra});
310
        options = _.extend(options, call_settings);
311
        options = _.extend(options, synnefo.i18n.API_ERROR_MESSAGES[error_message] || {});
312
        options = _.extend(defaults, options);
313
        options.code = code;
314

    
315
        return options;
316
    }
317

    
318

    
319
    // Backbone extensions
320
    //
321
    // super method
322
    Backbone.Model.prototype._super = Backbone.Collection.prototype._super = Backbone.View.prototype._super = function(funcName){
323
        return this.constructor.__super__[funcName].apply(this, _.rest(arguments));
324
    }
325

    
326
    // simple string format helper 
327
    // http://stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format
328
    String.prototype.format = function() {
329
        var formatted = this;
330
        for (var i = 0; i < arguments.length; i++) {
331
            var regexp = new RegExp('\\{'+i+'\\}', 'gi');
332
            formatted = formatted.replace(regexp, arguments[i]);
333
        }
334
        return formatted;
335
    };
336

    
337

    
338
    $.fn.setCursorPosition = function(pos) {
339
        if ($(this).get(0).setSelectionRange) {
340
          $(this).get(0).setSelectionRange(pos, pos);
341
        } else if ($(this).get(0).createTextRange) {
342
          var range = $(this).get(0).createTextRange();
343
          range.collapse(true);
344
          range.moveEnd('character', pos);
345
          range.moveStart('character', pos);
346
          range.select();
347
        }
348
    }
349
})(this);