-
Notifications
You must be signed in to change notification settings - Fork 9
/
flickrdupfinder.js
364 lines (286 loc) · 11.1 KB
/
flickrdupfinder.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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
Function.prototype.args = function (arg) {
var func = this;
return function () {
var newargs = [arg];
for (var i = 0; i < arguments.length; i++)
newargs.push(arguments[i]);
return func.apply(this, newargs);
};
};
// ================================================================
// FDF namespace setup.
//
// ================================================================
var FDF = {};
// ================================================================
// FDF.boot
// handles start up procedure.
// ================================================================
FDF.boot = function() {
// click handlers
$("#loginbtn").click(FDF.on_click_login);
$("#findbtn").click(FDF.on_click_find);
// hide dialogs
$("#dlg_bg").hide();
$(".dlg").hide();
// bind all resize events
$(window).bind("resize", FDF.on_resize);
$(window).bind("scroll", FDF.on_resize);
// issue status request
$.getJSON("status.json", {}, success : FDF.on_json_status);
}
// ================================================================
// FDF.on_click_login
// user clicked on "login" button.
// ================================================================
FDF.on_click_login = function() {
// show wait dialog
FDF.dialog("dlg_login", 300, 100);
// redirect to flickr
window.location="http://flickr.com/services/auth/?api_key=9ee2032372b12730ea8b12e7d839ed5a&perms=write&api_sig=d3c9fbee2e20ed9da756491e095c58f3";
}
// ================================================================
// FDF.on_resize
// handles a resize event, either window size has changed,
// or user has scrolled the window
// ================================================================
FDF.on_resize = function() {
// center all dialogs
var screen_x = $(window).width();
var screen_y = $(window).height();
var scroll_x = $(window).scrollLeft();
var scroll_y = $(window).scrollTop();
$("#dlg_bg").css("left", scroll_x);
$("#dlg_bg").css("top", scroll_y);
$("#dlg_bg").css("width", screen_x);
$("#dlg_bg").css("height", screen_y);
$(".dlg").each(function(i,elt) {
var elt_x = $(elt).width();
var elt_y = $(elt).height();
$(elt).css("left", scroll_x + (screen_x - elt_x) / 2);
$(elt).css("top", scroll_y + (screen_y - elt_y) / 2);
});
}
// ================================================================
// FDF.dialog
// show a dialog box
// ================================================================
FDF.dialog = function(id, size_x, size_y) {
$("#dlg_bg").show();
$("#dlg_bg").css("opacity", 0.5);
$("#" + id).show();
$("#" + id).css("width", size_x);
$("#" + id).css("height", size_y);
FDF.on_resize();
}
// ================================================================
// FDF.dialog_hide
// hide all visible dialogs
// ================================================================
FDF.dialog_hide = function() {
$(".dlg").fadeOut(100);
$("#dlg_bg").fadeOut(100);
}
// ================================================================
// FDF.on_json_status
// handle a status response from server
// ================================================================
FDF.on_json_status = function(data) {
if (data.status == "auth") {
// user is authenticated, show the next page
$("#name").html(data.username);
FDF.show_page("find");
} else {
// user is not authenticated, show the login page
FDF.show_page("login");
}
}
// ================================================================
// FDF.show_page
// show the given page
// ================================================================
FDF.show_page = function(name) {
$(".page").each(function(i,e) {
if ("page_" + name == $(e).attr("id")) {
$(e).fadeIn(100);
} else {
$(e).fadeOut(100);
}
});
$(".step").each(function(i,e) {
if ("step_" + name == $(e).attr("id")) {
$(e).css("color", "#000000");
} else {
$(e).css("color", "#808080");
}
});
}
// ================================================================
// FDF.on_click_find
// user has clicked the "find duplicates" button
// ================================================================
FDF.on_click_find = function() {
// show the "processing" dialog
FDF.dialog("dlg_processing", 300, 200);
// initialize results
FDF.map = {};
FDF.dup = {};
// start fetching data
FDF.fetch(1);
}
// ================================================================
// FDF.fetch
// fetches on page of photo list
// ================================================================
FDF.fetch = function(page) {
$.getJSON("list.json", {"p":page}, FDF.on_json_list);
}
// ================================================================
// FDF.on_json_list
// handles a page result from server
// ================================================================
FDF.on_json_list = function(data) {
var page = data.photos.page;
var pages = data.photos.pages;
// update UI
$("#page").html(page);
$("#pages").html(pages);
var list = data.photos.photo;
// fetch next page
if (page < pages) {
FDF.fetch(page + 1);
}
// handles every photo of current page
var photos = data.photos.photo;
for (var i = 0; i < photos.length; i++) {
FDF.handle(photos[i]);
}
// if last page, start analysis
if (page == pages) {
FDF.analyze();
}
}
// ================================================================
// FDF.analyze
// analyze the pages results
// ================================================================
FDF.analyze = function() {
FDF.dialog_hide();
FDF.show_page("remove");
FDF.elements = []; // array of duplicate photo element
FDF.status = {}; // associative array : id::string => duplicate::boolean
for (k in FDF.map) {
if (FDF.map[k].length != 1) {
FDF.dup[k] = FDF.map[k];
}
}
var count = 0;
for (k in FDF.dup) {
count++;
var wrapper = $("<div class=\"wrapper\"></div>");
$("#dup").append(wrapper);
for (var i = 0; i < FDF.dup[k].length; i++) {
var elt = FDF.map[k][i];
var id = elt.id;
var box = $("<div class=\"dupbox\" id=\"p_" + id + "\"> </div>");
$("#dup").append(box);
var src = "http://farm" + elt.farm + ".static.flickr.com/" + elt.server + "/" + elt.id + "_" + elt.secret + "_s.jpg";
var fsrc = "http://www.flickr.com/photo.gne?id=" + elt.id;
var image = $("<img src=\"" + src + "\" alt=\"\" class=\"dup_img\"/>");
var title = $("<span class=\"dup_title\"> <b>title :</b> " + elt.title + "</span>");
var ident = $("<span class=\"dup_id\"> <b>identifier :</b> <a href=\"http://flickr.com/photo.gne?id=" + elt.id + "\" target=\"_blank\">"+ elt.id + "</a></span>");
var sets = $("<span class=\"dup_sets\"> <b>sets : </b> <img src=\"images/load_2.gif\" alt=\"\" /></span>");
var status = $("<div class=\"dup_status\" id=\"status_" + elt.id + "\"><div>Duplicate tag :</div><div class=\"switch_out\"><div class=\"switch_in\"></div></div>");
$(box).append(image);
$(box).append(title);
$(box).append(ident);
$(box).append(sets);
$(box).append(status);
$(wrapper).append(box);
FDF.elements.push(elt);
FDF.status[id] = false;
$(status).find(".switch_out").click(FDF.on_click_status.args(id));
}
}
$("#dupcount").html("Found " + count + " duplicates !. Below is the list of duplicate candidates. You can now tag them with the 'duplicate' tag. Then <a href=\"http://www.flickr.com/photos/me/tags/duplicate\">click here</a> to go to Flickr and delete the tagged photos.");
FDF.element_info(0);
FDF.fetch_status();
}
// ================================================================
// FDF.element_info
// fetch photo info for the n-th found element
// ================================================================
FDF.element_info = function(num) {
FDF.element_num = num;
$.getJSON("info.json", {id:FDF.elements[num].id} ,FDF.on_json_info);
}
// ================================================================
// FDF.on_json_info
// handles element info
// ================================================================
FDF.on_json_info = function(data) {
var id = data.id;
var sets = data["set"];
if (sets) {
var html_sets = "<b>sets :</b> ";
for (var i = 0; i < sets.length; i++) {
html_sets = html_sets + "<a href=\"http://www.flickr.com/photos/me/sets/" + sets[i].id + "/\">" + sets[i].title + "</a> ";
}
$("#p_" + id).find(".dup_sets").html(html_sets);
} else {
$("#p_" + id).find(".dup_sets").html("sets : none");
}
if (FDF.element_num + 1 < FDF.elements.length)
FDF.element_info(FDF.element_num + 1);
}
// ================================================================
// FDF.set_status
// update the given photo's duplicate status
// ================================================================
FDF.set_status = function(id, status) {
if (status == "dup") {
$("#status_" + id).show();
$("#status_" + id).css("background-position-x", "0px 0px");
}
if (status == "not") {
$("#status_" + id).show();
$("#status_" + id).css("background-position-x", "-44px 0px");
}
}
// ================================================================
// FDF.handle
// handle a new photo
// ================================================================
FDF.handle = function(element) {
var title = element["title"];
var date = element["datetaken"];
var key = title + "##" + date;
if (!FDF.map[key])
FDF.map[key]= [];
FDF.map[key].push(element);
}
FDF.fetch_status = function() {
$.getJSON("duplicate.json", FDF.on_json_duplicate);
}
FDF.on_json_duplicate = function(data) {
for (var i = 0; i < data.length; i++) {
FDF.status[data[i]] = true;
}
FDF.update_status();
}
FDF.update_status = function() {
for(var id in FDF.status) {
FDF.set_status(id, FDF.status[id]);
}
}
FDF.set_status = function(id, b) {
$("#status_" + id).show();
$("#status_" + id + " .switch_in").animate({"left" : b ? "0px" : "-48px"}, 100);
}
FDF.on_click_status = function(id) {
FDF.status[id] = !FDF.status[id];
FDF.set_status(id, FDF.status[id]);
var url = FDF.status[id] ? "tag.json?id=" + id : "untag.json?id=" + id;
$.getJSON(url);
}
$(document).ready(FDF.boot);