-
Notifications
You must be signed in to change notification settings - Fork 0
/
easyrec.js
332 lines (277 loc) · 10.8 KB
/
easyrec.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/*
* Copyright 2011 Research Studios Austria Forschungsgesellschaft mBH
*
* This file is part of easyrec.
*
* easyrec is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* easyrec is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with easyrec. If not, see <http://www.gnu.org/licenses/>.
*/
var defaults = {
drawingCallback: "drawRecommendationList",
actionCallback: "void",
userId:null,
itemId:"-1",
sessionId:easyrec_getSessionId(),
itemUrl:"",
itemDescription:"",
itemImageUrl:"",
timeRange:"ALL",
numberOfResults:10,
actionTime:null,
strategy:"NEWEST",
useFallback:false,
itemType:"ITEM",
requestedItemType:"ITEM",
clusterId:null,
basedOnActionType:"VIEW"
};
//////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////// Item Actions ////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
function easyrec_sendAction(actionType, options) {
var o = easyrec_extend(options, defaults);
if (actionType != "buy" && actionType != "view" && actionType != "rate") {
o.actionType = actionType;
actionType = "sendaction";
}
easyrec_includeJavascript(easyrecApiUrl + actionType + "?" +
"tenantid=" + tenantId +
"&apikey=" + apiKey +
((o.userId) ? ("&userid=" + o.userId ) : "") +
"&itemid=" + o.itemId +
"&sessionid=" + o.sessionId +
"&itemurl=" + encodeURIComponent(o.itemUrl) +
"&itemdescription=" + encodeURIComponent(o.itemDescription) +
"&itemimageurl=" + encodeURIComponent(o.itemImageUrl) +
"&ratingvalue=" + o.ratingValue +
"&callback=" + o.actionCallback +
"&itemtype=" + o.itemType +
((o.actionType) ? ("&actiontype=" + o.actionType ) : "") +
((o.actionValue) ? ("&actionvalue=" + o.actionValue ) : "") +
((o.actionTime) ? ("&actiontime=" + o.actionTime ) : ""));
}
// This function tracks if a user purchases a specific item.
function easyrec_buy(options) {
easyrec_sendAction("buy", options);
}
// This function tracks if a user views a specific item.
function easyrec_view(options) {
easyrec_sendAction("view", options);
}
// This function tracks if a user rates a specific item.
function easyrec_rate(options) {
easyrec_sendAction("rate", options);
}
// This function calls the recommender to retrieve a list of recommendations
function easyrec_getRecommendations(recommendationType, options) {
var o = easyrec_extend(options, defaults);
easyrec_includeJavascript(easyrecApiUrl + recommendationType + "?" +
"tenantid=" + tenantId +
"&apikey=" + apiKey +
((o.userId) ? ("&userid=" + o.userId ) : "") +
"&itemid=" + o.itemId +
"&itemtype=" + o.itemType +
"&requesteditemtype=" + o.requestedItemType +
"&actiontype=" + o.basedOnActionType +
"&callback=" + o.drawingCallback +
"&numberOfResults=" + o.numberOfResults +
((o.assocType) ? ("&assoctype=" + o.assocType ) : ""));
}
function easyrec_otherUsersAlsoViewed(options) {
easyrec_getRecommendations("otherusersalsoviewed", options);
}
function easyrec_otherUsersAlsoBought(options) {
easyrec_getRecommendations("otherusersalsobought", options);
}
function easyrec_itemsRatedGoodByOtherUsers(options) {
easyrec_getRecommendations("itemsratedgoodbyotherusers", options);
}
function easyrec_recommendationsForUser(options) {
easyrec_getRecommendations("recommendationsforuser", options);
}
function easyrec_relatedItems(options) {
easyrec_getRecommendations("relateditems", options);
}
function easyrec_relatedItems(options) {
easyrec_getRecommendations("actionhistoryforuser", options);
}
///////////////////////////////// Ranking functions /////////////////////////////////////
// for all Ranking functions:
// allowed values for timeRange are: DAY, WEEK, MONTH, ALL
// the functions retrieve the daily, weekly, monthly or all time most acted on items
function easyrec_getRankings(rankingType, options) {
var o = easyrec_extend(options, defaults);
easyrec_includeJavascript(easyrecApiUrl + rankingType + "?" +
"tenantid=" + tenantId +
"&apikey=" + apiKey +
"&timeRange=" + o.timeRange +
"&numberOfResults=" + o.numberOfResults +
"&requesteditemtype=" + o.requestedItemType +
"&callback=" + o.drawingCallback);
}
function easyrec_mostViewedItems(options) {
easyrec_getRankings("mostvieweditems", options);
}
function easyrec_mostBoughtItems(options) {
easyrec_getRankings("mostboughtitems", options);
}
function easyrec_mostRatedItems(options) {
easyrec_getRankings("mostrateditems", options);
}
function easyrec_bestRatedItems(options) {
easyrec_getRankings("bestrateditems", options);
}
function easyrec_worstRatedItems(options) {
easyrec_getRankings("worstrateditems", options);
}
function easyrec_itemsInCluster(options) {
var o = easyrec_extend(options, defaults);
easyrec_includeJavascript(easyrecApiUrl + "itemsincluster?" +
"tenantId=" + tenantId +
"&apikey=" + apiKey +
"&clusterId=" + o.clusterId +
"&strategy=" + o.strategy +
"&useFallback=" + o.useFallback +
"&numberOfResults=" + o.numberOfResults +
"&requesteditemtype=" + o.requestedItemType +
"&callback" + o.drawingCallback);
}
function easyrec_cluster(options) {
var o = easyrec_extend(options, defaults);
easyrec_includeJavascript(easyrecApiUrl + "clusters?" +
"tenantId=" + tenantId +
"&apikey=" + apiKey +
"&callback" + o.drawingCallback);
}
function easyrec_itemtypes(options) {
var o = easyrec_extend(options, defaults);
easyrec_includeJavascript(easyrecApiUrl + "itemtypes?" +
"tenantId=" + tenantId +
"&apikey=" + apiKey +
"&callback" + o.drawingCallback);
}
//////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////// Recommendation DRAWING CALLBACK //////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
function drawRecommendationList(json) {
drawRecommendationListToDiv(json, "recommenderDiv");
}
function drawRecommendationListToDiv(json, recommenderDiv) {
if ("undefined" == typeof(json.error)) { // if no error show recommendations
try {
var items = json.recommendeditems.item;
} catch(e) {
return;
}
/* when the object is already in array format, this block will not execute */
if ("undefined" == typeof(items.length)) {
items = new Array(items);
}
// display recommendations in the DIV layer 'recommendation'
if (items.length > 0) {
listString = "<ul>";
for (x = 0; x < items.length; x++) {
listString +=
"<li><a href=\"" + items[x].url + "\">"
+ items[x].description +
"</a>" +
"</li>";
}
document.getElementById(recommenderDiv).innerHTML += listString + "</ul>";
}
}
}
function drawRecommendationListWithPictures(json) {
drawRecommendationListWithPicturesToDiv(json, "recommenderDiv");
}
function drawRecommendationListWithPicturesToDiv(json, recommenderDiv) {
if ("undefined" == typeof(json.error)) { // if no error show recommendations
try {
var items = json.recommendeditems.item;
} catch(e) {
return;
}
/* when the object is already in array format, this block will not execute */
if ("undefined" == typeof(items.length)) {
items = new Array(items);
}
// display recommendations in the DIV layer 'recommendation'
if (items.length > 0) {
for (x = 0; x < items.length
; x++) {
document.getElementById(recommenderDiv).innerHTML +=
"<div style=\"width:170px;padding:5px;float:left;text-align:center;\">" +
"<a href=\"" + items[x].url + "\">" +
"<img style=\"width:150px;border:0px;\" alt=\"" + items[x].description + "\"" +
" src=\"" + items[x].imageUrl + "\"/><br/>"
+ items[x].description +
"</a>" +
"</div>";
}
}
}
}
//////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////// Java Script HELPERS ///////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////
// This function creates a new<SCRIPT>tag with
// the given adress a source.
// (=Dynamic javascript generation)
//
function easyrec_includeJavascript(jsAdr) {
var newJs = document.createElement('script');
newJs.type = 'text/javascript';
newJs.src = jsAdr;
document.getElementsByTagName('head')[0].appendChild(newJs);
}
function easyrec_extend(options, defaults) {
var target = options;
for (var propertyName in defaults) {
src = target[ propertyName ];
copy = defaults[ propertyName ];
if (src != null) {
continue;
} else if (copy !== undefined) {
target[ propertyName ] = copy;
}
}
// Return the modified object
return target;
}
//Session functions
function easyrec_createSessionId() {
var name = "easyrec_sessionVar";
var value = easyrec_generateSessionId(15);
String((new Date()).getTime()).replace(/\D/gi, '');
document.cookie = name + "=" + value + "; path=/";
return value;
}
function easyrec_generateSessionId(length) {
chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
returnValue = "";
for (x = 0; x < length; x++) {
i = Math.floor(Math.random() * 62);
returnValue += chars.charAt(i);
}
return "JS_" + returnValue;
}
function easyrec_getSessionId() {
var nameEQ = "easyrec_sessionVar=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return easyrec_createSessionId();
}