forked from bernorieder/YouTube-Data-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod_videos_net.php
419 lines (299 loc) · 13.5 KB
/
mod_videos_net.php
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
<?php include("html_head.php"); ?>
<div class="rowTab">
<div class="sectionTab">
<h1>Video Network Module</h1>
</div>
</div>
<div class="rowTab">
<div class="fullTab">
<p>This module creates a network of relations between videos, starting from a search or a list of video ids.</p>
<p>It retrieves "related videos" from the <a href="https://developers.google.com/youtube/v3/docs/search/list#relatedToVideoId" target="_blank">search/list#relatedToVideoId</a> API endpoint and creates a graph file in GDF format.</p>
<p>Crawl depth specifies how far from the seeds the script should go. Crawl depth 0 will get only the relations between seeds. Using many seeds and the maximum crawl depth (2) can take a very long time or the script will very probably run out of memory. Start small.</p>
</div>
</div>
<div class="rowTab">
<div class="sectionTab"><h1>Parameters</h1></div>
</div>
<form action="mod_videos_net.php" method="post">
<div class="rowTab">
<div class="sectionTab"><h2>1) choose a starting point:</h2></div>
</div>
<div class="rowTab">
<div class="oneTab"><input type="radio" name="mode" value="search" <?php if($_POST["mode"] != "seeds") { echo "checked"; } ?> /></div>
<div class="twoTab">Search query:</div>
<div class="threeTab">
<input type="text" name="query" value="<?php if(isset($_POST["query"])) { echo $_POST["query"]; } ?>" />
</div>
<div class="fourTab">
(this is passed to the search endpoint)
<p>optional <a href="http://www.loc.gov/standards/iso639-2/php/code_list.php" target="_blank">ISO 639-1</a> relevance language: <input type="text" name="language" style="width:20px;" value="<?php if(isset($_POST["language"])) { echo $_POST["language"]; }; ?>" /></p>
<p>optional <a href="https://www.iso.org/obp/ui/#search" target="_blank">ISO 3166-1 alpha-2</a> region code: <input type="text" name="regioncode" style="width:20px;" value="<?php if(isset($_POST["regioncode"])) { echo $_POST["regioncode"]; }; ?>" /> (default = US)</p>
</div>
</div>
<div class="rowTab">
<div class="oneTab"></div>
<div class="twoTab">Iterations:</div>
<div class="threeTab">
<input type="text" name="iterations" max="10" value="<?php echo (isset($_POST["iterations"])) ? $_POST["iterations"]:1; ?>" />
</div>
<div class="fourTab">(max. 10, one iteration gets 50 items)</div>
</div>
<div class="rowTab">
<div class="oneTab"></div>
<div class="twoTab">Rank by:</div>
<div class="fourTab">
<select name="rankby">
<option value="relevance" <?php if($_POST["rankby"] == "relevance") { echo "selected"; } ?>>relevance - Resources are sorted based on their relevance to the search query</option>
<option value="date" <?php if($_POST["rankby"] == "date") { echo "selected"; } ?>>date – Resources are sorted in reverse chronological order based on the date they were created</option>
<option value="rating" <?php if($_POST["rankby"] == "rating") { echo "selected"; } ?>>rating – Resources are sorted from highest to lowest rating</option>
<option value="title" <?php if($_POST["rankby"] == "title") { echo "selected"; } ?>>title – Resources are sorted alphabetically by title</option>
<option value="viewCount" <?php if($_POST["rankby"] == "viewCount") { echo "selected"; } ?>>viewCount - Resources are sorted from highest to lowest number of views</option>
</select>
</div>
</div>
<div class="rowTab">
<div class="oneTab"></div>
<div class="twoTab">Published:</div>
<div class="fourTab">
<input type="checkbox" name="timeframe" <?php if(isset($_POST["timeframe"])) { echo "checked"; } ?> /> limit search to videos published in a specific timeframe (format: yyyy-mm-ddThh:mm:ssZ - timezone: UTC):
<p>after: <input type="text" name="date_after" value="<?php echo (isset($_POST["date_after"])) ? $_POST["date_after"]:"1970-01-01T00:00:00Z"; ?>" /> </p>
<p>before: <input type="text" name="date_before" value="<?php echo (isset($_POST["date_before"])) ? $_POST["date_before"]:"1970-01-01T00:00:00Z"; ?>" /></p>
</div>
</div>
<div class="rowTab">
<div class="sectionTab"><hr /></div>
</div>
<div class="rowTab">
<div class="oneTab"><input type="radio" name="mode" value="seeds" <?php if($_POST["mode"] == "seeds") { echo "checked"; } ?> /></div>
<div class="twoTab">Seeds:</div>
<div class="threeTab">
<textarea name="seeds"><?php if($_POST["mode"] == "seeds") { echo $_POST["seeds"]; } ?></textarea>
</div>
<div class="fourTab">(video ids, comma separated)</div>
</div>
<div class="rowTab">
<div class="sectionTab"><h2>2) set additional parameters:</h2></div>
</div>
<div class="rowTab">
<div class="oneTab"></div>
<div class="twoTab">Crawl depth:</div>
<div class="threeTab"><input type="text" name="crawldepth" max="2" value="<?php echo (isset($_POST["crawldepth"])) ? $_POST["crawldepth"]:1; ?>" /></div>
<div class="fourTab">(values are 0, 1 or 2)</div>
</div>
<div class="rowTab">
<div class="oneTab"></div>
<div class="fourTab"><input type="submit" /></div>
</div>
</form>
<p>
<?php
$folder = $datafolder;
// allow for direct URL parameters and command line for cron
if(isset($argv)) {
parse_str(implode('&', array_slice($argv, 1)), $_GET);
$folder = $cronfolder;
}
if(isset($_GET["mode"])) { $_POST = $_GET; }
if(isset($_POST["query"]) || isset($_POST["seeds"])) {
echo '<div class="rowTab">
<div class="sectionTab"><h1>Results</h1></div>
</div>
<div class="rowTab">Processing:';
$mode = $_POST["mode"];
$crawldepth = $_POST["crawldepth"];
$nodes = array();
$edges = array();
if($_POST["crawldepth"] > 2 || preg_match("/\D/", $crawldepth)) {
echo "<br /><br />Wrong crawldepth.";
exit;
}
if($mode == "search") {
if($_POST["query"] == "") {
echo "<br /><br />Missing query.";
exit;
}
if($_POST["iterations"] > 10 || preg_match("/\D/", $_POST["iterations"])) {
echo "<br /><br />Wrong iteration parameter.";
exit;
}
$query = $_POST["query"];
$language = $_POST["language"];
$regioncode = $_POST["regioncode"];
$iterations = $_POST["iterations"];
$rankby = $_POST["rankby"];
$date_before = $date_after = false;
if(isset($_POST["timeframe"])) {
$date_before = $_POST["date_before"];
$date_after = $_POST["date_after"];
}
$ids = getIdsFromSearch($query,$iterations,$rankby,$language,$regioncode,$date_before,$date_after);
$no_seeds = count($ids);
//print_r($ids); exit;
makeNetworkFromIds(0);
} else if($mode == "seeds") {
if($_POST["seeds"] == "") {
echo "<br /><br />Missing seed ids.";
exit;
}
$seeds = $_POST["seeds"];
$seeds = preg_replace("/\s+/","",$seeds);
$seeds = trim($seeds);
$ids = explode(",",$seeds);
$no_seeds = count($ids);
//print_r($ids); exit;
makeNetworkFromIds(0);
} else {
echo "<br /><br />You need to select a mode.";
}
echo '</div>';
}
function getIdsFromSearch($query,$iterations,$rankby,$language,$regioncode,$date_before,$date_after) {
global $apikey;
$nextpagetoken = null;
$ids = array();
for($i = 0; $i < $iterations; $i++) {
$restquery = "https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=50&q=".urlencode($query)."&type=video&order=".$rankby."&key=".$apikey;
if($date_before != false) {
$restquery .= "&publishedAfter=".$date_after."&publishedBefore=".$date_before;
}
if($language != "") { $restquery .= "&relevanceLanguage=" . $language; }
if($regioncode != "") { $restquery .= "®ionCode=" . $regioncode; }
if($nextpagetoken != null) {
$restquery .= "&pageToken=".$nextpagetoken;
}
$reply = doAPIRequest($restquery);
$nextpagetoken = $reply->nextPageToken;
foreach($reply->items as $item) {
$ids[] = $item->id->videoId;
}
}
return $ids;
}
function makeNetworkFromIds($depth) {
global $apikey,$nodes,$edges,$ids,$crawldepth;
echo "<br /><br />getting details for ".count($ids)." videos at depth ".$depth.": ";
$newids = array();
$categoryIds = array();
for($i = 0; $i < count($ids); $i++) {
$vid = $ids[$i];
$restquery = "https://www.googleapis.com/youtube/v3/videos?part=statistics,contentDetails,snippet&id=".$vid."&key=".$apikey;
$reply = doAPIRequest($restquery);
if(isset($reply->items[0])) {
$video = $reply->items[0];
// collect categories
if(!in_array($video->snippet->categoryId,$categoryIds)) {
$categoryIds[] = $video->snippet->categoryId;
}
$row = array();
$row["channelId"] = $video->snippet->channelId;
$row["channelTitle"] = preg_replace("/\s+/", " ",$video->snippet->channelTitle);
$row["videoId"] = $video->id;
$row["publishedAt"] = strtotime($video->snippet->publishedAt);
$row["videoTitle"] = preg_replace("/\s+/", " ",$video->snippet->title);
$row["videoDescription"] = preg_replace("/\s+/", " ",$video->snippet->description);
$row["videoCategoryId"] = $video->snippet->categoryId;
$row["videoCategoryLabel"] = "";
$row["duration"] = $video->contentDetails->duration;
$row["dimension"] = $video->contentDetails->dimension;
$row["definition"] = $video->contentDetails->definition;
$row["caption"] = $video->contentDetails->caption;
$row["licensedContent"] = $video->contentDetails->licensedContent;
$row["viewCount"] = $video->statistics->viewCount;
$row["dislikeLikeRatio"] = (isset($video->statistics->likeCount) && isset($video->statistics->dislikeCount) && $video->statistics->likeCount > 0) ? $video->statistics->dislikeCount / $video->statistics->likeCount:"";
$row["likeCount"] = (isset($video->statistics->likeCount)) ? $video->statistics->likeCount:"";
$row["dislikeCount"] = (isset($video->statistics->dislikeCount)) ? $video->statistics->dislikeCount:"";
$row["favoriteCount"] = $video->statistics->favoriteCount;
$row["commentCount"] = (isset($video->statistics->commentCount)) ? $video->statistics->commentCount:"";
$nodes[$vid] = $row;
if($depth == 0) {
$nodes[$vid]["isSeed"] = "yes";
$nodes[$vid]["seedRank"] = ($i + 1);
} else {
$nodes[$vid]["isSeed"] = "no";
$nodes[$vid]["seedRank"] = "";
}
}
echo $i . " "; flush(); ob_flush();
}
// get category labels and assign to videos
$restquery = "https://www.googleapis.com/youtube/v3/videoCategories?part=snippet&id=".urlencode(implode(",", $categoryIds))."&key=".$apikey;
$reply = doAPIRequest($restquery);
$categoryTrans = array();
foreach($reply->items as $cat) {
$categoryTrans[$cat->id] = $cat->snippet->title;
}
foreach ($nodes as $key => $node) {
$nodes[$key]["videoCategoryLabel"] = $categoryTrans[$node["videoCategoryId"]];
}
echo "<br />getting related videos for ".count($ids)." videos at depth ".$depth.": ";
for($i = 0; $i < count($ids); $i++) {
$vid = $ids[$i];
// get related videos
$run = true;
$nextpagetoken = null;
while($run == true) {
$restquery = "https://www.googleapis.com/youtube/v3/search?part=id&maxResults=50&relatedToVideoId=".$vid."&type=video&key=".$apikey;
if($nextpagetoken != null) {
$restquery .= "&pageToken=".$nextpagetoken;
}
$reply = doAPIRequest($restquery);
foreach($reply->items as $item) {
$featid = $item->id->videoId;
if(!isset($nodes[$featid])) {
if(!in_array($featid, $newids)) {
$newids[] = $featid;
}
if($depth < $crawldepth) {
$edgeid = $vid . "_|_|X|_|_" . $featid;
$edges[$edgeid] = true;
}
} else {
$edgeid = $vid . "_|_|X|_|_" . $featid;
$edges[$edgeid] = true;
}
}
if(isset($reply->nextPageToken) && $reply->nextPageToken != "") {
$nextpagetoken = $reply->nextPageToken;
} else {
$run = false;
}
}
echo $i . " "; flush(); ob_flush();
}
if($depth == $crawldepth) {
//print_r($nodes); exit;
renderNetwork();
} else {
//print_r($newids);
$ids = $newids;
$depth++;
makeNetworkFromIds($depth);
}
}
function renderNetwork() {
global $nodes,$edges,$lookup,$no_seeds,$mode,$folder;
//print_r($nodes); exit;
$nodegdf = "nodedef>name VARCHAR,label VARCHAR,isSeed VARCHAR,seedRank INT,publishedAt INT,channelTitle VARCHAR,channelId VARCHAR,videoCategoryLabel VARCHAR,viewCount INT,likeCount INT,dislikeCount INT,dislikeLikeRatio FLOAT,favoriteCount INT,commentCount INT\n";
foreach($nodes as $nodeid => $nodedata) {
$nodegdf .= $nodeid . "," . preg_replace("/,|\"|\'/"," ",$nodedata["videoTitle"]) . "," . $nodedata["isSeed"] . "," . $nodedata["seedRank"] . "," . $nodedata["publishedAt"] . "," . preg_replace("/,|\"|\'/"," ",$nodedata["channelTitle"]) . "," . $nodedata["channelId"] . "," .
preg_replace("/,|\"|\'/"," ",$nodedata["videoCategoryLabel"]) . "," .$nodedata["viewCount"] . "," . $nodedata["likeCount"] . "," . $nodedata["dislikeCount"] . "," . $nodedata["dislikeLikeRatio"] . "," . $nodedata["favoriteCount"] . "," . $nodedata["commentCount"] . "," . "\n";
}
$edgegdf = "edgedef>node1 VARCHAR,node2 VARCHAR,directed BOOLEAN\n";
foreach($edges as $edgeid => $edgedata) {
$tmp = explode("_|_|X|_|_",$edgeid);
if(isset($nodes[$tmp[0]]) && isset($nodes[$tmp[1]])) {
$edgegdf .= $tmp[0] . "," . $tmp[1] . ",true\n";
}
}
$gdf = $nodegdf . $edgegdf;
$filename = "videonet_" . $mode . $no_seeds . "_nodes" . count($nodes) . "_" . date("Y_m_d-H_i_s");
if(isset($_POST["filename"])) { $filename = $_POST["filename"] . "_" . $filename; }
file_put_contents($folder.$filename.".gdf", $gdf);
echo '<br /><br />The script has created a net with '.count($nodes).' videos from '.$no_seeds.' seeds.<br /><br />
your files:<br />
<a href="'.$folder.$filename.'.gdf" download>'.$filename.'.gdf</a><br />';
}
?>
</p>
</body>
</html>