odoo/addons/web_analytics/static/src/js/web_analytics.js

82 lines
3.5 KiB
JavaScript

var _gaq = _gaq || []; // asynchronous stack used by google analytics
openerp.web_analytics = function(instance) {
/** The Google Analytics Module inserts the Google Analytics JS Snippet
* at the top of the page, and sends to google a virtual url each time the
* openerp url is changed. Google needs a virtual url because it cannot
* handle sharps in the url. At this time the virtual url only handles the
* model and view parameters and is of the form /web_analytics/redirect/MODEL/VIEW
*
* The pushes of the virtual urls is made by adding a callback to the
* web_client.do_push_state() method which is responsible of changing the openerp current url
*/
if (instance.webclient) {
// _gaq.push(['_setAccount', 'UA-25293939-2']); // fva@openerp.com localhost
// _gaq.push(['_setAccount', 'UA-28648768-1']); // fva@openerp.com runbot
// _gaq.push(['_setAccount', 'UA-28648768-1']); // fva@openerp.com
// _gaq.push(['_setAccount', 'UA-7333765-1']); // fp@openerp.com
// _gaq.push(['_setAccount', 'UA-7333765-1']); // fp@openerp.com
// _gaq.push(['_setDomainName', '.openerp.com']);
_gaq.push(['_setAccount', 'UA-35793871-1']); // vta@openerp.com localhost
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_trackPageview']);
_gaq.push(['_deleteCustomVar', 1]);
_gaq.push(['_deleteCustomVar', 2]);
_gaq.push(['_deleteCustomVar', 3]);
_gaq.push(['_deleteCustomVar', 4]);
_gaq.push(['_deleteCustomVar', 5]);
if (instance.session.uid !== 1) {
if ((/\.demo.openerp.com/).test(instance.session.server)) {
_gaq.push(['_setCustomVar', 1, 'User Type', 'Demo User', 1]);
} else {
_gaq.push(['_setCustomVar', 1, 'User Type', 'Normal User', 1]);
}
} else {
_gaq.push(['_setCustomVar', 1, 'User Type', 'Admin User', 1]);
}
// Google Analytics Code snippet
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga,s);
})();
var self = this;
instance.webclient.on('state_pushed', self, function(state) {
var url = '/' + window.location.hash;
_gaq.push(['_trackPageview', url]);
var model = state["model"] || "no_model";
var view_type = state["view_type"] || "default";
_gaq.push(['_setCustomVar', 2, 'Object', model, 3]);
_gaq.push(['_setCustomVar', 3, 'View Type', view_type, 3]);
});
}
instance.web.FormView = instance.web.FormView.extend({
save: function(prepend_on_create) {
if (!this.datarecord.id) {
_gaq.push(['_trackEvent', this.model, 'on_button_save', 'Save']);
} else {
_gaq.push(['_trackEvent', this.model, 'on_button_edit', 'Save']);
}
return this._super.apply(this, arguments);
}
});
instance.web.form.WidgetButton = instance.web.form.WidgetButton.extend({
on_confirmed: function() {
_gaq.push(['_trackEvent', this.view.model, this.node.attrs.name, this.node.attrs.string]);
return this._super.apply(this, arguments);
},
});
};