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