]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/update.py
8 from zipimport
import zipimporter
12 compat_urllib_request
,
14 from .version
import __version__
16 def rsa_verify(message
, signature
, key
):
17 from struct
import pack
18 from hashlib
import sha256
19 from sys
import version_info
21 if version_info
[0] == 2: return x
22 else: return x
.encode('latin1')
23 assert(type(message
) == type(b('')))
29 signature
= pow(int(signature
, 16), key
[1], key
[0])
32 raw_bytes
.insert(0, pack("B", signature
& 0xFF))
34 signature
= (block_size
- len(raw_bytes
)) * b('\x00') + b('').join(raw_bytes
)
35 if signature
[0:2] != b('\x00\x01'): return False
36 signature
= signature
[2:]
37 if not b('\x00') in signature
: return False
38 signature
= signature
[signature
.index(b('\x00'))+1:]
39 if not signature
.startswith(b('\x30\x31\x30\x0D\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x01\x05\x00\x04\x20')): return False
40 signature
= signature
[19:]
41 if signature
!= sha256(message
).digest(): return False
45 def update_self(to_screen
, verbose
):
46 """Update the program file with the latest version from the repository"""
48 UPDATE_URL
= "http://rg3.github.io/youtube-dl/update/"
49 VERSION_URL
= UPDATE_URL
+ 'LATEST_VERSION'
50 JSON_URL
= UPDATE_URL
+ 'versions.json'
51 UPDATES_RSA_KEY
= (0x9d60ee4d8f805312fdb15a62f87b95bd66177b91df176765d13514a0f1754bcd2057295c5b6f1d35daa6742c3ffc9a82d3e118861c207995a8031e151d863c9927e304576bc80692bc8e094896fcf11b66f3e29e04e3a71e9a11558558acea1840aec37fc396fb6b65dc81a1c4144e03bd1c011de62e3f1357b327d08426fe93, 65537)
53 if not isinstance(globals().get('__loader__'), zipimporter
) and not hasattr(sys
, "frozen"):
54 to_screen(u
'It looks like you installed youtube-dl with a package manager, pip, setup.py or a tarball. Please use that to update.')
57 # Check if there is a new version
59 newversion
= compat_urllib_request
.urlopen(VERSION_URL
).read().decode('utf-8').strip()
61 if verbose
: to_screen(compat_str(traceback
.format_exc()))
62 to_screen(u
'ERROR: can\'t find the current version. Please try again later.')
64 if newversion
== __version__
:
65 to_screen(u
'youtube-dl is up-to-date (' + __version__
+ ')')
68 # Download and check versions info
70 versions_info
= compat_urllib_request
.urlopen(JSON_URL
).read().decode('utf-8')
71 versions_info
= json
.loads(versions_info
)
73 if verbose
: to_screen(compat_str(traceback
.format_exc()))
74 to_screen(u
'ERROR: can\'t obtain versions info. Please try again later.')
76 if not 'signature' in versions_info
:
77 to_screen(u
'ERROR: the versions file is not signed or corrupted. Aborting.')
79 signature
= versions_info
['signature']
80 del versions_info
['signature']
81 if not rsa_verify(json
.dumps(versions_info
, sort_keys
=True).encode('utf-8'), signature
, UPDATES_RSA_KEY
):
82 to_screen(u
'ERROR: the versions file signature is invalid. Aborting.')
85 version_id
= versions_info
['latest']
87 def version_tuple(version_str
):
88 return tuple(map(int, version_str
.split('.')))
89 if version_tuple(__version__
) >= version_tuple(version_id
):
90 to_screen(u
'youtube-dl is up to date (%s)' % __version__
)
93 to_screen(u
'Updating to version ' + version_id
+ ' ...')
94 version
= versions_info
['versions'][version_id
]
96 print_notes(to_screen
, versions_info
['versions'])
98 filename
= sys
.argv
[0]
99 # Py2EXE: Filename could be different
100 if hasattr(sys
, "frozen") and not os
.path
.isfile(filename
):
101 if os
.path
.isfile(filename
+ u
'.exe'):
104 if not os
.access(filename
, os
.W_OK
):
105 to_screen(u
'ERROR: no write permissions on %s' % filename
)
109 if hasattr(sys
, "frozen"):
110 exe
= os
.path
.abspath(filename
)
111 directory
= os
.path
.dirname(exe
)
112 if not os
.access(directory
, os
.W_OK
):
113 to_screen(u
'ERROR: no write permissions on %s' % directory
)
117 urlh
= compat_urllib_request
.urlopen(version
['exe'][0])
118 newcontent
= urlh
.read()
120 except (IOError, OSError):
121 if verbose
: to_screen(compat_str(traceback
.format_exc()))
122 to_screen(u
'ERROR: unable to download latest version')
125 newcontent_hash
= hashlib
.sha256(newcontent
).hexdigest()
126 if newcontent_hash
!= version
['exe'][1]:
127 to_screen(u
'ERROR: the downloaded file hash does not match. Aborting.')
131 with open(exe
+ '.new', 'wb') as outf
:
132 outf
.write(newcontent
)
133 except (IOError, OSError):
134 if verbose
: to_screen(compat_str(traceback
.format_exc()))
135 to_screen(u
'ERROR: unable to write the new version')
139 bat
= os
.path
.join(directory
, 'youtube-dl-updater.bat')
140 with io
.open(bat
, 'w') as batfile
:
143 echo Waiting for file handle to be closed ...
144 ping 127.0.0.1 -n 5 -w 1000 > NUL
145 move /Y "%s.new" "%s" > NUL
146 echo Updated youtube-dl to version %s.
147 start /b "" cmd /c del "%%~f0"&exit /b"
148 \n""" % (exe
, exe
, version_id
))
150 subprocess
.Popen([bat
]) # Continues to run in the background
151 return # Do not show premature success messages
152 except (IOError, OSError):
153 if verbose
: to_screen(compat_str(traceback
.format_exc()))
154 to_screen(u
'ERROR: unable to overwrite current version')
158 elif isinstance(globals().get('__loader__'), zipimporter
):
160 urlh
= compat_urllib_request
.urlopen(version
['bin'][0])
161 newcontent
= urlh
.read()
163 except (IOError, OSError):
164 if verbose
: to_screen(compat_str(traceback
.format_exc()))
165 to_screen(u
'ERROR: unable to download latest version')
168 newcontent_hash
= hashlib
.sha256(newcontent
).hexdigest()
169 if newcontent_hash
!= version
['bin'][1]:
170 to_screen(u
'ERROR: the downloaded file hash does not match. Aborting.')
174 with open(filename
, 'wb') as outf
:
175 outf
.write(newcontent
)
176 except (IOError, OSError):
177 if verbose
: to_screen(compat_str(traceback
.format_exc()))
178 to_screen(u
'ERROR: unable to overwrite current version')
181 to_screen(u
'Updated youtube-dl. Restart youtube-dl to use the new version.')
183 def get_notes(versions
, fromVersion
):
185 for v
,vdata
in sorted(versions
.items()):
187 notes
.extend(vdata
.get('notes', []))
190 def print_notes(to_screen
, versions
, fromVersion
=__version__
):
191 notes
= get_notes(versions
, fromVersion
)
193 to_screen(u
'PLEASE NOTE:')