-
Notifications
You must be signed in to change notification settings - Fork 0
/
angular-the-linkedin.js
142 lines (118 loc) · 3.56 KB
/
angular-the-linkedin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/**
* thelinkedin module
*/
angular.module('thelinkedin', []).
/**
* TheLinkedin provider
*/
provider('TheLinkedin', [function() {
/**
* Options object available for module
* options/services definition.
* @type {Object}
*/
var options = {};
/**
* apiKey
* @type {String}
*/
options.apiKey = null;
this.setApiKey = function(apiKey) {
options.apiKey = apiKey;
return this;
};
this.getApiKey = function() {
return options.apiKey;
};
/**
* Scopes
* @default 'https://developer.linkedin.com/docs/oauth2#permissions'
* @type {Boolean}
*/
options.scopes = '';
this.setScopes = function(scopes) {
options.scopes = scopes;
return this;
};
this.getScopes = function() {
return options.scopes;
};
this.init = function(customOptions) {
angular.extend(options, customOptions);
};
/**
* This defines the The Linkedin Service on run.
*/
this.$get = ['$q', '$rootScope', '$timeout', function($q, $rootScope, $timeout) {
/**
* Define a deferred instance that will implement asynchronous calls
* @type {Object}
*/
var deferred;
/**
* TheLinkedin Class
* @type {Class}
*/
var NgTheLinkedin = function () {};
NgTheLinkedin.prototype.login = function() {
var deferred = $q.defer();
IN.User.authorize(function(){
});
console.log("IN.User.isAuthorized()",IN.User.isAuthorized());
if (!IN.User.isAuthorized()) {
IN.Event.on(IN, "auth", function() {
IN.init({
scope: options.scopes
});
IN.API.Profile("me").fields(
[ "id", "firstName", "lastName", "pictureUrl","publicProfileUrl",
"emailAddress","positions","educations" ]).result(
function(result) {
deferred.resolve(result.values[0]);
console.log('result.values[0]',result.values[0]);
}).error(function(err) {
$scope.$apply(function() {
deferred.reject('error');
});
});
});
}else{
IN.API.Profile("me").fields(
[ "id", "firstName", "lastName", "pictureUrl",
"publicProfileUrl" ]).result(
function(result) {
deferred.resolve(result.values[0]);
console.log('result.values[0]',result.values[0]);
}).error(function(err) {
$scope.$apply(function() {
deferred.reject('error');
});
});
};
return deferred.promise;
}
NgTheLinkedin.prototype.onLinkedInLoad = function() {
IN.Event.on(IN, "auth", function() {
onLinkedInLogin();
});
IN.Event.on(IN, "logout", function() {
onLinkedInLogout();
});
}
//execute on logout event
NgTheLinkedin.prototype.onLinkedInLogout = function() {
location.reload(true);
}
return new NgTheLinkedin();
}];
}])
// Initialization of module
.run([function(TheLinkedin) {
var a = document.createElement("script");
a.type = "text/javascript", a.async = false, a.src = "https://platform.linkedin.com/in.js?async=true";
a.onload = function(){
IN.init({api_key: '757h9srh7nz5jj', authorize: true});
};
var b = document.getElementsByTagName("script")[0];
b.parentNode.insertBefore(a, b)
}]);