forked from bernorieder/YouTube-Data-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.php
More file actions
executable file
·151 lines (111 loc) · 6.4 KB
/
common.php
File metadata and controls
executable file
·151 lines (111 loc) · 6.4 KB
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
<?php
date_default_timezone_set('UTC');
ini_set( 'default_charset', 'UTF-8');
error_reporting(E_ALL ^ E_NOTICE);
// punctuation and stopword collections
$punctuation = array("\s","\.",",","!","\?",":",";","\/","\\","#","@","&","\^","\$","\|","`","~","=","\+","\*","\"","'","\(","\)","\]","\[","\{","\}","<",">","�");
$stopwords = array("a", "about", "above", "above", "across", "after", "afterwards", "again", "against", "all", "almost", "alone", "along", "already", "also","although","always","am","among", "amongst", "amoungst", "amount", "an", "and", "another", "any","anyhow","anyone","anything","anyway", "anywhere", "are", "around", "as", "at", "back","be","became", "because","become","becomes", "becoming", "been", "before", "beforehand", "behind", "being", "below", "beside", "besides", "between", "beyond", "bill", "both", "bottom","but", "by", "call", "can", "cannot", "cant", "co", "con", "could", "couldnt", "cry", "de", "describe", "detail", "do", "done", "down", "due", "during", "each", "eg", "eight", "either", "eleven","else", "elsewhere", "empty", "enough", "etc", "even", "ever", "every", "everyone", "everything", "everywhere", "except", "few", "fifteen", "fify", "fill", "find", "fire", "first", "five", "for", "former", "formerly", "forty", "found", "four", "from", "front", "full", "further", "get", "give", "go", "had", "has", "hasnt", "have", "he", "hence", "her", "here", "hereafter", "hereby", "herein", "hereupon", "hers", "herself", "him", "himself", "his", "how", "however", "hundred", "ie", "if", "in", "inc", "indeed", "interest", "into", "is", "it", "its", "itself", "keep", "last", "latter", "latterly", "least", "less", "ltd", "made", "many", "may", "me", "meanwhile", "might", "mill", "mine", "more", "moreover", "most", "mostly", "move", "much", "must", "my", "myself", "name", "namely", "neither", "never", "nevertheless", "next", "nine", "no", "nobody", "none", "noone", "nor", "not", "nothing", "now", "nowhere", "of", "off", "often", "on", "once", "one", "only", "onto", "or", "other", "others", "otherwise", "our", "ours", "ourselves", "out", "over", "own","part", "per", "perhaps", "please", "put", "rather", "re", "same", "see", "seem", "seemed", "seeming", "seems", "serious", "several", "she", "should", "show", "side", "since", "sincere", "six", "sixty", "so", "some", "somehow", "someone", "something", "sometime", "sometimes", "somewhere", "still", "such", "system", "take", "ten", "than", "that", "the", "their", "them", "themselves", "then", "thence", "there", "thereafter", "thereby", "therefore", "therein", "thereupon", "these", "they", "thickv", "thin", "third", "this", "those", "though", "three", "through", "throughout", "thru", "thus", "to", "together", "too", "top", "toward", "towards", "twelve", "twenty", "two", "un", "under", "until", "up", "upon", "us", "very", "via", "was", "we", "well", "were", "what", "whatever", "when", "whence", "whenever", "where", "whereafter", "whereas", "whereby", "wherein", "whereupon", "wherever", "whether", "which", "while", "whither", "who", "whoever", "whole", "whom", "whose", "why", "will", "with", "within", "without", "would", "yet", "you", "your", "yours", "yourself", "yourselves", "the");
$callcount = 0;
// some common functions
function doAPIRequest($url) {
global $callcount, $apikey;
$url .= "&key=" . $apikey;
$callcount++;
$run = true;
$errorcount = 0;
while($run == true) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$reply = curl_exec($ch);
$info = curl_getinfo($ch);
if($reply != false) {
$run = false;
$reply = json_decode($reply);
if(isset($reply->error)) {
if($reply->error->errors[0]->reason == "backendError") {
echo("<br /><br />YouTube's API reported 'backendError'. The tool will wait and try again.");
sleep(10);
continue;
} elseif($reply->error->errors[0]->reason == "quotaExceeded") {
echo("<br /><br />YouTube's API reported 'quotaExceeded'. This means that too many users have used the tool too hard and our daily request quota has been exceeded.
Please try again tomorrow and consider making less data-heavy requests.");
exit;
} elseif($reply->error->errors[0]->reason == "notFound") {
echo("<br /><br />YouTube's API reported 'notFound'. The tool will skip this item.");
sleep(1);
return $reply;
} elseif($reply->error->errors[0]->reason != "subscriptionForbidden") {
echo("<br /><br />The request failed. YouTube's API gave the following error: " . $reply->error->errors[0]->reason);
exit;
} else {
return $reply;
}
} else {
return $reply;
}
} else {
$errorcount++;
if($errorcount > 10) {
echo("Too many connection errors. Please try again later.");
exit;
}
sleep(1);
}
}
}
function testcaptcha($response) {
global $secret;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.google.com/recaptcha/api/siteverify");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS,"secret=".$secret."&response=".$response);
$reply = json_decode(curl_exec($ch));
curl_close($ch);
if($reply->success != 1) {
echo "Recaptcha failed.";
exit;
}
}
function writefile($filename,$content) {
global $callcount;
file_put_contents($filename,$content);
$message = date("Y-m-d H:i:s") . " " . $callcount . " " . get_client_ip_server() . " " . $filename . "\n";
file_put_contents("writefile.log", $message, FILE_APPEND);
}
function out($msg) {
if(WEBMODE) {
echo $msg;
flush(); ob_flush();
} else {
$msg = preg_replace('/\<br \/\>/',PHP_EOL,$msg);
echo $msg;
}
}
function outweb($msg) {
if(WEBMODE) {
echo $msg;
flush(); ob_flush();
}
}
function get_client_ip_server() {
if ($_SERVER['HTTP_CLIENT_IP'])
$ipaddress = $_SERVER['HTTP_CLIENT_IP'];
else if($_SERVER['HTTP_X_FORWARDED_FOR'])
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
else if($_SERVER['HTTP_X_FORWARDED'])
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
else if($_SERVER['HTTP_FORWARDED_FOR'])
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
else if($_SERVER['HTTP_FORWARDED'])
$ipaddress = $_SERVER['HTTP_FORWARDED'];
else if($_SERVER['REMOTE_ADDR'])
$ipaddress = $_SERVER['REMOTE_ADDR'];
else
$ipaddress = 'UNKNOWN';
return $ipaddress;
}
?>