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
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# COPYRIGHT NOTICE STARTS HERE
# Copyright 2019 © Samsung Electronics Co., Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# COPYRIGHT NOTICE ENDS HERE
import argparse
import concurrent.futures
import hashlib
import logging
import os
import sys
from retrying import retry
import base
log = logging.getLogger(name=__name__)
@retry(stop_max_attempt_number=5, wait_fixed=5000)
def get_npm(registry, npm_name, npm_version):
npm_url = '{}/{}/{}'.format(registry, npm_name, npm_version)
npm_req = base.make_get_request(npm_url)
npm_json = npm_req.json()
tarball_url = npm_json['dist']['tarball']
shasum = npm_json['dist']['shasum']
tarball_req = base.make_get_request(tarball_url)
tarball = tarball_req.content
if hashlib.sha1(tarball).hexdigest() == shasum:
return tarball
else:
raise Exception('{}@{}: Wrong checksum. Retrying...'.format(npm_name, npm_version))
def download_npm(npm, registry, dst_dir):
log.info('Downloading: {}'.format(npm))
npm_name, npm_version = npm.split('@')
dst_path = '{}/{}-{}.tgz'.format(dst_dir, npm_name, npm_version)
try:
tarball = get_npm(registry, *npm.split('@'))
base.save_to_file(dst_path, tarball)
except Exception as err:
if os.path.isfile(dst_path):
os.remove(dst_path)
log.exception('Failed: {}'.format(npm))
raise err
log.info('Downloaded: {}'.format(npm))
def missing(npm_set, dst_dir):
return {npm for npm in npm_set
if not os.path.isfile('{}/{}-{}.tgz'.format(dst_dir, *npm.split('@')))}
def download(npm_list, registry, dst_dir, check_mode, progress=None, workers=None):
npm_set = base.load_list(npm_list)
target_count = len(npm_set)
missing_npms = missing(npm_set, dst_dir)
if check_mode:
log.info(base.simple_check_table(npm_set, missing_npms))
return 0
skipping = npm_set - missing_npms
base.start_progress(progress, len(npm_set), skipping, log)
error_count = base.run_concurrent(workers, progress, download_npm, missing_npms, registry, dst_dir)
base.finish_progress(progress, error_count, log)
if error_count > 0:
log.error('{} packages were not downloaded. Check log for specific failures.'.format(error_count))
raise RuntimeError()
def run_cli():
parser = argparse.ArgumentParser(description='Download npm packages from list')
parser.add_argument('npm_list', metavar='npm-list',
help='File with list of npm packages to download.')
parser.add_argument('--registry', '-r', default='https://registry.npmjs.org',
help='Download destination')
parser.add_argument('--output-dir', '-o', default=os.getcwd(),
help='Download destination')
parser.add_argument('--check', '-c', action='store_true', default=False,
help='Check what is missing. No download.')
parser.add_argument('--debug', action='store_true', default=False,
help='Turn on debug output')
parser.add_argument('--workers', type=int, default=None,
help='Set maximum workers for parallel download (default: cores * 5)')
args = parser.parse_args()
if args.debug:
logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)
else:
logging.basicConfig(stream=sys.stdout, level=logging.INFO, format='%(message)s')
progress = base.init_progress('npm packages') if not args.check else None
sys.exit(download(args.npm_list, args.registry, args.output_dir, args.check, progress,
args.workers))
if __name__ == '__main__':
run_cli()
|