-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathisPlaying.js
169 lines (142 loc) · 4.49 KB
/
isPlaying.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
Object.defineProperty(HTMLMediaElement.prototype, 'playing', {
get: function () {
return !!(this.currentTime > 0 && !this.paused && !this.ended && this.readyState > 2);
}
})
var videourl;
var videoid; // = videourl.substr(32);
function receiver(message, sender, sendResponse){
videourl = message.toString();
videoid = videourl.substr(32);
console.log("Done! "+ videoid);
}
chrome.runtime.onMessage.addListener(receiver);
var video_status;
var category;
console.log(videourl)
var cat;
// Faz requisição para a API do YouTube e pega a categoria do vídeo.
async function fetchAPI(videoid, data) {
try {
//console.log("Parte final da URL = ",videoid);
const apiUrl = await fetch(`https://www.googleapis.com/youtube/v3/videos?id=${videoid}&key=AIzaSyABwRlveLXMYpZQ2CsZbGEqzrCZ9jnCA4s&fields=items(id,snippet(categoryId))&part=snippet,statistics`)
apiUrl.json().then(data => {cat = parseInt(data.items[0].snippet.categoryId);});
// console.log("Request realizada! categoryId = ", cat);//Resultado Randômico(Undefined ou 27), com o código atual (URL FIXA) o esperado é 27
} catch (error) {
console.log(error);
}
}
function isPaused() {
category = fetchAPI(videoid);
if (document.querySelector('video').playing) { // checa se o video tá rodando ou não
// console.log("Playing");
video_status = 0;
} else {
// console.log("Paused");
video_status = 1;
}
}
function set_week_time() {
var wut_value; //wut é week_useless_time
var wtt_value; //wtt é week_total_time
// 27;28;35; são categorias consideradas uteis
//WEEK TOTAL TIME tem que ser armazenado independente do tipo de video
//WEEK TOTAL TIME ->
chrome.storage.local.get(["wtt"], function (result) { //Primeiro tem que ler o dado que já está salvo
//console.log('WTT Armazenado: ' + parseInt(result.wtt));
wtt_value = parseInt(result.wtt);
});
if (wtt_value == undefined) {
wtt_value = 0;
}
isPaused();
if (video_status == 0) {
wtt_value = wtt_value + 1; //wtt_value conta em segundos
chrome.storage.local.set({ wtt: wtt_value }, function () {
wtt_value = wtt_value + 1;
//console.log('NEW_WTT_SEGUNDOS = ' + wtt_value);
chrome.storage.local.set({ wtt: wtt_value }, function () {
});
});
}
cat = parseInt(cat,10);
let allow;
if(cat==27||cat==28||cat==35){
allow = 1;
}else{
allow = 0;
}
if(allow!=1){
//WEEK USELESS TIME ->
chrome.storage.local.get(["wut"], function(result) { //Primeiro tem que ler o dado que já está salvo
// console.log('WUT Armazenado: ' + parseInt(result.wut));
wut_value = parseInt(result.wut);
});
if(wut_value==undefined){
wut_value = 0;
}
isPaused();
if(video_status==0){
wut_value = wut_value + 1; //wut_value conta em segundos
chrome.storage.local.set({wut: wut_value}, function() {
wut_value = wut_value + 1;
// console.log('NEW_WUT_SEGUNDOS = ' + wut_value);
chrome.storage.local.set({wut: wut_value}, function() {
});
});
}
}
}
setInterval(set_week_time, 1000);
function set_daily_time() {
var dut_value; //dut é daily_useless_time
var dtt_value; //dtt é daily_total_time
// 27;28;35; são categorias consideradas uteis
//DAILY TOTAL TIME tem que ser armazenado independente do tipo de video
//DAILY TOTAL TIME ->
chrome.storage.local.get(["dtt"], function (result) { //Primeiro tem que ler o dado que já está salvo
console.log('DTT Armazenado: ' + parseInt(result.dtt));
dtt_value = parseInt(result.dtt);
});
if (dtt_value == undefined) {
dtt_value = 0;
}
isPaused();
if (video_status == 0) {
dtt_value = dtt_value + 1; //dtt_value conta em segundos
chrome.storage.local.set({ dtt: dtt_value }, function () {
dtt_value = dtt_value + 1;
console.log('NEW_DTT_SEGUNDOS = ' + dtt_value);
chrome.storage.local.set({ dtt: dtt_value }, function () {
});
});
}
cat = parseInt(cat,10);
let allow_d;
if(cat==27||cat==28||cat==35){
allow_d = 1;
}else{
allow_d = 0;
}
if(allow_d!=1){
//DAILY USELESS TIME ->
chrome.storage.local.get(["dut"], function(result) { //Primeiro tem que ler o dado que já está salvo
console.log('DUT Armazenado: ' + parseInt(result.dut));
dut_value = parseInt(result.dut);
});
if(dut_value==undefined){
dut_value = 0;
}
isPaused();
if(video_status==0){
dut_value = dut_value + 1; //dut_value conta em segundos
chrome.storage.local.set({dut: dut_value}, function() {
dut_value = dut_value + 1;
console.log('NEW_DUT_SEGUNDOS = ' + dut_value);
chrome.storage.local.set({dut: dut_value}, function() {
});
});
}
}
}
setInterval(set_daily_time, 1000);