odoo/addons/web_linkedin/static/src/js/linkedin.js

129 lines
5.0 KiB
JavaScript
Raw Normal View History

/*---------------------------------------------------------
* OpenERP web_linkedin (module)
*---------------------------------------------------------*/
openerp.web_linkedin = function(instance) {
var QWeb = instance.web.qweb;
var _t = instance.web._t;
instance.web_linkedin.LinkedinTester = instance.web.Class.extend({
init: function() {
this.api_key = "cxnr0l53n73x";
this.linkedin_added = false;
this.linkedin_def = $.Deferred();
this.auth_def = $.Deferred();
},
test_linkedin: function() {
var self = this;
return this.test_api_key().pipe(function() {
if (self.linkedin_added)
return self.linkedin_def.promise();
var tag = document.createElement('script');
tag.type = 'text/javascript';
tag.src = "http://platform.linkedin.com/in.js";
tag.innerHTML = 'api_key : ' + self.api_key + '\nauthorize : true';
document.getElementsByTagName('head')[0].appendChild(tag);
self.linkedin_added = true;
$(tag).load(function() {
IN.Event.on(IN, "auth", function() {
self.auth_def.resolve();
});
self.linkedin_def.resolve();
});
return self.linkedin_def.promise();
});
},
test_api_key: function() {
if (this.api_key) {
return $.when();
}
return new instance.web.Model("ir.config_parameter").call("get_param", ["web.linkedin.apikey"]).pipe(function(a) {
if (a !== false) {
self.api_key = a;
return true;
} else {
return $.Deferred().reject();
}
});
},
test_authentication: function() {
return this.auth_def.promise();
},
});
/*return new instance.web.Model("ir.config_parameter").call("set_param", ["web.linkedin.apikey", "cxnr0l53n73x"]).pipe(function() {
return self.test_linkedin();
});*/
instance.web_linkedin.tester = new instance.web_linkedin.LinkedinTester();
instance.web_linkedin.Linkedin = instance.web.form.FieldChar.extend({
init: function() {
this._super.apply(this, arguments);
var self = this;
this.display_dm = new instance.web.DropMisordered(true);
},
initialize_content: function() {
var $ht = $(QWeb.render("FieldChar.linkedin"));
var $in = this.$("input");
$in.replaceWith($ht);
this.$(".oe_linkedin_input").append($in);
this.$(".oe_linkedin_img").click(_.bind(this.search_linkedin, this));
this._super();
},
search_linkedin: function() {
var self = this;
this.display_dm.add(instance.web_linkedin.tester.test_linkedin()).then(function() {
new instance.web_linkedin.LinkedinPopup(self, self.get("value")).open();
});
},
});
instance.web.form.widgets.add('linkedin', 'instance.web_linkedin.Linkedin');
instance.web_linkedin.LinkedinPopup = instance.web.Dialog.extend({
template: "Linkedin.popup",
init: function(parent, text) {
this._super(parent);
this.text = text;
this.limit = 10;
},
start: function() {
this._super();
var self = this;
this.on("authentified", this, this.authentified);
instance.web_linkedin.tester.test_authentication().then(function() {
self.trigger("authentified");
});
},
authentified: function() {
var self = this;
cdef = $.Deferred();
pdef = $.Deferred();
IN.API.Raw(_.str.sprintf("company-search?keywords=%s&count=%d", encodeURI(this.text), this.limit)).result(function (result) {
cdef.resolve(result);
});
IN.API.PeopleSearch().params({"keywords": this.text, "count": this.limit}).result(function(result) {
pdef.resolve(result);
});
return $.when(cdef, pdef).then(function(companies, people) {
var lst = companies.companies.values;
var plst = people.people.values;
lst = _.initial(lst, _.min([self.limit / 2, plst.length]));
_.map(lst, function(el) {
el.__type = "company";
return el;
});
plst = _.first(people.people.values, self.limit - lst.length)
_.map(plst, function(el) {
el.__type = "people";
return el;
});
lst = lst.concat(plst);
console.log("found", lst.length, lst);
});
},
});
};
// vim:et fdc=0 fdl=0: