about summary refs log tree commit diff
path: root/youtube-dl
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo.valsorda@gmail.com>2012-12-08 01:28:44 +0100
committerFilippo Valsorda <filippo.valsorda@gmail.com>2012-12-08 01:52:39 +0100
commitc7287a3cafba65b700b64633d76aa016f5cbc95d (patch)
tree2f6ca0b43516d77dfff9ba40f1119ce7d4dc7bc6 /youtube-dl
parent5a304a7637c033dea00ff46d6980075b63d17f24 (diff)
downloadyoutube-dl-c7287a3cafba65b700b64633d76aa016f5cbc95d.tar.gz
youtube-dl-c7287a3cafba65b700b64633d76aa016f5cbc95d.tar.xz
youtube-dl-c7287a3cafba65b700b64633d76aa016f5cbc95d.zip
ATTENTION DO NOT USE THESE: new binaries in the Downloads section
placed fake binaries that update themselves where old versions updating will search for the new version
Diffstat (limited to 'youtube-dl')
-rwxr-xr-xyoutube-dl40
1 files changed, 40 insertions, 0 deletions
diff --git a/youtube-dl b/youtube-dl
new file mode 100755
index 000000000..d5ca2d4ba
--- /dev/null
+++ b/youtube-dl
@@ -0,0 +1,40 @@
+#!/usr/bin/env python
+
+import sys, os
+
+try:
+    import urllib.request as compat_urllib_request
+except ImportError: # Python 2
+    import urllib2 as compat_urllib_request
+
+sys.stderr.write(u'Hi! We changed distribution method and now youtube-dl needs to update itself one more time.\n')
+sys.stderr.write(u'This will only happen once. Simply press enter to go on. Sorry for the trouble!\n')
+sys.stderr.write(u'The new location of the binaries is https://github.com/rg3/youtube-dl/downloads, not the git repository.\n\n')
+
+try:
+	raw_input()
+except NameError: # Python 3
+	input()
+
+filename = sys.argv[0]
+
+API_URL = "https://api.github.com/repos/rg3/youtube-dl/downloads"
+BIN_URL = "https://github.com/downloads/rg3/youtube-dl/youtube-dl"
+
+if not os.access(filename, os.W_OK):
+    sys.exit('ERROR: no write permissions on %s' % filename)
+
+try:
+    urlh = compat_urllib_request.urlopen(BIN_URL)
+    newcontent = urlh.read()
+    urlh.close()
+except (IOError, OSError) as err:
+    sys.exit('ERROR: unable to download latest version')
+
+try:
+    with open(filename, 'wb') as outf:
+        outf.write(newcontent)
+except (IOError, OSError) as err:
+    sys.exit('ERROR: unable to overwrite current version')
+
+sys.stderr.write(u'Done! Now you can run youtube-dl.\n')