forked from RoliSoft/WSL-Distribution-Switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get-prebuilt.py
executable file
·108 lines (75 loc) · 3.14 KB
/
get-prebuilt.py
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
#!/usr/bin/env python3
# coding=utf-8
import os
import sys
import json
import time
import urllib.request
from utils import Fore, parse_image_arg, chunked_copy, clear_progress, handle_sigint, ensure_ca_load
# handle arguments
handle_sigint()
ensure_ca_load()
if len(sys.argv) < 2:
print('usage: ./get-prebuilt.py image[:tag]')
sys.exit(-1)
image, tag, fname, label = parse_image_arg(sys.argv[1], False)
fimage = image if '/' in image else 'library/' + image
token = ''
expire = 0
# get auth token to Docker Hub
def request_auth_token():
global token, expire, fimage
print('%s[*]%s Requesting authorization token...' % (Fore.GREEN, Fore.RESET))
try:
with urllib.request.urlopen('https://auth.docker.io/token?service=registry.docker.io&scope=repository:%s:pull' % fimage) as f:
data = json.loads(f.read().decode('utf-8'))
token = data['token']
expire = time.time() + data['expires_in']
except urllib.error.HTTPError as err:
print('%s[!]%s Failed to authorization token: %s' % (Fore.RED, Fore.RESET, err))
sys.exit(-1)
except KeyError as err:
print('%s[!]%s Failed to authorization token: %s' % (Fore.RED, Fore.RESET, err))
sys.exit(-1)
request_auth_token()
# get the image manifest
print('%s[*]%s Fetching manifest info for %s%s%s:%s%s%s...' % (Fore.GREEN, Fore.RESET, Fore.YELLOW, image, Fore.RESET, Fore.YELLOW, tag, Fore.RESET))
manifest = {}
try:
r = urllib.request.Request('https://registry.hub.docker.com/v2/%s/manifests/%s' % (fimage, tag))
r.add_header('Authorization', 'Bearer ' + token)
with urllib.request.urlopen(r) as f:
manifest = json.loads(f.read().decode('utf-8'))
if len(manifest['fsLayers']) == 0:
print('%s[!]%s Manifest for image %s%s%s has no layers.' % (Fore.RED, Fore.RESET, Fore.BLUE, image, Fore.RESET))
sys.exit(-1)
except urllib.error.HTTPError as err:
print('%s[!]%s Failed to fetch manifest info for %s%s%s: %s' % (Fore.RED, Fore.RESET, Fore.BLUE, image, Fore.RESET, err))
sys.exit(-1)
# download the layers
dled = set()
fname += '.tar.gz'
# remove old file before download
if os.path.exists(fname):
os.remove(fname)
for layer in manifest['fsLayers']:
if expire <= time.time():
request_auth_token()
if layer['blobSum'] in dled:
continue
dled.add(layer['blobSum'])
print('%s[*]%s Downloading layer %s%s%s...' % (Fore.GREEN, Fore.RESET, Fore.BLUE, layer['blobSum'], Fore.RESET))
try:
r = urllib.request.Request('https://registry.hub.docker.com/v2/%s/blobs/%s' % (fimage, layer['blobSum']))
r.add_header('Authorization', 'Bearer ' + token)
with urllib.request.urlopen(r) as u, open(fname, 'ab') as f:
chunked_copy(fname, u, f)
except urllib.error.HTTPError as err:
clear_progress()
print('%s[!]%s Failed to download layer %s%s%s: %s' % (Fore.RED, Fore.RESET, Fore.BLUE, layer['blobSum'], Fore.RESET, err))
sys.exit(-1)
except OSError as err:
clear_progress()
print('%s[!]%s Failed to open file %s%s%s for writing: %s' % (Fore.RED, Fore.RESET, Fore.BLUE, fname, Fore.RESET, err))
sys.exit(-1)
print('%s[*]%s Rootfs archive for %s%s%s:%s%s%s saved to %s%s%s.' % (Fore.GREEN, Fore.RESET, Fore.YELLOW, image, Fore.RESET, Fore.YELLOW, tag, Fore.RESET, Fore.GREEN, fname, Fore.RESET))