-
Notifications
You must be signed in to change notification settings - Fork 0
/
album.js
430 lines (370 loc) · 16.6 KB
/
album.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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
var modelBG = document.getElementById("model-background");
var model = document.getElementById("model");
var modelSlider = document.getElementById("model-slider");
// close Full Screen slider
function cancelFullScreen() {
if (document.cancelFullScreen) {
document.cancelFullScreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitCancelFullScreen) {
document.webkitCancelFullScreen();
} else if (document.msCancelFullScreen) {
document.msCancelFullScreen();
}
var varTimeLine = document.getElementById("TimeLine");
varTimeLine.style.display = "none";
}
// End - close Full Screen slider
// ajax call for get slider's images
function fullScreen(element) {
Model();
var x = element.parentElement;
var node = "";
for (var i = 0; i < x.childNodes.length; i++) {
if (x.childNodes[i].className == "albumID") {
node = x.childNodes[i];
}
}
var y = document.getElementById("slideshow");
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4){
if(this.status == 200) {
if(this.responseText.search('true') != -1) {
var result = xmlhttp.responseText;
var resultArray = result.split("~");
if(resultArray[0] === 'true' || resultArray[0].search('true') != -1) {
modelBG.style.display = "none";
model.style.display = "none";
// alert(resultArray[1]);
y.innerHTML = resultArray[1];
modelBG.style.display = "none";
model.style.display = "none";
ModelSlier();
var slider = new airSlider({
autoPlay: true,
width: '100%',
height: '100%'
});
// varTimeLine.style.display = "block";
}
else {
modelBG.style.display = "none";
model.style.display = "none";
alert("Sorry, Couldn't fetch Images! Please try again after sometime.");
}
}
else {
modelBG.style.display = "none";
model.style.display = "none";
alert("Sorry, Couldn't fetch Images! Please try again after sometime.");
}
}else{
modelBG.style.display = "none";
model.style.display = "none";
alert("Sorry, Couldn't fetch Images! Please try again after sometime.");
}
}
}
xmlhttp.open("GET", "get-images.php?slidealbumid="+node.value.trim(), true);
xmlhttp.send();
}
// End - ajax call for get slider's images
// ajax call for Download zip of Single Album images
function DownloadSingle(element){
ModelDownload();
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4){
if(this.status == 200) {
if(this.responseText.search('true') != -1) {
var result = xmlhttp.responseText;
var resultArray = result.split("~");
if(resultArray[0] === 'true' || resultArray[0].search('true') != -1) {
modelBG.style.display = "none";
model.style.display = "none";
window.open(resultArray[1], '_blank');
}
else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
} else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
}
xmlhttp.open("GET", "get-images.php?downloadsingle="+element, true);
xmlhttp.send();
}
// End - ajax call for Download zip of Single Album images
// ajax call for Download zip of All Album images
function DownloadAll(){
ModelDownload();
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4){
if(this.status == 200) {
if(this.responseText.search('true') != -1) {
var result = xmlhttp.responseText;
var resultArray = result.split("~");
if(resultArray[0] === 'true' || resultArray[0].search('true') != -1) {
// for (i = 1; i < resultArray.length; i++) {
window.open(resultArray[1], '_blank');
// }
modelBG.style.display = "none";
model.style.display = "none";
}
else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
} else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
}
xmlhttp.open("GET", "get-images.php?downloadall=all", true);
xmlhttp.send();
}
// End - ajax call for Download zip of All Album images
// ajax call for Download zip of Selected Album images
function DownloadSelected(){
ModelDownload();
var albumID="";
var check = document.getElementById('row').querySelectorAll('input[type=checkbox]:checked');
for(var i = 0; i < check.length; i++){
albumID+=check[i].value+"/";
}
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4){
if(this.status == 200) {
if(this.responseText.search('true') != -1) {
var result = xmlhttp.responseText;
var resultArray = result.split("~");
if(resultArray[0] === 'true' || resultArray[0].search('true') != -1) {
// for (i = 1; i < resultArray.length; i++) {
window.open(resultArray[1], '_blank');
// }
modelBG.style.display = "none";
model.style.display = "none";
}
else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
} else {
alert("Couldn't download albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
}
xmlhttp.open("GET", "get-images.php?downloadselected="+albumID, true);
xmlhttp.send();
}
// End - ajax call for Download zip of Selected Album images
// ajax call for Upload Single Album images on Google Drive
function UploadToDriveSingle(albumid, name) {
ModelUpload();
if(getCookie('credentials') == "") {
GoogleModel();
} else {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if(this.status == 200) {
if(xmlhttp.responseText === 'true' || xmlhttp.responseText.search('true') != -1) {
modelBG.style.display = "none";
model.style.display = "none";
alert("Album Successfully Uploaded.");
}
else {
alert("Couldn't upload albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
else {
alert("Couldn't upload albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
}
xmlhttp.open("GET", "upload-album.php?uploadAlbum=" + albumid + "&albumName=" + name, true);
xmlhttp.send(null);
}
}
// End - ajax call for Upload Single Album images on Google Drive
// ajax call for Upload All Album images on Google Drive
function UploadAll(){
ModelUpload();
var albumID="";
var check = document.getElementById('row').querySelectorAll('input[type=checkbox]');
for(var i = 0; i < check.length; i++){
albumID+=check[i].value+"/";
}
if(getCookie('credentials') == "") {
GoogleModel();
} else {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if(this.status == 200) {
if(xmlhttp.responseText === 'true' || xmlhttp.responseText.search('true') != -1) {
modelBG.style.display = "none";
model.style.display = "none";
alert("Albums Successfully Uploaded.");
}
else {
alert("Couldn't upload albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
else {
alert("Couldn't upload albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
}
xmlhttp.open("GET", "upload-album.php?uploadAlbums=" + albumID, true);
xmlhttp.send();
}
}
// End - ajax call for Upload All Album images on Google Drive
// ajax call for Upload Selected Album images on Google Drive
function UploadSelected(){
ModelUpload();
var albumID="";
var check = document.getElementById('row').querySelectorAll('input[type=checkbox]:checked');
for(var i = 0; i < check.length; i++){
albumID+=check[i].value+"/";
}
if(getCookie('credentials') == "") {
GoogleModel();
} else {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4) {
if(this.status == 200) {
if(xmlhttp.responseText === 'true' || xmlhttp.responseText.search('true') != -1) {
modelBG.style.display = "none";
model.style.display = "none";
alert("Albums Successfully Uploaded.");
}
else {
alert("Couldn't upload albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
} else {
alert("Couldn't upload albums! Please try again after sometime.");
modelBG.style.display = "none";
model.style.display = "none";
}
}
}
xmlhttp.open("GET", "upload-album.php?uploadAlbums=" + albumID, true);
xmlhttp.send();
}
}
// End - ajax call for Upload Selected Album images on Google Drive
// get Cookie value of given argument using javascript
function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i <ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
// End - get Cookie value of given argument using javascript
// Open pop-up for google Login
function GoogleModel(){
modelBG.style.display = "block";
model.style.display = "block";
document.getElementById("modelspinner").style.display = "none";
document.getElementById("modelDes").innerHTML = "Google Login";
document.getElementById("modelMsg").style.display = "none";
document.getElementById("modelGoogleLogin").style.display = "block";
}
// End - Open pop-up for google Login
// Open pop-up for display Download process
function ModelDownload(){
modelBG.style.display = "block";
model.style.display = "block";
document.getElementById("modelspinner").style.display = "block";
document.getElementById("modelDes").innerHTML = "Please wait while downloading Albums";
document.getElementById("modelMsg").style.display = "block";
document.getElementById("modelGoogleLogin").style.display = "none";
}
// End - Open pop-up for display Download process
// Open pop-up for display Upload process
function ModelUpload(){
modelBG.style.display = "block";
model.style.display = "block";
document.getElementById("modelspinner").style.display = "block";
document.getElementById("modelDes").innerHTML = "Please wait while uploading Albums";
document.getElementById("modelMsg").style.display = "block";
document.getElementById("modelGoogleLogin").style.display = "none";
}
// End - Open pop-up for display Upload process
// ----
function ModelSlier(){
modelBG.style.display = "block";
modelSlider.style.display = "block";
}
// ----
// Open pop-up for display fa slider
function Model(){
modelBG.style.display = "block";
model.style.display = "block";
document.getElementById("modelspinner").style.display = "block";
document.getElementById("modelDes").innerHTML = "Please wait while feaching Albums";
document.getElementById("modelMsg").style.display = "block";
document.getElementById("modelGoogleLogin").style.display = "none";
}
// End - Open pop-up for display slider process
// close pop-up
function CloseSilder(){
modelBG.style.display = "none";
modelSlider.style.display = "none";
}
// End - close pop-up