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