-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.js
259 lines (202 loc) · 6.36 KB
/
tasks.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
/*
Copyright 2021. Eduardo Programador
www.eduardoprogramador.com
All Rights Reserved
This file contains common routines
for Javascript jobs.
1) Include it on your HTML File
Eg.: <stript src="js/tasks.js"></script>
2) Initiate the class
Eg.: let tasks = new Tasks();
3)Invoke the methods
Eg.: tasks.set("http://example.com");
*/
class Tasks {
/*
The constructor does not require any arguments
*/
constructor() {
this.latitude = 0;
this.longitude = 0;
this.altitude = 0;
}
/*
Change the current page without open a new tab
*/
set(url) {
location.replace(url);
}
/*
Go to some url with opening a new tab
*/
go(url) {
window.open(url);
}
/*
Gets the current date
in format: day/month/year hour:minutes:secods
*/
getTime() {
let date = new Date();
let hour = date.getHours();
let min = date.getMinutes();
let day = date.getDate();
let month = date.getMonth() + 1;
let year = date.getFullYear();
return day + "/" + month + "/" + year + " " + hour + ":" + min + ":" + date.getSeconds();
}
/*
Makes an HttpPost Request
Eg.: tasks.httpPost("http://example.com","param1=hello¶m2=world");
*/
httpPost(url,params, callback) {
let xhttp = new XMLHttpRequest();
xhttp.open("POST",url);
xhttp.onload = callback;
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.send(params);
}
/*
Makes an HttpGet Request
Eg.: tasks.get(http://example.com);
*/
httpGet(url, callback) {
let xhttp = new XMLHttpRequest();
xhttp.open("GET",url);
xhttp.onload = callback;
xhttp.send();
}
/*
sets new cookie
*/
setCookie(cName) {
let chars = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','0','1','2','3','4','5','6','7','8','9'];
let nums = ['0','1','2','3','4','5','6','7','8','9'];
let len = chars.length;
var cValue = "", cookie = "";
for(var i = 0; i < 15; i++) {
let index = Math.floor(Math.random() * (len - 1));
cValue += chars[index];
}
for(var i = 0; i < 10; i++) {
let nIndex = nums.length;
let index = Math.floor(Math.random() * (nIndex-1));
cValue += nums[index];
}
let d = new Date();
d.setTime(d.getTime() + 365 * 24 * 60 * 60 * 1000);
cookie = cName + "=" + cValue + ";expires=" + d.toUTCString() + ";path=/";
document.cookie = cookie;
return cookie;
}
/*
gets the cookie from Common Name
*/
getCookie(cName) {
let name = cName;
let decodedCookie = decodeURIComponent(document.cookie);
let ca = decodedCookie.split(';');
for(let i = 0; i <ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
};
/*
Returns true if the protocol is Http.
False, otherwise
*/
isHttp() {
if(location.protocol === 'http:') {
return true;
} else {
return false;
}
}
/*
Returns true if the protocol is Https.
False, otherwise
*/
isHttps() {
if(location.protocol === 'https:') {
return true;
} else {
return false;
}
}
/*
display an alert dialog
*/
display(msg) {
alert(msg);
}
/*
Generates an radom number from a range.
Eg.: tasks.getRandom(1,10) -
A number from 1 to 10.
*/
getRandom(down,up){
return Math.floor((Math.random() * up) + down);
}
/*
Initiates the location services
for calculating the latitude, etc.
Eg.: tasks.pos();
Returns true if the call succeeds,
false otherwise
*/
pos() {
if(navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function (coords) {
this.latitude = coords.coords.latitude;
this.longitude = coords.coords.longitude;
this.altitude = coords.coords.altitude;
return true;
}, function () {
return false;
});
} else {
return false;
}
}
/*
gets the current latitude,
after the call to pos method
*/
getLatitude() {
return this.latitude;
}
/*
gets the current longitude,
after the call to pos method
*/
getLongitude() {
return this.longitude;
}
/*
gets the current altitude,
after the call to pos method
*/
getAltitude() {
return this.altitude;
}
hexToRgb(hex) {
let first = hex[1] + hex[2];
let second = hex[3] + hex[4];
let third = hex[5] + hex[6];
let res = [];
res.push(parseInt(first,16));
res.push(parseInt(second,16));
res.push(parseInt(third,16));
return res;
}
convert(nSrc, bSrc,bOut) {
return parseInt(nSrc,bSrc).toString(bOut);
}
}