02efb132cc3c71fe932daa3fe7fe35c73af575d7
[odoo/odoo.git] / addons / web / static / src / js / chrome.js
1 /*---------------------------------------------------------
2  * OpenERP Web chrome
3  *---------------------------------------------------------*/
4 openerp.web.chrome = function(openerp) {
5 var QWeb = openerp.web.qweb,
6     _t = openerp.web._t;
7
8 openerp.web.Notification =  openerp.web.OldWidget.extend(/** @lends openerp.web.Notification# */{
9     template: 'Notification',
10
11     init: function() {
12         this._super.apply(this, arguments);
13         openerp.notification = this;
14     },
15
16     start: function() {
17         this._super.apply(this, arguments);
18         this.$element.notify({
19             speed: 500,
20             expires: 2500
21         });
22     },
23     notify: function(title, text, sticky) {
24         sticky = !!sticky;
25         var opts = {};
26         if (sticky) {
27             opts.expires = false;
28         }
29         this.$element.notify('create', {
30             title: title,
31             text: text
32         }, opts);
33     },
34     warn: function(title, text, sticky) {
35         sticky = !!sticky;
36         var opts = {};
37         if (sticky) {
38             opts.expires = false;
39         }
40         this.$element.notify('create', 'oe_notification_alert', {
41             title: title,
42             text: text
43         }, opts);
44     }
45
46 });
47
48 openerp.web.dialog = function(element) {
49     var result = element.dialog.apply(element, _.rest(_.toArray(arguments)));
50     result.dialog("widget").addClass("openerp openerp2");
51     return result;
52 }
53
54 openerp.web.Dialog = openerp.web.OldWidget.extend(/** @lends openerp.web.Dialog# */{
55     dialog_title: "",
56     /**
57      * @constructs openerp.web.Dialog
58      * @extends openerp.web.OldWidget
59      *
60      * @param parent
61      * @param options
62      */
63     init: function (parent, options, content) {
64         var self = this;
65         this._super(parent);
66         if (content) {
67             this.$element = content instanceof $ ? content : $(content);
68         }
69         this.dialog_options = {
70             modal: true,
71             destroy_on_close: true,
72             width: $(window).width() * (($(window).width() > 1024) ? 0.5 : 0.75),
73             min_width: 0,
74             max_width: '95%',
75             height: 'auto',
76             min_height: 0,
77             max_height: this.get_height('100%') - 140,
78             autoOpen: false,
79             position: [false, 50],
80             buttons: {},
81             beforeClose: function () { self.on_close(); },
82             resizeStop: this.on_resized
83         };
84         for (var f in this) {
85             if (f.substr(0, 10) == 'on_button_') {
86                 this.dialog_options.buttons[f.substr(10)] = this[f];
87             }
88         }
89         if (options) {
90             _.extend(this.dialog_options, options);
91         }
92         if (this.dialog_options.autoOpen) {
93             this.open();
94         } else {
95             openerp.web.dialog(this.$element, this.get_options());
96         }
97     },
98     get_options: function(options) {
99         var self = this,
100             o = _.extend({}, this.dialog_options, options || {});
101         _.each(['width', 'height'], function(unit) {
102             o[unit] = self['get_' + unit](o[unit]);
103             o['min_' + unit] = self['get_' + unit](o['min_' + unit] || 0);
104             o['max_' + unit] = self['get_' + unit](o['max_' + unit] || 0);
105             if (o[unit] !== 'auto' && o['min_' + unit] && o[unit] < o['min_' + unit]) o[unit] = o['min_' + unit];
106             if (o[unit] !== 'auto' && o['max_' + unit] && o[unit] > o['max_' + unit]) o[unit] = o['max_' + unit];
107         });
108         if (!o.title && this.dialog_title) {
109             o.title = this.dialog_title;
110         }
111         return o;
112     },
113     get_width: function(val) {
114         return this.get_size(val.toString(), $(window.top).width());
115     },
116     get_height: function(val) {
117         return this.get_size(val.toString(), $(window.top).height());
118     },
119     get_size: function(val, available_size) {
120         if (val === 'auto') {
121             return val;
122         } else if (val.slice(-1) == "%") {
123             return Math.round(available_size / 100 * parseInt(val.slice(0, -1), 10));
124         } else {
125             return parseInt(val, 10);
126         }
127     },
128     open: function(options) {
129         // TODO fme: bind window on resize
130         if (this.template) {
131             this.$element.html(this.render());
132         }
133         var o = this.get_options(options);
134         openerp.web.dialog(this.$element, o).dialog('open');
135         if (o.height === 'auto' && o.max_height) {
136             this.$element.css({ 'max-height': o.max_height, 'overflow-y': 'auto' });
137         }
138         return this;
139     },
140     close: function() {
141         this.$element.dialog('close');
142     },
143     on_close: function() {
144         if (this.dialog_options.destroy_on_close) {
145             this.$element.dialog('destroy');
146         }
147     },
148     on_resized: function() {
149         //openerp.log("Dialog resized to %d x %d", this.$element.width(), this.$element.height());
150     },
151     destroy: function () {
152         // Destroy widget
153         this.close();
154         this.$element.dialog('destroy');
155         this._super();
156     }
157 });
158
159 openerp.web.CrashManager = openerp.web.CallbackEnabled.extend({
160     on_rpc_error: function(error) {
161         if (error.data.fault_code) {
162             var split = ("" + error.data.fault_code).split('\n')[0].split(' -- ');
163             if (split.length > 1) {
164                 error.type = split.shift();
165                 error.data.fault_code = error.data.fault_code.substr(error.type.length + 4);
166             }
167         }
168         if (error.code === 200 && error.type) {
169             this.on_managed_error(error);
170         } else {
171             this.on_traceback(error);
172         }
173     },
174     on_managed_error: function(error) {
175         openerp.web.dialog($('<div>' + QWeb.render('CrashManagerWarning', {error: error}) + '</div>'), {
176             title: "OpenERP " + _.str.capitalize(error.type),
177             buttons: [
178                 {text: _t("Ok"), click: function() { $(this).dialog("close"); }}
179             ]
180         });
181     },
182     on_traceback: function(error) {
183         var self = this;
184         var buttons = {};
185         if (openerp.connection.openerp_entreprise) {
186             buttons[_t("Send OpenERP Enterprise Report")] = function() {
187                 var $this = $(this);
188                 var issuename = $('#issuename').val();
189                 var explanation = $('#explanation').val();
190                 var remark = $('#remark').val();
191                 // Call the send method from server to send mail with details
192                 new openerp.web.DataSet(self, 'publisher_warranty.contract').call_and_eval('send', [error.data,explanation,remark,issuename]).then(function(result){
193                     if (result === false) {
194                         alert('There was a communication error.')
195                     } else {
196                         $this.dialog('close');
197                     }
198                 });
199             };
200             buttons[_t("Dont send")] = function() {
201                 $(this).dialog("close");
202             };
203         } else {
204             buttons[_t("Ok")] = function() {
205                 $(this).dialog("close");
206             };
207         }
208         var dialog = new openerp.web.Dialog(this, {
209             title: "OpenERP " + _.str.capitalize(error.type),
210             width: '80%',
211             height: '50%',
212             min_width: '800px',
213             min_height: '600px',
214             buttons: buttons
215         }).open();
216         dialog.$element.html(QWeb.render('CrashManagerError', {session: openerp.connection, error: error}));
217     }
218 });
219
220 openerp.web.Loading = openerp.web.OldWidget.extend(/** @lends openerp.web.Loading# */{
221     template: 'Loading',
222     /**
223      * @constructs openerp.web.Loading
224      * @extends openerp.web.OldWidget
225      *
226      * @param parent
227      * @param element_id
228      */
229     init: function(parent) {
230         this._super(parent);
231         this.count = 0;
232         this.blocked_ui = false;
233         var self = this;
234         this.request_call = function() {
235             self.on_rpc_event(1);
236         };
237         this.response_call = function() {
238             self.on_rpc_event(-1);
239         };
240         this.session.on_rpc_request.add_first(this.request_call);
241         this.session.on_rpc_response.add_last(this.response_call);
242     },
243     destroy: function() {
244         this.session.on_rpc_request.remove(this.request_call);
245         this.session.on_rpc_response.remove(this.response_call);
246         this.on_rpc_event(-this.count);
247         this._super();
248     },
249     on_rpc_event : function(increment) {
250         var self = this;
251         if (!this.count && increment === 1) {
252             // Block UI after 3s
253             this.long_running_timer = setTimeout(function () {
254                 self.blocked_ui = true;
255                 $.blockUI();
256             }, 3000);
257         }
258
259         this.count += increment;
260         if (this.count > 0) {
261             $(".loading",this.$element).text(_.str.sprintf(
262                 _t("Loading (%d)"), this.count));
263             $(".loading",this.$element).show();
264             this.getParent().$element.addClass('loading');
265         } else {
266             this.count = 0;
267             clearTimeout(this.long_running_timer);
268             // Don't unblock if blocked by somebody else
269             if (self.blocked_ui) {
270                 this.blocked_ui = false;
271                 $.unblockUI();
272             }
273             $(".loading",this.$element).fadeOut();
274             this.getParent().$element.removeClass('loading');
275         }
276     }
277 });
278
279 openerp.web.Database = openerp.web.OldWidget.extend(/** @lends openerp.web.Database# */{
280     template: "DatabaseManager",
281     /**
282      * @constructs openerp.web.Database
283      * @extends openerp.web.OldWidget
284      *
285      * @param parent
286      * @param element_id
287      * @param option_id
288      */
289     init: function(parent, element_id, option_id) {
290         this._super(parent, element_id);
291         this.unblockUIFunction = $.unblockUI;
292         $.validator.addMethod('matches', function (s, _, re) {
293             return new RegExp(re).test(s);
294         }, _t("Invalid database name"));
295     },
296     start: function() {
297         this.$option_id = $("#oe_db_options");
298
299         var self = this;
300         var fetch_db = this.rpc("/web/database/get_list", {}).pipe(
301             function(result) { self.db_list = result.db_list; },
302             function (_, ev) { ev.preventDefault(); self.db_list = null; });
303         var fetch_langs = this.rpc("/web/session/get_lang_list", {}, function(result) {
304             if (result.error) {
305                 self.display_error(result);
306                 return;
307             }
308             self.lang_list = result.lang_list;
309         });
310         $.when(fetch_db, fetch_langs).then(function () {self.do_create();});
311
312         this.$element.find('#db-create').click(this.do_create);
313         this.$element.find('#db-drop').click(this.do_drop);
314         this.$element.find('#db-backup').click(this.do_backup);
315         this.$element.find('#db-restore').click(this.do_restore);
316         this.$element.find('#db-change-password').click(this.do_change_password);
317         this.$element.find('#back-to-login').click(function() {
318             self.hide();
319         });
320     },
321     destroy: function () {
322         this.hide();
323         this.$option_id.empty();
324
325         this.$element
326             .find('#db-create, #db-drop, #db-backup, #db-restore, #db-change-password, #back-to-login')
327                 .unbind('click')
328             .end()
329             .empty();
330         this._super();
331     },
332     show: function () {
333         this.$element.closest(".login")
334                 .addClass("database_block");
335     },
336     hide: function () {
337         this.$element.closest(".login")
338                 .removeClass("database_block")
339     },
340     /**
341      * Converts a .serializeArray() result into a dict. Does not bother folding
342      * multiple identical keys into an array, last key wins.
343      *
344      * @param {Array} array
345      */
346     to_object: function (array) {
347         var result = {};
348         _(array).each(function (record) {
349             result[record.name] = record.value;
350         });
351         return result;
352     },
353     /**
354      * Waits until the new database is done creating, then unblocks the UI and
355      * logs the user in as admin
356      *
357      * @param {Number} db_creation_id identifier for the db-creation operation, used to fetch the current installation progress
358      * @param {Object} info info fields for this database creation
359      * @param {String} info.db name of the database being created
360      * @param {String} info.password super-admin password for the database
361      */
362     wait_for_newdb: function (db_creation_id, info) {
363         var self = this;
364         self.rpc('/web/database/progress', {
365             id: db_creation_id,
366             password: info.password
367         }, function (result) {
368             var progress = result[0];
369             // I'd display a progress bar, but turns out the progress status
370             // the server report kind-of blows goats: it's at 0 for ~75% of
371             // the installation, then jumps to 75%, then jumps down to either
372             // 0 or ~40%, then back up to 75%, then terminates. Let's keep that
373             // mess hidden behind a not-very-useful but not overly weird
374             // message instead.
375             if (progress < 1) {
376                 setTimeout(function () {
377                     self.wait_for_newdb(db_creation_id, info);
378                 }, 500);
379                 return;
380             }
381
382             var admin = result[1][0];
383             setTimeout(function () {
384                 self.getParent().do_login(
385                         info.db, admin.login, admin.password);
386                 self.destroy();
387                 self.unblockUI();
388             });
389         });
390     },
391     /**
392      * Blocks UI and replaces $.unblockUI by a noop to prevent third parties
393      * from unblocking the UI
394      */
395     blockUI: function () {
396         $.blockUI();
397         $.unblockUI = function () {};
398     },
399     /**
400      * Reinstates $.unblockUI so third parties can play with blockUI, and
401      * unblocks the UI
402      */
403     unblockUI: function () {
404         $.unblockUI = this.unblockUIFunction;
405         $.unblockUI();
406     },
407     /**
408      * Displays an error dialog resulting from the various RPC communications
409      * failing over themselves
410      *
411      * @param {Object} error error description
412      * @param {String} error.title title of the error dialog
413      * @param {String} error.error message of the error dialog
414      */
415     display_error: function (error) {
416         return openerp.web.dialog($('<div>'), {
417             modal: true,
418             title: error.title,
419             buttons: [
420                 {text: _t("Ok"), click: function() { $(this).dialog("close"); }}
421             ]
422         }).html(error.error);
423     },
424     do_create: function() {
425         var self = this;
426         self.$option_id.html(QWeb.render("Database.CreateDB", self));
427         self.$option_id.find("form[name=create_db_form]").validate({
428             submitHandler: function (form) {
429                 var fields = $(form).serializeArray();
430                 self.blockUI();
431                 self.rpc("/web/database/create", {'fields': fields}, function(result) {
432                     if (result.error) {
433                         self.unblockUI();
434                         self.display_error(result);
435                         return;
436                     }
437                     if (self.db_list) {
438                         self.db_list.push(self.to_object(fields)['db_name']);
439                         self.db_list.sort();
440                         self.getParent().set_db_list(self.db_list);
441                     }
442                     var form_obj = self.to_object(fields);
443                     self.wait_for_newdb(result, {
444                         password: form_obj['super_admin_pwd'],
445                         db: form_obj['db_name']
446                     });
447                 });
448             }
449         });
450     },
451     do_drop: function() {
452         var self = this;
453         self.$option_id.html(QWeb.render("DropDB", self));
454         self.$option_id.find("form[name=drop_db_form]").validate({
455             submitHandler: function (form) {
456                 var $form = $(form),
457                     fields = $form.serializeArray(),
458                     $db_list = $form.find('[name=drop_db]'),
459                     db = $db_list.val();
460
461                 if (!confirm("Do you really want to delete the database: " + db + " ?")) {
462                     return;
463                 }
464                 self.rpc("/web/database/drop", {'fields': fields}, function(result) {
465                     if (result.error) {
466                         self.display_error(result);
467                         return;
468                     }
469                     $db_list.find(':selected').remove();
470                     if (self.db_list) {
471                         self.db_list.splice(_.indexOf(self.db_list, db, true), 1);
472                         self.getParent().set_db_list(self.db_list);
473                     }
474                     self.do_notify("Dropping database", "The database '" + db + "' has been dropped");
475                 });
476             }
477         });
478     },
479     do_backup: function() {
480         var self = this;
481         self.$option_id
482             .html(QWeb.render("BackupDB", self))
483             .find("form[name=backup_db_form]").validate({
484             submitHandler: function (form) {
485                 self.blockUI();
486                 self.session.get_file({
487                     form: form,
488                     success: function () {
489                         self.do_notify(_t("Backed"),
490                             _t("Database backed up successfully"));
491                     },
492                     error: openerp.webclient.crashmanager.on_rpc_error,
493                     complete: function() {
494                         self.unblockUI();
495                     }
496                 });
497             }
498         });
499     },
500     do_restore: function() {
501         var self = this;
502         self.$option_id.html(QWeb.render("RestoreDB", self));
503
504         self.$option_id.find("form[name=restore_db_form]").validate({
505             submitHandler: function (form) {
506                 self.blockUI();
507                 $(form).ajaxSubmit({
508                     url: '/web/database/restore',
509                     type: 'POST',
510                     resetForm: true,
511                     success: function (body) {
512                         // TODO: ui manipulations
513                         // note: response objects don't work, but we have the
514                         // HTTP body of the response~~
515
516                         // If empty body, everything went fine
517                         if (!body) { return; }
518
519                         if (body.indexOf('403 Forbidden') !== -1) {
520                             self.display_error({
521                                 title: 'Access Denied',
522                                 error: 'Incorrect super-administrator password'
523                             })
524                         } else {
525                             self.display_error({
526                                 title: 'Restore Database',
527                                 error: 'Could not restore the database'
528                             })
529                         }
530                     },
531                     complete: function() {
532                         self.unblockUI();
533                         self.do_notify(_t("Restored"), _t("Database restored successfully"));
534                     }
535                 });
536             }
537         });
538     },
539     do_change_password: function() {
540         var self = this;
541         self.$option_id.html(QWeb.render("Change_DB_Pwd", self));
542
543         self.$option_id.find("form[name=change_pwd_form]").validate({
544             messages: {
545                 old_pwd: "Please enter your previous password",
546                 new_pwd: "Please enter your new password",
547                 confirm_pwd: {
548                     required: "Please confirm your new password",
549                     equalTo: "The confirmation does not match the password"
550                 }
551             },
552             submitHandler: function (form) {
553                 self.rpc("/web/database/change_password", {
554                     'fields': $(form).serializeArray()
555                 }, function(result) {
556                     if (result.error) {
557                         self.display_error(result);
558                         return;
559                     }
560                     self.do_notify("Changed Password", "Password has been changed successfully");
561                 });
562             }
563         });
564     }
565 });
566
567 openerp.web.Login =  openerp.web.OldWidget.extend(/** @lends openerp.web.Login# */{
568     remember_credentials: true,
569     
570     template: "Login",
571     /**
572      * @constructs openerp.web.Login
573      * @extends openerp.web.OldWidget
574      *
575      * @param parent
576      * @param element_id
577      */
578
579     init: function(parent) {
580         this._super(parent);
581         this.has_local_storage = typeof(localStorage) != 'undefined';
582         this.selected_db = null;
583         this.selected_login = null;
584
585         if (this.has_local_storage && this.remember_credentials) {
586             this.selected_db = localStorage.getItem('last_db_login_success');
587             this.selected_login = localStorage.getItem('last_login_login_success');
588             if (jQuery.deparam(jQuery.param.querystring()).debug != undefined) {
589                 this.selected_password = localStorage.getItem('last_password_login_success');
590             }
591         }
592     },
593     start: function() {
594         var self = this;
595         this.database = new openerp.web.Database(this);
596         this.database.appendTo(this.$element);
597
598         this.$element.find('#oe-db-config').click(function() {
599             self.database.show();
600         });
601
602         this.$element.find("form").submit(this.on_submit);
603
604         this.rpc("/web/database/get_list", {}, function(result) {
605             self.set_db_list(result.db_list);
606         }, 
607         function(error, event) {
608             if (error.data.fault_code === 'AccessDenied') {
609                 event.preventDefault();
610             }
611         });
612
613     },
614     set_db_list: function (list) {
615         this.$element.find("[name=db]").replaceWith(
616             openerp.web.qweb.render('Login_dblist', {
617                 db_list: list, selected_db: this.selected_db}))
618     },
619     on_submit: function(ev) {
620         if(ev) {
621             ev.preventDefault();
622         }
623         var $e = this.$element;
624         var db = $e.find("form [name=db]").val();
625         if (!db) {
626             this.do_warn("Login", "No database selected !");
627             return false;
628         }
629         var login = $e.find("form input[name=login]").val();
630         var password = $e.find("form input[name=password]").val();
631
632         this.do_login(db, login, password);
633     },
634     /**
635      * Performs actual login operation, and UI-related stuff
636      *
637      * @param {String} db database to log in
638      * @param {String} login user login
639      * @param {String} password user password
640      */
641     do_login: function (db, login, password) {
642         var self = this;
643         this.$element.removeClass('login_invalid');
644         this.session.on_session_invalid.add({
645             callback: function () {
646                 self.$element.addClass("login_invalid");
647             },
648             unique: true
649         });
650         this.session.session_authenticate(db, login, password).then(function() {
651             self.$element.removeClass("login_invalid");
652             if (self.has_local_storage) {
653                 if(self.remember_credentials) {
654                     localStorage.setItem('last_db_login_success', db);
655                     localStorage.setItem('last_login_login_success', login);
656                     if (jQuery.deparam(jQuery.param.querystring()).debug != undefined) {
657                         localStorage.setItem('last_password_login_success', password);
658                     }
659                 } else {
660                     localStorage.setItem('last_db_login_success', '');
661                     localStorage.setItem('last_login_login_success', '');
662                     localStorage.setItem('last_password_login_success', '');
663                 }
664             }
665         });
666     }
667 });
668
669 openerp.web.Menu =  openerp.web.Widget.extend(/** @lends openerp.web.Menu# */{
670     /**
671      * @constructs openerp.web.Menu
672      * @extends openerp.web.Widget
673      *
674      * @param parent
675      */
676     template: 'Menu',
677     init: function() {
678         this._super.apply(this, arguments);
679         this.has_been_loaded = $.Deferred();
680     },
681     start: function() {
682         this._super.apply(this, arguments);
683         this.$secondary_menus = this.getParent().$element.find('.oe_secondary_menus_container');
684         this.$secondary_menus.on('click', 'a[data-menu]', this.on_menu_click);
685     },
686     do_reload: function() {
687         var self = this;
688         return this.rpc("/web/menu/load", {}, this.on_loaded).then(function () {
689             if (self.current_menu) {
690                 self.open_menu(self.current_menu);
691             }
692         });
693     },
694     on_loaded: function(data) {
695         this.data = data;
696         this.renderElement();
697         this.$element.on('click', 'a[data-menu]', this.on_menu_click);
698         this.$secondary_menus.html(QWeb.render("Menu.secondary", { widget : this }));
699         // Hide second level submenus
700         this.$secondary_menus.find('.oe_menu_toggler').siblings('.oe_secondary_submenu').hide();
701         this.has_been_loaded.resolve();
702     },
703     /**
704      * Opens a given menu by id, as if a user had browsed to that menu by hand
705      * except does not trigger any event on the way
706      *
707      * @param {Number} id database id of the terminal menu to select
708      */
709     open_menu: function (id) {
710         var $clicked_menu, $sub_menu, $main_menu;
711         $clicked_menu = this.$element.add(this.$secondary_menus).find('a[data-menu=' + id + ']');
712
713         if (this.$secondary_menus.has($clicked_menu).length) {
714             $sub_menu = $clicked_menu.parents('.oe_secondary_menu');
715             $main_menu = this.$element.find('a[data-menu=' + $sub_menu.data('menu-parent') + ']');
716         } else {
717             $sub_menu = this.$secondary_menus.find('.oe_secondary_menu[data-menu-parent=' + $clicked_menu.attr('data-menu') + ']');
718             $main_menu = $clicked_menu;
719         }
720
721         // Activate current main menu
722         this.$element.find('.oe_active').removeClass('oe_active');
723         $main_menu.addClass('oe_active');
724
725         // Show current sub menu
726         this.$secondary_menus.find('.oe_secondary_menu').hide();
727         $sub_menu.show();
728
729         // Activate current menu item and show parents
730         this.$secondary_menus.find('.oe_active').removeClass('oe_active');
731         if ($main_menu !== $clicked_menu) {
732             $clicked_menu.parents().show();
733             if ($clicked_menu.is('.oe_menu_toggler')) {
734                 $clicked_menu.toggleClass('oe_menu_opened').siblings('.oe_secondary_submenu:first').toggle();
735             } else {
736                 $clicked_menu.parent().addClass('oe_active');
737             }
738         }
739     },
740     open_action: function (id) {
741         var menu_id, $menu = this.$element.add(this.$secondary_menus).find('a[data-action-id=' + id + ']');
742         if (menu_id = $menu.data('menu')) {
743             this.open_menu(menu_id);
744         }
745     },
746     on_menu_click: function(ev, id) {
747         id = id || 0;
748         var $clicked_menu, manual = false;
749
750         if (id) {
751             // We can manually activate a menu with it's id (for hash url mapping)
752             manual = true;
753             $clicked_menu = this.$element.find('a[data-menu=' + id + ']');
754             if (!$clicked_menu.length) {
755                 $clicked_menu = this.$secondary_menus.find('a[data-menu=' + id + ']');
756             }
757         } else {
758             $clicked_menu = $(ev.currentTarget);
759             id = $clicked_menu.data('menu');
760         }
761
762         this.trigger('menuClicked', id, $clicked_menu);
763
764         if (id) {
765             this.open_menu(id);
766             this.current_menu = id;
767             this.session.active_id = id;
768             var action_id = $clicked_menu.data('action-id');
769             if (action_id) {
770                 this.on_action(action_id);
771             }
772         }
773         if (ev) {
774             ev.stopPropagation();
775         }
776         return false;
777     },
778     do_show_secondary: function($sub_menu, $main_menu) {
779         var self = this;
780         this.$secondary_menus.show();
781         if (!arguments.length) {
782             return;
783         }
784         $sub_menu.show();
785     },
786     on_action: function(action) {
787     }
788 });
789
790 openerp.web.UserMenu =  openerp.web.Widget.extend(/** @lends openerp.web.UserMenu# */{
791     template: "UserMenu",
792     /**
793      * @constructs openerp.web.UserMenu
794      * @extends openerp.web.Widget
795      *
796      * @param parent
797      */
798     init: function(parent) {
799         this._super(parent);
800         this.update_promise = $.Deferred().resolve();
801     },
802     start: function() {
803         var self = this;
804         this._super.apply(this, arguments);
805         $('html').bind('click', function() {
806             self.$element.find('.oe_dropdown_options').hide();
807         });
808         this.$element.find('.oe_dropdown_toggle').click(function() {
809             self.$element.find('.oe_dropdown_options').toggle();
810             return false;
811         });
812         this.$element.on('click', '.oe_dropdown_options li a[data-menu]', function() {
813             var f = self['on_menu_' + $(this).data('menu')];
814             f && f($(this));
815             self.$element.find('.oe_dropdown_options').hide();
816             return false;
817         });
818     },
819     change_password :function() {
820         var self = this;
821         this.dialog = new openerp.web.Dialog(this, {
822             title: _t("Change Password"),
823             width : 'auto'
824         }).open();
825         this.dialog.$element.html(QWeb.render("Change_Pwd", self));
826         this.dialog.$element.find("form[name=change_password_form]").validate({
827             submitHandler: function (form) {
828                 self.rpc("/web/session/change_password",{
829                     'fields': $(form).serializeArray()
830                 }, function(result) {
831                     if (result.error) {
832                         self.display_error(result);
833                         return;
834                     } else {
835                         openerp.webclient.on_logout();
836                     }
837                 });
838             }
839         });
840     },
841     display_error: function (error) {
842         return openerp.web.dialog($('<div>'), {
843             modal: true,
844             title: error.title,
845             buttons: [
846                 {text: _("Ok"), click: function() { $(this).dialog("close"); }}
847             ]
848         }).html(error.error);
849     },
850     do_update: function () {
851         var self = this;
852         var fct = function() {
853             var $avatar = self.$element.find('.oe_topbar_avatar');
854             $avatar.attr('src', $avatar.data('default-src'));
855             if (!self.session.uid)
856                 return;
857             var func = new openerp.web.Model("res.users").get_func("read");
858             return func(self.session.uid, ["name", "company_id"]).pipe(function(res) {
859                 // TODO: Only show company if multicompany in use
860                 self.$element.find('.oe_topbar_name').text(res.name + '/' + res.company_id[1]);
861                 return self.shortcut_load();
862             });
863         };
864         this.update_promise = this.update_promise.pipe(fct, fct);
865     },
866     on_action: function() {
867     },
868     shortcut_load :function(){
869         var self = this,
870             sc = self.session.shortcuts,
871             shortcuts_ds = new openerp.web.DataSet(this, 'ir.ui.view_sc');
872         self.$element.find('.oe_dropdown_options a[data-menu=shortcut]').each(function() {
873             $(this).parent().remove();
874         });
875         // TODO: better way to communicate between sections.
876         // sc.bindings, because jquery does not bind/trigger on arrays...
877         if (!sc.binding) {
878             sc.binding = {};
879             $(sc.binding).bind({
880                 'add': function (e, attrs) {
881                     shortcuts_ds.create(attrs, function (out) {
882                         var shortcut = QWeb.render('UserMenu.shortcut', {
883                             shortcuts : [{
884                                 name : attrs.name,
885                                 id : out.result,
886                                 res_id : attrs.res_id
887                             }]
888                         });
889                         $(shortcut).appendTo(self.$element.find('.oe_dropdown_options'));
890                         attrs.id = out.result;
891                         sc.push(attrs);
892                     });
893                 },
894                 'remove-current': function () {
895                     var menu_id = self.session.active_id;
896                     var $shortcut = self.$element.find('.oe_dropdown_options li a[data-id=' + menu_id + ']');
897                     var shortcut_id = $shortcut.data('shortcut-id');
898                     $shortcut.remove();
899                     shortcuts_ds.unlink([shortcut_id]);
900                     var sc_new = _.reject(sc, function(shortcut){ return shortcut_id === shortcut.id});
901                     sc.splice(0, sc.length);
902                     sc.push.apply(sc, sc_new);
903                 }
904             });
905         }
906         return this.rpc('/web/session/sc_list', {}, function(shortcuts) {
907             sc.splice(0, sc.length);
908             sc.push.apply(sc, shortcuts);
909
910             $(QWeb.render('UserMenu.shortcut', {'shortcuts': shortcuts}))
911                 .appendTo(self.$element.find('.oe_dropdown_options'));
912         });
913     },
914     on_menu_logout: function() {
915     },
916     on_menu_settings: function() {
917         var self = this;
918         var action_manager = new openerp.web.ActionManager(this);
919         var dataset = new openerp.web.DataSet (this,'res.users',this.context);
920         dataset.call ('action_get','',function (result){
921             self.rpc('/web/action/load', {action_id:result}, function(result){
922                 action_manager.do_action(_.extend(result['result'], {
923                     res_id: self.session.uid,
924                     res_model: 'res.users',
925                     flags: {
926                         action_buttons: false,
927                         search_view: false,
928                         sidebar: false,
929                         views_switcher: false,
930                         pager: false
931                     }
932                 }));
933             });
934         });
935         this.dialog = new openerp.web.Dialog(this,{
936             title: _t("Preferences"),
937             width: '700px',
938             buttons: [
939                 {text: _t("Cancel"), click: function(){ $(this).dialog('destroy'); }},
940                 {text: _t("Change password"), click: function(){ self.change_password(); }},
941                 {text: _t("Save"), click: function(){
942                         var inner_viewmanager = action_manager.inner_viewmanager;
943                         inner_viewmanager.views[inner_viewmanager.active_view].controller.do_save()
944                         .then(function() {
945                             self.dialog.destroy();
946                             // needs to refresh interface in case language changed
947                             window.location.reload();
948                         });
949                     }
950                 }
951             ]
952         }).open();
953        action_manager.appendTo(this.dialog);
954        action_manager.render(this.dialog);
955     },
956     on_menu_about: function() {
957         var self = this;
958         self.rpc("/web/webclient/version_info", {}).then(function(res) {
959             var $help = $(QWeb.render("About-Page", {version_info: res}));
960             $help.find('a.oe_activate_debug_mode').click(function (e) {
961                 e.preventDefault();
962                 window.location = $.param.querystring(
963                         window.location.href, 'debug');
964             });
965             openerp.web.dialog($help, {autoOpen: true,
966                 modal: true, width: 960, title: _t("About")});
967         });
968     },
969     on_menu_shortcut: function($link) {
970         var self = this,
971             id = $link.data('id');
972         self.session.active_id = id;
973         self.rpc('/web/menu/action', {'menu_id': id}, function(ir_menu_data) {
974             if (ir_menu_data.action.length){
975                 self.on_action(ir_menu_data.action[0][2]);
976             }
977         });
978     }
979 });
980
981 openerp.web.WebClient = openerp.web.Widget.extend(/** @lends openerp.web.WebClient */{
982     /**
983      * @constructs openerp.web.WebClient
984      * @extends openerp.web.Widget
985      */
986     init: function(parent) {
987         var self = this;
988         this._super(parent);
989         openerp.webclient = this;
990         this.querystring = '?' + jQuery.param.querystring();
991         this._current_state = null;
992     },
993     start: function() {
994         var self = this;
995         this.$element.addClass("openerp openerp2");
996         if (jQuery.param != undefined && jQuery.deparam(jQuery.param.querystring()).kitten != undefined) {
997             this.$element.addClass("kitten-mode-activated");
998             this.$element.delegate('img.oe-record-edit-link-img', 'hover', function(e) {
999                 self.$element.toggleClass('clark-gable');
1000             });
1001         }
1002         this.session.bind_session().then(function() {
1003             if (!self.session.session_is_valid()) {
1004                 self.show_login();
1005             }
1006         });
1007         this.session.on_session_valid.add(function() {
1008             self.show_application();
1009
1010             self.user_menu.do_update();
1011             self.menu.do_reload();
1012             if(self.action_manager)
1013                 self.action_manager.destroy();
1014             self.action_manager = new openerp.web.ActionManager(self);
1015             self.action_manager.appendTo(self.$element.find('.oe_application'));
1016             self.bind_hashchange();
1017             var version_label = _t("OpenERP - Unsupported/Community Version");
1018             if (!self.session.openerp_entreprise) {
1019                 self.$element.find('.oe_footer_powered').append(_.str.sprintf('<span> - <a href="http://www.openerp.com/support-or-publisher-warranty-contract" target="_blank">%s</a></span>', version_label));
1020                 document.title = version_label;
1021             }
1022         });
1023         this.$element.on('mouseenter', '.oe_systray > div:not([data-tipsy=true])', function() {
1024             $(this).attr('data-tipsy', 'true').tipsy().trigger('mouseenter');
1025         });
1026     },
1027     show_login: function() {
1028         var self = this;
1029         this.destroy_content();
1030         this.show_common();
1031         self.login = new openerp.web.Login(self);
1032         self.login.appendTo(self.$element);
1033     },
1034     show_application: function() {
1035         var self = this;
1036         this.destroy_content();
1037         this.show_common();
1038         self.$table = $(QWeb.render("WebClient", {}));
1039         self.$element.append(self.$table);
1040         self.menu = new openerp.web.Menu(self);
1041         self.menu.replace(this.$element.find('.oe_menu_placeholder'));
1042         self.menu.on_action.add(this.proxy('on_menu_action'));
1043         self.user_menu = new openerp.web.UserMenu(self);
1044         self.user_menu.replace(this.$element.find('.oe_user_menu_placeholder'));
1045         self.user_menu.on_menu_logout.add(this.proxy('on_logout'));
1046         self.user_menu.on_action.add(this.proxy('on_menu_action'));
1047     },
1048     show_common: function() {
1049         var self = this;
1050         if (!this.crashmanager) {
1051             this.crashmanager =  new openerp.web.CrashManager();
1052             openerp.connection.on_rpc_error.add(this.crashmanager.on_rpc_error);
1053             window.onerror = function (message, file, line) {
1054                 self.crashmanager.on_traceback({
1055                     type: _t("Client Error"),
1056                     message: message,
1057                     data: {debug: file + ':' + line}
1058                 });
1059             }
1060         }
1061         this.notification = new openerp.web.Notification(this);
1062         this.notification.appendTo(this.$element);
1063         this.loading = new openerp.web.Loading(this);
1064         this.loading.appendTo(this.$element);
1065     },
1066     destroy_content: function() {
1067         _.each(_.clone(this.getChildren()), function(el) {
1068             el.destroy();
1069         });
1070         this.$element.children().remove();
1071     },
1072     do_reload: function() {
1073         var self = this;
1074         return this.session.session_reload().pipe(function () {
1075             openerp.connection.load_modules(true).pipe(
1076                 self.menu.proxy('do_reload')); });
1077
1078     },
1079     do_notify: function() {
1080         var n = this.notification;
1081         n.notify.apply(n, arguments);
1082     },
1083     do_warn: function() {
1084         var n = this.notification;
1085         n.warn.apply(n, arguments);
1086     },
1087     on_logout: function() {
1088         var self = this;
1089         this.session.session_logout().then(function () {
1090             $(window).unbind('hashchange', self.on_hashchange);
1091             self.do_push_state({});
1092             //would be cool to be able to do this, but I think it will make addons do strange things
1093             //this.show_login();
1094             window.location.reload();
1095         });
1096     },
1097     bind_hashchange: function() {
1098         $(window).bind('hashchange', this.on_hashchange);
1099
1100         var state = $.bbq.getState(true);
1101         if (! _.isEmpty(state)) {
1102             $(window).trigger('hashchange');
1103         } else {
1104             this.action_manager.do_action({type: 'ir.actions.client', tag: 'default_home'});
1105         }
1106     },
1107     on_hashchange: function(event) {
1108         var state = event.getState(true);
1109         if (!_.isEqual(this._current_state, state)) {
1110             this.action_manager.do_load_state(state, !!this._current_state);
1111         }
1112         this._current_state = state;
1113     },
1114     do_push_state: function(state) {
1115         var url = '#' + $.param(state);
1116         this._current_state = _.clone(state);
1117         $.bbq.pushState(url);
1118     },
1119     on_menu_action: function(action) {
1120         this.action_manager.do_action(action);
1121     },
1122     do_action: function(action) {
1123         var self = this;
1124         // TODO replace by client action menuclick 
1125         if(action.menu_id) {
1126             this.do_reload().then(function () {
1127                 self.menu.on_menu_click(null, action.menu_id);
1128             });
1129         }
1130     },
1131     set_content_full_screen: function(fullscreen) {
1132         if (fullscreen)
1133             $(".oe_webclient", this.$element).addClass("oe_content_full_screen");
1134         else
1135             $(".oe_webclient", this.$element).removeClass("oe_content_full_screen");
1136     }
1137 });
1138
1139 openerp.web.EmbeddedClient = openerp.web.OldWidget.extend({
1140     template: 'EmptyComponent',
1141     init: function(action_id, options) {
1142         this._super();
1143         // TODO take the xmlid of a action instead of its id 
1144         this.action_id = action_id;
1145         this.options = options || {};
1146         this.am = new openerp.web.ActionManager(this);
1147     },
1148
1149     start: function() {
1150         var self = this;
1151         this.am.appendTo(this.$element.addClass('openerp openerp2'));
1152         return this.rpc("/web/action/load", { action_id: this.action_id }, function(result) {
1153             var action = result.result;
1154             action.flags = _.extend({
1155                 //views_switcher : false,
1156                 search_view : false,
1157                 action_buttons : false,
1158                 sidebar : false
1159                 //pager : false
1160             }, self.options, action.flags || {});
1161
1162             self.am.do_action(action);
1163         });
1164     }
1165
1166 });
1167
1168 openerp.web.embed = function (origin, dbname, login, key, action, options) {
1169     $('head').append($('<link>', {
1170         'rel': 'stylesheet',
1171         'type': 'text/css',
1172         'href': origin +'/web/webclient/css'
1173     }));
1174     var currentScript = document.currentScript;
1175     if (!currentScript) {
1176         var sc = document.getElementsByTagName('script');
1177         currentScript = sc[sc.length-1];
1178     }
1179     openerp.connection.bind_session(origin).then(function () {
1180         openerp.connection.session_authenticate(dbname, login, key, true).then(function () {
1181             var client = new openerp.web.EmbeddedClient(action, options);
1182             client.insertAfter(currentScript);
1183         });
1184     });
1185
1186 }
1187
1188 };
1189
1190 // vim:et fdc=0 fdl=0 foldnestmax=3 fdm=syntax: