aboutsummaryrefslogtreecommitdiff
path: root/chrome/vkpc.js
blob: 207044418fbfc3e9738a43890a48fca00e0eb20f (plain)
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
// VKPC for Chrome

(function(vkpc_sid) {
if (!window.VKPC) {

if (!document.addEventListener) {
  window.console && console.log("[VKPC] an outdated browser detected, very strange, plz update");
  return;
}

// variables
var _debug = window.__vkpc_debug || true;
var _extid = window.__vkpc_data.extid;

(function(window, document) {
  var queue = [], done = false, _top = true, root = document.documentElement, eventsAdded = false;

  function init(e) {
    if (e.type == 'readystatechange' && document.readyState != 'complete') return;
    (e.type == 'load' ? window : document).removeEventListener(e.type, init);
    if (!done) {
      done = true;
      while (queue.length) {
        queue.shift().call(window);
      }
    }
  }
  function poll() {
    try {
      root.doScroll('left');
    } catch (e) {
      setTimeout(poll, 50);
      return;
    }
    init('poll');
  }

  window.DOMContentLoaded = function(fn) {
    if (document.readyState == 'complete' || done) {
      fn.call(window);
    } else {
      queue.push(fn);

      if (!eventsAdded) {
        if (document.createEventObject && root.doScroll) {
          try {
            _top = !window.frameElement;
          } catch (e) {}
          if (_top) poll();
        }

        document.addEventListener('DOMContentLoaded', init);
        document.addEventListener('readystatechange', init);
        window.addEventListener('load', init);
        eventsAdded = true;
      }
    }
  }
})(window, document);

function log() {
  if (!_debug) 
    return;
  var args = Array.prototype.slice.call(arguments);
  args.unshift(window.VKPC ? '[VKPC '+window.VKPC.getSID()+']' : '[VKPC]');
  try {
    window.console && console.log.apply(console, args);
  } catch (e) {}
}
function trim(string) {
  return string.replace(/(^\s+)|(\s+$)/g, "");
}
function startsWith(str, needle) {
  return str.indexOf(needle) == 0;
}
function endsWith(str, suffix) {
  return str.indexOf(suffix, str.length - suffix.length) !== -1;
}
function random(min, max) {
  return Math.floor(Math.random() * (max - min + 1)) + min;
}
function shuffle(o) {
  for (var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
  return o;
}
function getStackTrace(split) {
  split = split === undefined ? true : split;
  try {
    o.lo.lo += 0;
  } catch(e) {
    if (e.stack) {
      return split ? e.stack.split('\n') : e.stack;
    }
  }
  return null;
}
function buildQueryString(obj) {
  var list = [], i;
  for (i in obj) {
    list.push(encodeURIComponent(i) + '=' + encodeURIComponent(obj[i]));
  }
  return list.join('&');
}
function stripTags(html) {
  var div = document.createElement("div");
  div.innerHTML = html;
  return div.textContent || div.innerText || "";
}
function decodeEntities(value) {
  var textarea = document.createElement('textarea');
  textarea.innerHTML = value;
  return textarea.value;
}

function toApp(command, data) {
  chrome.runtime.sendMessage(_extid, {
    cmd: "to_app",
    data: {
      command: command,
      data: data
    }
  });
}

window.VKPC = new function() {
  var _sid = null;
  var _currentTrackId = null;
  var _lastPlaylistSummary = null;
  var _lastPlaylistId = 0;
  var _operateQueue = [];
  var _setTrackIdTimeout = null;
  var _watchGraphicsChange = false;
  var _checkPlaylistTimer = null;

  function wrapAudioMethods() {
    // var self = this;
    if (window.audioPlayer) {
      if (!audioPlayer.__operate) {
        audioPlayer.__operate = audioPlayer.operate;
        audioPlayer.operate = function(id, nextPlaylist, opts) {
          var currentId = audioPlayer.id, _status = id != currentId  ? 'play' : null;
          audioPlayer.__operate.apply(audioPlayer, arguments);
          //self.firstOperateAfterPlaylistUpdating = false;
          log('operate(), arguments:', arguments);

          if (existsInCurrentPlaylist(id)) {
            log('operate(), found in current pl, setTrackId() now');
            setTrackId(id, _status);
          } else {
            log('operate(), not found, setToOperateQueue() now');
            setToOperateQueue(id, _status);
          }
        };
      }

      // disable it
      if (false && !audioPlayer.__setGraphics) {
        audioPlayer.__setGraphics = audioPlayer.setGraphics;
        audioPlayer.setGraphics = function(act) {
          audioPlayer.__setGraphics.apply(audioPlayer, arguments);
          return;
          /*if (self.watchGraphicsChange) {
            if (browser.safari) self.sendOperateTrack(audioPlayer.id, (act == 'play' || act == 'load') ? 'play' : 'pause');
            self.watchGraphicsChange = false;
          }*/
        };
      }
    }

    log('[wrapAudioMethods] wrapped DONE');
  }

  function clear() {
    log('clear()');
    _currentTrackId = null;
    _lastPlaylistSummary = null;
    _lastPlaylistId = null;
    _sid = null;
    _watchGraphicsChange = false;
  }

  function getBrowser() {
    return browser.safari ? 'safari' : 'chrome';
  }

  function executeCommand(command, plid) {
    if (command == 'afterInjection') {
      log('executeCommand: afterInjection, plid='+plid);
      var pl = padAudioPlaylist();
      if (window.audioPlayer && pl) {
        updatePlaylist(getPlaylist(pl));
      } else {
        clearPlaylist();
      }
      return;
    }

    log('executeCommand:', command, plid);
    // var self = this;

    if (!window.audioPlayer || !padAudioPlaylist()) {
      log('[executeCommand] audioplayer or playlist not found');
      stManager.add(['audioplayer.js'], function() {
        executeAfterPadLoading(function() {
          log('[executeCommand] after execafterpadloading, window.audioPlayer:', window.audioPlayer);
          wrapAudioMethods();

          var plist = padAudioPlaylist();
          if (plist) {
            log('[executeCommand] after exec...: send updatePlaylist() with plist');
            updatePlaylist(getPlaylist(plist));
          }

          if (command == 'playpause' || command == 'next' || command == 'prev') {
            log('[executeCommand] after exec...: simple command');
            var id = getPlayFirstId();
            if (id) {
              log('[executeCommand] after exec...: found id='+id+', playAudioNew() now');
              playAudioNew(id);
            } else if (plist && plist.start) {
              log('[executeCommand] after exec...: found plist.start, playAudioNew() now');
              playAudioNew(plist.start);
            }
          } else if (startsWith(command, 'operateTrack:')) { // TODO this is new fix
            var id = parseInt(command.replace('operateTrack:'));
            log('[executeCommand] after exec...: got operateTrack, id='+id);
            if (!plist[id]) {
              log('[executeCommand] after exec...: after got operateTrack: plist[id] not found, send new pl to app');
              //self.clearPlaylist();
              updatePlaylist(getPlaylist(plist));
              if (plist.start) {
                log('[executeCommand] after exec...: got operateTrack, pl not found... ... play plist.start now');
                playAudioNew(plist.start);
              }
            } else {
              log('[executeCommand] after exec...: got operateTrack, it is found, playAudioNew() now');
              playAudioNew(id);
            }
          }
        });
      });
      return;
    }

    function evaluateCommand(command) {
      switch (command) {
        case 'next':
        case 'prev':
        case 'playpause':
          if (audioPlayer.id) {
            if (command == 'next')  next();
            else if (command == 'prev') prev();
            else if (command == 'playpause') playPause();
          } else {
            var id = getPlayFirstId();
            if (id) playId(id);
          }
          break;

        default:
          if (startsWith(command, 'operateTrack:')) {
            log('[executeCommand] got operateTrack;');
            var id = command.replace('operateTrack:', ''), pl = padAudioPlaylist();
            if (pl[id] !== undefined) {
              log('[executeCommand] got operateTrack; track is found, playAudioNew() now');
              //playAudioNew(id);
              //audioPlayer.operate(id);
              playId(id);
            } else {
              log('[executeCommand] got operateTrack; track not found, updatePlaylist with pl:', pl);
              updatePlaylist(getPlaylist(pl));
              var id = getPlayFirstId();
              if (id) {
                log('[executeCommand] got operateTrack; play id from getPlayFirstId() now');
                playId(id);
              }
            }
          }
          break;
      }
    }

    if (plid != _lastPlaylistId) {
      log('[executeCommand] plid does not match');
      var pl = padAudioPlaylist();
      if (pl) {
        updatePlaylist(getPlaylist(pl), true);
        log('[executeCommand] plid does not match, sent updatePlaylist() with pl:', pl);

        if (plid == 0)  {
          evaluateCommand(command);
        } else {
          if (['next', 'prev', 'playpause'].indexOf(command) != -1) {
            var id = audioPlayer.id || pl.start || getPlayFirstId();
            if (id) {
              playId(id);
            }
          }
        }
      }     
    } else {
      evaluateCommand(command);
    }
  }

  function setTrackId(id, _status) {
    _status = _status || (audioPlayer.player.paused() ? 'pause' : 'play');
    clearTimeout(_setTrackIdTimeout);

    var check = function() {
      if (audioPlayer.player) {
        sendOperateTrack(id, _status);
      } else {
        _setTrackIdTimeout = setTimeout(check, 200);
      }
    };
    check();
  }

  function sendOperateTrack(id, _status) {
    log('[sendOperateTrack]', id, _status);
    toApp('operateTrack', {
      'id': id,
      'status': _status,
      'playlistId': _lastPlaylistId
    });
  }

  function setToOperateQueue(id, _status) {
    var q = _operateQueue;
    for (var i = 0; i < q.length; i++) {
      var track = q[i];
      if (track[0] == id) {
        track[1] = _status;
        return;
      }
    }
    q.push([id, _status]);
  }

  function existsInCurrentPlaylist(id) {
    return _lastPlaylistSummary && _lastPlaylistSummary.indexOf(id) != -1;
  }

  function processOperateQueue(pl) {
    log('[processOperateQueue]');
    var q = _operateQueue;
    while (q.length) {
      var track = q.shift();
      log('[processOperateQueue] track:', track[0]);
      if (pl[track[0]] !== undefined) {
        log('[processOperateQueue] track', track[0], 'found, send it now');
        sendOperateTrack(track[0], track[1]);
      }
    }
  }

  function clearOperateQueue() {
    _operateQueue = [];
  }

  function printPlaylist() {
    var pl = padAudioPlaylist();
    if (pl) {
      for (var k in pl) {
        log(pl[k][5] + ' - ' + pl[k][6]);
      }
    }
  }

  function getPlaylist(_pl) {
    _pl = _pl || padAudioPlaylist();
    var pl = null;
    if (_pl) {
      var start = _pl.start, pl = [];
      var nextId = start;
      do {
        if (_pl[nextId]) {
          _pl[nextId]._vkpcId = nextId;
          pl.push(_pl[nextId]);
          nextId = _pl[nextId]._next;
        }
      } while (nextId != '' && nextId !== undefined && nextId != start);
    }
    return pl;
  }

  // force=true is used when plids not match
  function updatePlaylist(pl, force) {
    var tracks = [], summary = [], title;
    if (pl) {
      for (var k = 0; k < pl.length; k++) {
        tracks.push({
          id: pl[k]._vkpcId,
          artist: decodeEntities(pl[k][5]),
          title: decodeEntities(pl[k][6]),
          duration: pl[k][4]
        });
        summary.push(pl[k]._vkpcId);
      }
      
      summary = summary.join(';');

      log("updatePlaylist: _lastPlaylistSummary:", _lastPlaylistSummary, 'summary:', summary);
      if (force || _lastPlaylistSummary === null || _lastPlaylistSummary !== summary) {
        log('[updatePlaylist] last summary not matched;', _lastPlaylistSummary, summary);
        var activeId = '', activeStatus = '';
        var vkpl = padAudioPlaylist();
        var plTitle = (window.audioPlaylist && window.audioPlaylist.htitle) || vkpl.htitle;
        if (audioPlayer.id && vkpl[audioPlayer.id] !== undefined) {
          activeId = audioPlayer.id;
          _watchGraphicsChange = true;

          activeStatus = getPlayerStatus(true) ? 'play' : 'pause';
          _watchGraphicsChange = true;
        }

        _lastPlaylistSummary = summary;
        _lastPlaylistId = random(100000, 1000000);

        log("[updatePlaylist] send pl with id="+_lastPlaylistId+', activeId='+activeId+', activeStatus='+activeStatus+' to app');
        try {
          toApp('updatePlaylist', {
            tracks: tracks,
            title: parsePlaylistTitle(plTitle) || "",
            id: _lastPlaylistId,
            active: { 'id': activeId, 'status': activeStatus },
            browser: getBrowser()
          });
        } catch(e) {
          log('[updatePlaylist] exception:', e, e.stack);
        }

        processOperateQueue(pl);
      }
    }
  }

  function clearPlaylist(no_send, called_from) {
    called_from = called_from || "";
    log('[clearPlaylist] (called from: '+called_from+')');

    _lastPlaylistSummary = null;
    _lastPlaylistId = 0;
    if (!no_send) {
      toApp('clearPlaylist', {});
    }
  }

  function checkPlaylist() {
    var pl = padAudioPlaylist();
    if (!pl) {
      clearPlaylist(true, 'checkPlaylist');
    }
  }

  function parsePlaylistTitle(str) {
    str = str || "";
    str = trim(str);
    if (str == '') return str;

    var starts = {
      0: 'Сейчас играет — ', // ru
      100: 'Нынче играетъ— ', // re
      3: 'Now playing — ', // en
      1: 'Зараз звучить — ', // ua
      777: 'Проигрывается пластинка «' // su
    };
    var ends = {
      0: ' \\| [0-9]+ аудиоза[^\\s]+$',
      3: ' \\| [0-9]+ audio [^\\s]+$',
      1: ' \\| [0-9]+ аудіоза[^\\s]+$',
      100: ' \\| [0-9]+ композ[^\\s]+$',
      777: ' \\| [0-9]+ грамза[^\\s]+»$'
    };

    if (window.vk && vk.lang !== undefined) {
      if (starts[vk.lang] !== undefined && startsWith(str, starts[vk.lang])) {
        str = str.substring(starts[vk.lang].length);
      }

      if (ends[vk.lang] !== undefined) {
        var regex = new RegExp(ends[vk.lang], 'i');
        if (str.match(regex)) str = str.replace(regex, '');
      }
    }

    return stripTags(trim(str));
  }

  function afterInjection() {
    log("after injection");
    var pl = getPlaylist();
    if (pl) updatePlaylist(pl);
  }

  function next() {
    audioPlayer.nextTrack(true, !window.audioPlaylist)
    /*if (audioPlayer.controls && audioPlayer.controls.pd && audioPlayer.controls.pd.next) {
      audioPlayer.controls.pd.next.click();
    } else {
      audioPlayer.nextTrack(true, !window.audioPlaylist)
    }*/
  }

  function prev() {
    audioPlayer.prevTrack(true, !window.audioPlaylist);
    /*if (audioPlayer.controls && audioPlayer.controls.pd && audioPlayer.controls.pd.prev) {
      audioPlayer.controls.pd.prev.click(); 
    } else {
      audioPlayer.prevTrack(true, !window.audioPlaylist);
    }*/
  }

  function getPlayFirstId() {
    var id = currentAudioId() || ls.get('audio_id') || (window.audioPlaylist && audioPlaylist.start);
    return id || null;
  }
 
  function playFirst() {
    var id = getPlayFirstId();
    
    if (id) playId(id);
    else {
      var plist = padAudioPlaylist();
      if (plist && plist.start) {
        playId(plist.start);
      } else {
        executeAfterPadLoading(function() {
          var plist = padAudioPlaylist();
          if (plist && plist.start) {
            playId(plist.start);
          }
        });
      }
    }
  }

  function executeAfterPadLoading(f) {
    Pads.show('mus');
    window.onPlaylistLoaded = function() {
      if (f) {
        try {
          f();
        } catch(e) {}
      }
      setTimeout(function() {
        Pads.show('mus');
      }, 10);
    }
  }

  function getPlayerStatus(justStarted) {
    if (!audioPlayer.player) return false;
    try {
      var pl = audioPlayer.player;
      if (pl && pl.music && pl.music.buffered && !pl.music.buffered.length && justStarted) return true;
    } catch (e) {
      return true;
    }

    return audioPlayer.player && !audioPlayer.player.paused();
  }

  function pauseForSafari() {
    if (window.audioPlayer && audioPlayer.player) audioPlayer.pauseTrack();
  }

  function playPause() {
    if (window.audioPlayer && audioPlayer.player) {
      if (audioPlayer.player.paused()) {
        audioPlayer.playTrack(); 
      } else {
        audioPlayer.pauseTrack();
      }
    }
  }

  function operateTrack(id) {
    if (id == audioPlayer.id) {
      playPause();
    } else {
      audioPlayer.operate(id);
    }
  }

  function playId(id) {
    if (window.audioPlayer) audioPlayer.operate(id);
    else playAudioNew(id);
  }

  function getLastInstanceId() {
    var id = null, pp = ls.get('pad_playlist');
    if (pp && pp.source) id = pp.source;
    return id;
  }

  this.executeCommand = executeCommand;

  this.getParams = function() {
    if (window.__vkpc_data && window.__vkpc_data.command != 'afterInjection') {
      checkPlaylist();
    }
    var havePlayer = window.audioPlayer !== undefined;
    var havePlaylist = havePlayer && (window.padAudioPlaylist && !!padAudioPlaylist());

    return {
      havePlayer: havePlayer, 
      havePlaylist: havePlaylist,
      isPlaying: window.audioPlayer && window.audioPlayer.player && !window.audioPlayer.player.paused(),
      tabId: window.curNotifier && curNotifier.instance_id,
      trackId: window.audioPlayer && audioPlayer.id,
      playlistId: havePlaylist ? _lastPlaylistId : 0,
      lsSourceId: getLastInstanceId()
    };
  };

  this.init = function(sid) {
    if (_checkPlaylistTimer === null) {
      _checkPlaylistTimer = setInterval(function() {
        if ((_lastPlaylistId || _lastPlaylistSummary) && !padAudioPlaylist()) {
          clearPlaylist(true, 'timer'); // TODO func
        }
      }, 1000);
    }

    if (!window.__wrappedByVKPC && window.audioPlayer && window.ls && window.stManager) {
      if (!stManager.__done) {
        stManager.__done = stManager.done;
        stManager.done = function(fn) {
          if (fn == 'audioplayer.js') {
            wrapAudioMethods(); // TODO func
          }
          stManager.__done.apply(stManager, arguments);
        };
      }

      wrapAudioMethods();

      if (!ls.__set) {
        ls.__set = ls.set;
        ls.set = function(k, v) {
          ls.__set.apply(ls, arguments);
          if (k == 'pad_playlist') {
            log('pad_playlist updated:', v);
            updatePlaylist(getPlaylist(v)); // TODO func
          }
        };
      }
      if (!ls.__remove) {
        ls.__remove = ls.remove;
        ls.remove = function(k, v) {
          ls.__remove.apply(ls, arguments);
          if (k == 'pad_playlist') {
            log('pad_playlist removed from ls');
            //self.clearPlaylist(true, 'ls.remove');
            // self.clearPlaylist();
          }
        };
      }

      window.__wrappedByVKPC = true;
    }

    if (sid === _sid) {
      return;
    }
    if (_sid !== null) {
      clear(); // TODO
    }
    _sid = sid;

    log('(re)inited OK');
  };

  this.getSID = function() {
    return _sid;
  };

  this.getLastPlaylistID = function() {
    return _lastPlaylistId;
  };

  this.getLastInstanceId = getLastInstanceId;
  this.clearPlaylist = clearPlaylist;
}; // window.VKPC = ...

} // if (!window.VKPC) ...

if (!window.DOMContentLoaded) {
  window.console && console.log && console.log("[VKPC] !window.DOMContentLoaded, exising");
  return;
}

window.DOMContentLoaded(function() {
  VKPC.init(vkpc_sid);
});

// afterInjection

chrome.runtime.sendMessage(window.__vkpc_data.extid, {
  cmd: "injection_result",
  id: parseInt(window.__vkpc_data.injid, 10),
  data: VKPC.getParams()
});

})(window.__vkpc_data.sid);

delete window.__vkpc_data;