aboutsummaryrefslogtreecommitdiff
path: root/devscripts/check-porn.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-28 10:44:13 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-28 10:44:13 +0100
commitebc14f251c2968f4cb6cb18610b857ecb24348c8 (patch)
treed33050d96f576d2a9710ccea7fac729116358025 /devscripts/check-porn.py
parentd41e6efc852c34da582790a54ecc4f5e9dbbedda (diff)
parent8ffa13e03e995f2009d8240cbdc6ba7aba9d3759 (diff)
downloadyoutube-dl-ebc14f251c2968f4cb6cb18610b857ecb24348c8.tar.xz
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'devscripts/check-porn.py')
-rw-r--r--devscripts/check-porn.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/devscripts/check-porn.py b/devscripts/check-porn.py
new file mode 100644
index 000000000..63401fe18
--- /dev/null
+++ b/devscripts/check-porn.py
@@ -0,0 +1,39 @@
+#!/usr/bin/env python
+
+"""
+This script employs a VERY basic heuristic ('porn' in webpage.lower()) to check
+if we are not 'age_limit' tagging some porn site
+"""
+
+# Allow direct execution
+import os
+import sys
+sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
+
+from test.helper import get_testcases
+from youtube_dl.utils import compat_urllib_request
+
+for test in get_testcases():
+ try:
+ webpage = compat_urllib_request.urlopen(test['url'], timeout=10).read()
+ except:
+ print('\nFail: {0}'.format(test['name']))
+ continue
+
+ webpage = webpage.decode('utf8', 'replace')
+
+ if 'porn' in webpage.lower() and ('info_dict' not in test
+ or 'age_limit' not in test['info_dict']
+ or test['info_dict']['age_limit'] != 18):
+ print('\nPotential missing age_limit check: {0}'.format(test['name']))
+
+ elif 'porn' not in webpage.lower() and ('info_dict' in test and
+ 'age_limit' in test['info_dict'] and
+ test['info_dict']['age_limit'] == 18):
+ print('\nPotential false negative: {0}'.format(test['name']))
+
+ else:
+ sys.stdout.write('.')
+ sys.stdout.flush()
+
+print()