FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
fetchcode/src/fetchcode/package.py at master · aboutcode-org/fetchcode · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
aboutcode-org
/
fetchcode
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
23
Star
13
Code
Issues
56
Pull requests
10
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
fetchcode
/
src
/
fetchcode
/
package.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
879 lines (729 loc) · 29.7 KB
Breadcrumbs
fetchcode
/
src
/
fetchcode
/
package.py
Copy path
File metadata and controls
879 lines (729 loc) · 29.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
# fetchcode is a free software tool from nexB Inc. and others.
# Visit https://github.com/aboutcode-org/fetchcode for support and download.
#
# Copyright (c) nexB Inc. and others. All rights reserved.
# http://nexb.com and http://aboutcode.org
#
# This software is licensed under the Apache License version 2.0.
#
# You may not use this software except in compliance with the License.
# You may obtain a copy of the License at:
# http://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.
import
dataclasses
import
re
import
time
from
typing
import
List
from
urllib
.
parse
import
urljoin
import
htmllistparse
from
packageurl
import
PackageURL
from
packageurl
.
contrib
.
route
import
NoRouteAvailable
from
packageurl
.
contrib
.
route
import
Router
from
fetchcode
.
package_util
import
GITHUB_SOURCE_BY_PACKAGE
from
fetchcode
.
package_util
import
IPKG_RELEASES
from
fetchcode
.
package_util
import
UDHCP_RELEASES
from
fetchcode
.
package_util
import
ErofsUtilsGitHubSource
from
fetchcode
.
package_util
import
GitHubSource
from
fetchcode
.
package_util
import
MiniupnpPackagesGitHubSource
from
fetchcode
.
package_util
import
OpenSSLGitHubSource
from
fetchcode
.
package_util
import
construct_cocoapods_package
from
fetchcode
.
package_util
import
get_cocoapod_tags
from
fetchcode
.
packagedcode_models
import
Package
from
fetchcode
.
utils
import
get_hashed_path
from
fetchcode
.
utils
import
get_response
router
=
Router
()
def
info
(
url
):
"""
Return package metadata for a URL or PURL.
Return None if there is no URL, or the URL or PURL is not supported.
"""
if
url
:
try
:
return
router
.
process
(
url
)
except
NoRouteAvailable
:
return
def
get_pypi_bugtracker_url
(
project_urls
):
bug_tracking_url
=
project_urls
.
get
(
"Tracker"
)
if
not
(
bug_tracking_url
):
bug_tracking_url
=
project_urls
.
get
(
"Issue Tracker"
)
if
not
(
bug_tracking_url
):
bug_tracking_url
=
project_urls
.
get
(
"Bug Tracker"
)
return
bug_tracking_url
def
get_pypi_codeview_url
(
project_urls
):
code_view_url
=
project_urls
.
get
(
"Source"
)
if
not
(
code_view_url
):
code_view_url
=
project_urls
.
get
(
"Code"
)
if
not
(
code_view_url
):
code_view_url
=
project_urls
.
get
(
"Source Code"
)
return
code_view_url
@
router
.
route
(
"pkg:cargo/.*"
)
def
get_cargo_data_from_purl
(
purl
):
"""
Generate `Package` object from the `purl` string of cargo type
"""
purl
=
PackageURL
.
from_string
(
purl
)
base_url
=
"https://crates.io"
name
=
purl
.
name
version
=
purl
.
version
api_url
=
f"
{
base_url
}
/api/v1/crates/
{
name
}
"
download_url
=
f"
{
api_url
}
/
{
version
}
/download"
if
version
else
None
response
=
get_response
(
api_url
)
crate
=
response
.
get
(
"crate"
)
or
{}
homepage_url
=
crate
.
get
(
"homepage"
)
code_view_url
=
crate
.
get
(
"repository"
)
versions
=
response
.
get
(
"versions"
, [])
for
version
in
versions
:
version_purl
=
PackageURL
(
type
=
purl
.
type
,
name
=
name
,
version
=
version
.
get
(
"num"
))
dl_path
=
version
.
get
(
"dl_path"
)
if
dl_path
:
download_url
=
f"
{
base_url
}
/
{
dl_path
}
"
else
:
download_url
=
None
declared_license
=
version
.
get
(
"license"
)
if
purl
.
version
and
version_purl
.
version
!=
purl
.
version
:
continue
yield
Package
(
homepage_url
=
homepage_url
,
api_url
=
api_url
,
code_view_url
=
code_view_url
,
download_url
=
download_url
,
declared_license
=
declared_license
,
**
version_purl
.
to_dict
(),
)
if
purl
.
version
:
break
@
router
.
route
(
"pkg:npm/.*"
)
def
get_npm_data_from_purl
(
purl
):
"""
Generate `Package` object from the `purl` string of npm type
"""
purl
=
PackageURL
.
from_string
(
purl
)
base_path
=
"http://registry.npmjs.org"
name
=
purl
.
name
version
=
purl
.
version
api_url
=
f"
{
base_path
}
/
{
name
}
"
response
=
get_response
(
api_url
)
vcs_data
=
response
.
get
(
"repository"
)
or
{}
bugs
=
response
.
get
(
"bugs"
)
or
{}
download_url
=
f"
{
base_path
}
/
{
name
}
/-/
{
name
}
-
{
version
}
.tgz"
if
version
else
None
vcs_url
=
vcs_data
.
get
(
"url"
)
bug_tracking_url
=
bugs
.
get
(
"url"
)
license
=
response
.
get
(
"license"
)
homepage_url
=
response
.
get
(
"homepage"
)
versions
=
response
.
get
(
"versions"
, [])
for
num
in
versions
:
version
=
versions
[
num
]
version_purl
=
PackageURL
(
type
=
purl
.
type
,
name
=
name
,
version
=
version
.
get
(
"version"
))
repository
=
version
.
get
(
"repository"
)
or
{}
bugs
=
response
.
get
(
"bugs"
)
or
{}
dist
=
version
.
get
(
"dist"
)
or
{}
vcs_url
=
repository
.
get
(
"url"
)
download_url
=
dist
.
get
(
"tarball"
)
bug_tracking_url
=
bugs
.
get
(
"url"
)
declared_license
=
license
if
purl
.
version
and
version_purl
.
version
!=
purl
.
version
:
continue
yield
Package
(
homepage_url
=
homepage_url
,
api_url
=
api_url
,
vcs_url
=
vcs_url
,
bug_tracking_url
=
bug_tracking_url
,
download_url
=
download_url
,
declared_license
=
declared_license
,
**
version_purl
.
to_dict
(),
)
if
purl
.
version
:
break
@
router
.
route
(
"pkg:pypi/.*"
)
def
get_pypi_data_from_purl
(
purl
):
"""
Generate `Package` object from the `purl` string of npm type
"""
purl
=
PackageURL
.
from_string
(
purl
)
name
=
purl
.
name
base_path
=
"https://pypi.org/pypi"
api_url
=
f"
{
base_path
}
/
{
name
}
/json"
response
=
get_response
(
api_url
)
releases
=
response
.
get
(
"releases"
)
or
{}
info
=
response
.
get
(
"info"
)
or
{}
homepage_url
=
info
.
get
(
"home_page"
)
license
=
info
.
get
(
"license"
)
project_urls
=
info
.
get
(
"project_urls"
)
or
{}
code_view_url
=
get_pypi_codeview_url
(
project_urls
)
bug_tracking_url
=
get_pypi_bugtracker_url
(
project_urls
)
for
num
in
releases
:
version_purl
=
PackageURL
(
type
=
purl
.
type
,
name
=
name
,
version
=
num
)
release
=
releases
.
get
(
num
)
or
[{}]
release
=
release
[
0
]
download_url
=
release
.
get
(
"url"
)
if
purl
.
version
and
version_purl
.
version
!=
purl
.
version
:
continue
yield
Package
(
homepage_url
=
homepage_url
,
api_url
=
api_url
,
bug_tracking_url
=
bug_tracking_url
,
code_view_url
=
code_view_url
,
download_url
=
download_url
,
declared_license
=
license
,
**
version_purl
.
to_dict
(),
)
if
purl
.
version
:
break
@
router
.
route
(
"pkg:github/.*"
)
def
get_github_data_from_purl
(
purl
):
"""
Yield `Package` object from the `purl` string of github type
"""
purl
=
PackageURL
.
from_string
(
purl
)
name
=
purl
.
name
namespace
=
purl
.
namespace
gh_package
=
f"
{
namespace
}
/
{
name
}
"
gh_source_class
=
GITHUB_SOURCE_BY_PACKAGE
.
get
(
gh_package
,
GitHubSource
)
return
gh_source_class
.
get_package_info
(
purl
)
@
router
.
route
(
"pkg:generic/miniupnpc.*"
,
"pkg:generic/miniupnpd.*"
,
"pkg:generic/minissdpd.*"
,
)
def
get_github_data_for_miniupnp
(
purl
):
"""
Yield `Package` object for miniupnp packages from GitHub.
"""
generic_purl
=
PackageURL
.
from_string
(
purl
)
github_repo_purl
=
PackageURL
(
type
=
"github"
,
namespace
=
"miniupnp"
,
name
=
"miniupnp"
,
version
=
generic_purl
.
version
,
)
return
MiniupnpPackagesGitHubSource
.
get_package_info
(
gh_purl
=
github_repo_purl
,
package_name
=
generic_purl
.
name
)
@
router
.
route
(
"pkg:openssl/openssl.*"
,
)
def
get_github_data_for_openssl
(
purl
):
"""
Yield `Package` object for OpenSSL package from GitHub.
"""
generic_purl
=
PackageURL
.
from_string
(
purl
)
github_repo_purl
=
PackageURL
(
type
=
"github"
,
namespace
=
"openssl"
,
name
=
"openssl"
,
version
=
generic_purl
.
version
,
)
return
OpenSSLGitHubSource
.
get_package_info
(
github_repo_purl
)
@
router
.
route
(
"pkg:generic/erofs-utils.*"
)
def
get_github_data_for_erofs_utils
(
purl
):
"""
Yield `Package` object for erofs-utils package from GitHub.
"""
generic_purl
=
PackageURL
.
from_string
(
purl
)
github_repo_purl
=
PackageURL
(
type
=
"github"
,
namespace
=
"erofs"
,
name
=
"erofs-utils"
,
version
=
generic_purl
.
version
,
)
return
ErofsUtilsGitHubSource
.
get_package_info
(
github_repo_purl
)
@
router
.
route
(
"pkg:bitbucket/.*"
)
def
get_bitbucket_data_from_purl
(
purl
):
"""
Generate `Package` object from the `purl` string of bitbucket type
"""
purl
=
PackageURL
.
from_string
(
purl
)
name
=
purl
.
name
namespace
=
purl
.
namespace
base_path
=
"https://api.bitbucket.org/2.0/repositories"
api_url
=
f"
{
base_path
}
/
{
namespace
}
/
{
name
}
"
response
=
get_response
(
api_url
)
bitbucket_url
=
"https://bitbucket.org"
bug_tracking_url
=
f"
{
bitbucket_url
}
/
{
namespace
}
/
{
name
}
/issues"
code_view_url
=
f"
{
bitbucket_url
}
/
{
namespace
}
/
{
name
}
"
links
=
response
.
get
(
"links"
)
or
{}
tags_url
=
links
.
get
(
"tags"
)
or
{}
tags_url
=
tags_url
.
get
(
"href"
)
if
not
tags_url
:
return
[]
tags_data
=
get_response
(
tags_url
)
tags
=
tags_data
.
get
(
"values"
)
or
{}
for
tag
in
tags
:
version
=
tag
.
get
(
"name"
)
or
""
version_purl
=
PackageURL
(
type
=
purl
.
type
,
namespace
=
namespace
,
name
=
name
,
version
=
version
)
download_url
=
f"
{
base_path
}
/
{
namespace
}
/
{
name
}
/downloads/
{
name
}
-
{
version
}
.tar.gz"
code_view_url
=
f"
{
bitbucket_url
}
/
{
namespace
}
/
{
name
}
/src/
{
version
}
"
if
purl
.
version
and
version_purl
.
version
!=
purl
.
version
:
continue
yield
Package
(
api_url
=
api_url
,
bug_tracking_url
=
bug_tracking_url
,
code_view_url
=
code_view_url
,
download_url
=
download_url
,
**
version_purl
.
to_dict
(),
)
if
purl
.
version
:
break
@
router
.
route
(
"pkg:rubygems/.*"
)
def
get_rubygems_data_from_purl
(
purl
):
"""
Generate `Package` object from the `purl` string of rubygems type
"""
purl
=
PackageURL
.
from_string
(
purl
)
name
=
purl
.
name
all_versions_url
=
f"https://rubygems.org/api/v1/versions/
{
name
}
.json"
all_versions
=
get_response
(
all_versions_url
)
for
vers
in
all_versions
:
version_purl
=
PackageURL
(
type
=
purl
.
type
,
name
=
name
,
version
=
vers
.
get
(
"number"
))
if
purl
.
version
and
version_purl
.
version
!=
purl
.
version
:
continue
number
=
vers
.
get
(
"number"
)
version_api
=
f"https://rubygems.org/api/v2/rubygems/
{
name
}
/versions/
{
number
}
.json"
version_api_response
=
get_response
(
version_api
)
declared_license
=
version_api_response
.
get
(
"licenses"
)
or
None
homepage_url
=
version_api_response
.
get
(
"homepage_uri"
)
code_view_url
=
version_api_response
.
get
(
"source_code_uri"
)
bug_tracking_url
=
version_api_response
.
get
(
"bug_tracker_uri"
)
download_url
=
version_api_response
.
get
(
"gem_uri"
)
repository_homepage_url
=
version_api_response
.
get
(
"project_uri"
)
yield
Package
(
homepage_url
=
homepage_url
,
api_url
=
version_api
,
bug_tracking_url
=
bug_tracking_url
,
code_view_url
=
code_view_url
,
declared_license
=
declared_license
,
download_url
=
download_url
,
repository_homepage_url
=
repository_homepage_url
,
**
version_purl
.
to_dict
(),
)
if
purl
.
version
:
break
@
router
.
route
(
"pkg:gnu/.*"
)
def
get_gnu_data_from_purl
(
purl
):
"""Generate `Package` object from the `purl` string of gnu type"""
purl
=
PackageURL
.
from_string
(
purl
)
source_archive_url
=
f"https://ftp.gnu.org/pub/gnu/
{
purl
.
name
}
/"
version_regex_template
=
r"^({}-)(?P<version>[\w.-]*)(.tar.gz)$"
version_regex
=
re
.
compile
(
version_regex_template
.
format
(
re
.
escape
(
purl
.
name
)))
yield
from
extract_packages_from_listing
(
purl
,
source_archive_url
,
version_regex
, [])
@
router
.
route
(
"pkg:cocoapods/.*"
)
def
get_cocoapods_data_from_purl
(
purl
):
purl
=
PackageURL
.
from_string
(
purl
)
name
=
purl
.
name
cocoapods_org_url
=
f"https://cocoapods.org/pods/
{
name
}
"
api
=
"https://cdn.cocoapods.org"
hashed_path
=
get_hashed_path
(
name
)
hashed_path_underscore
=
hashed_path
.
replace
(
"/"
,
"_"
)
file_prefix
=
"all_pods_versions_"
spec
=
f"
{
api
}
/
{
file_prefix
}
{
hashed_path_underscore
}
.txt"
data_list
=
get_cocoapod_tags
(
spec
,
name
)
for
tag
in
data_list
:
version_purl
=
PackageURL
(
type
=
purl
.
type
,
name
=
name
,
version
=
tag
)
if
purl
.
version
and
version_purl
.
version
!=
purl
.
version
:
continue
gh_repo_owner
=
None
gh_repo_name
=
name
base_url
=
"https://raw.githubusercontent.com/CocoaPods/Specs/master/Specs"
podspec_api_url
=
f"
{
base_url
}
/
{
hashed_path
}
/
{
name
}
/
{
tag
}
/
{
name
}
.podspec.json"
podspec_api_response
=
get_response
(
podspec_api_url
)
podspec_homepage
=
podspec_api_response
.
get
(
"homepage"
)
if
podspec_homepage
.
startswith
(
"https://github.com/"
):
podspec_homepage_remove_gh_prefix
=
podspec_homepage
.
replace
(
"https://github.com/"
,
""
)
podspec_homepage_split
=
podspec_homepage_remove_gh_prefix
.
split
(
"/"
)
gh_repo_owner
=
podspec_homepage_split
[
0
]
gh_repo_name
=
podspec_homepage_split
[
-
1
]
tag_pkg
=
construct_cocoapods_package
(
version_purl
,
name
,
hashed_path
,
cocoapods_org_url
,
gh_repo_owner
,
gh_repo_name
,
tag
)
yield
tag_pkg
if
purl
.
version
:
break
@
dataclasses
.
dataclass
class
DirectoryListedSource
:
source_url
:
str
=
dataclasses
.
field
(
default
=
""
,
metadata
=
{
"description"
:
"URL of the directory listing source"
}
)
is_nested
:
bool
=
dataclasses
.
field
(
default
=
False
,
metadata
=
{
"description"
: (
"Flag indicating whether the archives are nested within another directory"
)
},
)
source_archive_regex
:
re
.
Pattern
=
dataclasses
.
field
(
default
=
None
,
metadata
=
{
"description"
:
"Regular expression pattern to match files in the directory listing."
},
)
ignored_files_and_dir
:
List
[
str
]
=
dataclasses
.
field
(
default_factory
=
list
,
metadata
=
{
"description"
:
"List of files and directories to ignore in the directory listing."
},
)
@
classmethod
def
get_package_info
(
cls
,
package_url
):
if
cls
.
is_nested
:
yield
from
extract_package_from_nested_listing
(
package_url
,
cls
.
source_url
,
cls
.
source_archive_regex
,
cls
.
ignored_files_and_dir
,
)
else
:
yield
from
extract_packages_from_listing
(
package_url
,
cls
.
source_url
,
cls
.
source_archive_regex
,
cls
.
ignored_files_and_dir
,
)
# The udhcp is no longer maintained as a standalone project.
# It has been fully integrated into busybox.
class
UdhcpDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://web.archive.org/web/20021209021312/http://udhcp.busybox.net/source/"
@
classmethod
def
get_package_info
(
cls
,
package_url
):
version
=
package_url
.
version
if
version
and
version
in
UDHCP_RELEASES
:
archive
=
UDHCP_RELEASES
[
version
]
yield
Package
(
homepage_url
=
cls
.
source_url
,
download_url
=
archive
[
"url"
],
release_date
=
archive
[
"date"
],
**
package_url
.
to_dict
(),
)
else
:
for
version
,
data
in
UDHCP_RELEASES
.
items
():
purl
=
PackageURL
(
type
=
"generic"
,
name
=
"udhcp"
,
version
=
version
)
yield
Package
(
homepage_url
=
cls
.
source_url
,
download_url
=
data
[
"url"
],
release_date
=
data
[
"date"
],
**
purl
.
to_dict
(),
)
class
IpkgDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
(
"https://web.archive.org/web/20090326020239/http://handhelds.org/download/packages/ipkg/"
)
is_nested
=
False
source_archive_regex
=
re
.
compile
(
r"^(ipkg[-_])(?P<version>[\w.-]*)(_arm.ipk|.tar.gz)$"
)
ignored_files_and_dir
=
[]
@
classmethod
def
get_package_info
(
cls
,
package_url
):
version
=
package_url
.
version
if
version
and
version
in
IPKG_RELEASES
:
archive
=
IPKG_RELEASES
[
version
]
yield
Package
(
homepage_url
=
cls
.
source_url
,
download_url
=
archive
[
"url"
],
release_date
=
archive
[
"date"
],
**
package_url
.
to_dict
(),
)
else
:
for
version
,
data
in
IPKG_RELEASES
.
items
():
purl
=
PackageURL
(
type
=
"generic"
,
name
=
"ipkg"
,
version
=
version
)
yield
Package
(
homepage_url
=
cls
.
source_url
,
download_url
=
data
[
"url"
],
release_date
=
data
[
"date"
],
**
purl
.
to_dict
(),
)
class
UtilLinuxDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/"
is_nested
=
True
# Source archive ex: util-linux-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(util-linux-|util-linux-ng-)(?P<version>[\w.-]*)(.tar.gz)$"
)
ignored_files_and_dir
=
[]
class
BusyBoxDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://www.busybox.net/downloads/"
# Source archive ex: busybox-1.2.3.tar.bz2
source_archive_regex
=
re
.
compile
(
r"^(busybox-)(?P<version>[\w.-]*)(.tar.bz2)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
UclibcDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://www.uclibc.org/downloads/"
# Source archive ex: uClibc-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(uClibc-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
UclibcNGDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://downloads.uclibc-ng.org/releases/"
# Source archive ex: uClibc-ng-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(uClibc-ng-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
True
ignored_files_and_dir
=
[]
class
Bzip2DirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://sourceware.org/pub/bzip2/"
# Source archive ex: bzip2-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(bzip2-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
OpenSSHDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/"
# Source archive ex: openssh-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(openssh-)(?P<version>[\w.-]*)(.tgz|.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
DnsmasqDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://thekelleys.org.uk/dnsmasq/"
# Source archive ex: dnsmasq-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(dnsmasq-)(?P<version>[\w.-]*)(.tar.xz|.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
EbtablesDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://www.netfilter.org/pub/ebtables/"
# Source archive ex: ebtables-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(ebtables-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
HostapdDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://w1.fi/releases/"
# Source archive ex: hostapd-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(hostapd-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
Iproute2DirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://mirrors.edge.kernel.org/pub/linux/utils/net/iproute2/"
source_archive_regex
=
re
.
compile
(
# Source archive ex: iproute2-1.2.3.tar.gz
r"^(iproute2-)(?P<version>[\w.-]*)(.tar.xz|.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
IptablesDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://www.netfilter.org/pub/iptables/"
# Source archive ex: iptables-1.2.3.tar.bz2
source_archive_regex
=
re
.
compile
(
r"^(iptables-)(?P<version>[\w.-]*)(.tar.bz2)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
LibnlDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://www.infradead.org/~tgr/libnl/files/"
# Source archive ex: libnl-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(libnl-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
LighttpdDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://download.lighttpd.net/lighttpd/releases-1.4.x/"
# Source archive ex: lighttpd-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(lighttpd-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
NftablesDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://www.netfilter.org/pub/nftables/"
# Source archive ex: nftables-1.2.3.tar.bz2
source_archive_regex
=
re
.
compile
(
r"^(nftables-)(?P<version>[\w.-]*)(.tar.xz|.tar.bz2)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
WpaSupplicantDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://w1.fi/releases/"
# Source archive ex: wpa_supplicant-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(wpa_supplicant-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
SyslinuxDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://mirrors.edge.kernel.org/pub/linux/utils/boot/syslinux/"
# Source archive ex: syslinux-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(syslinux-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
SyslinuxDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://mirrors.edge.kernel.org/pub/linux/utils/boot/syslinux/"
# Source archive ex: syslinux-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(syslinux-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
ToyboxDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"http://www.landley.net/toybox/downloads/"
# Source archive ex: toybox-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(toybox-)(?P<version>[\w.-]*)(.tar.gz|.tar.bz2)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
DropbearDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://matt.ucc.asn.au/dropbear/releases/"
# Source archive ex: dropbear-1.2.3.tar.bz2
source_archive_regex
=
re
.
compile
(
r"^(dropbear-)(?P<version>[\w.-]*)(.tar.bz2|_i386.deb)$"
)
is_nested
=
False
ignored_files_and_dir
=
[
"dropbear-0.44test1.tar.bz2"
,
"dropbear-0.44test1.tar.gz"
,
"dropbear-0.44test2.tar.bz2"
,
"dropbear-0.44test2.tar.gz"
,
"dropbear-0.44test3.tar.bz2"
,
"dropbear-0.44test3.tar.gz"
,
"dropbear-0.44test4.tar.bz2"
,
"dropbear-0.44test4.tar.gz"
,
]
class
SambaDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://download.samba.org/pub/samba/stable/"
# Source archive ex: samba-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(samba-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
MtdUtilsDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://infraroot.at/pub/mtd/"
# Source archive ex: mtd-utils-1.2.3.tar.bz2
source_archive_regex
=
re
.
compile
(
r"^(mtd-utils-)(?P<version>[\w.-]*)(.tar.bz2)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
BareboxDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://www.barebox.org/download/"
# Source archive ex: barebox-1.2.3.tar.bz2
source_archive_regex
=
re
.
compile
(
r"^(barebox-)(?P<version>[\w.-]*)(.tar.bz2)$"
)
is_nested
=
False
ignored_files_and_dir
=
[]
class
LinuxDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://mirrors.edge.kernel.org/pub/linux/kernel/"
# Source archive ex: linux-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(linux-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
True
ignored_files_and_dir
=
[
"Historic/"
,
"SillySounds/"
,
"crypto/"
,
"firmware/"
,
"next/"
,
"people/"
,
"ports/"
,
"projects/"
,
"testing/"
,
"tools/"
,
"uemacs/"
,
]
class
E2fsprogsDirectoryListedSource
(
DirectoryListedSource
):
source_url
=
"https://mirrors.edge.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/"
# Source archive ex: e2fsprogs-1.2.3.tar.gz
source_archive_regex
=
re
.
compile
(
r"^(e2fsprogs-)(?P<version>[\w.-]*)(.tar.gz)$"
)
is_nested
=
True
ignored_files_and_dir
=
[
"testing/"
]
DIR_SUPPORTED_PURLS
=
[
"pkg:generic/busybox.*"
,
"pkg:generic/bzip2.*"
,
"pkg:generic/dnsmasq.*"
,
"pkg:generic/dropbear.*"
,
"pkg:generic/ebtables.*"
,
"pkg:generic/hostapd.*"
,
"pkg:generic/iproute2.*"
,
"pkg:generic/iptables.*"
,
"pkg:generic/libnl.*"
,
"pkg:generic/lighttpd.*"
,
"pkg:generic/nftables.*"
,
"pkg:generic/openssh.*"
,
"pkg:generic/samba.*"
,
"pkg:generic/syslinux.*"
,
"pkg:generic/toybox.*"
,
"pkg:generic/uclibc"
,
"pkg:generic/uclibc@.*"
,
"pkg:generic/uclibc-ng.*"
,
"pkg:generic/util-linux.*"
,
"pkg:generic/wpa_supplicant.*"
,
"pkg:generic/ipkg.*"
,
"pkg:generic/mtd-utils.*"
,
"pkg:generic/barebox.*"
,
"pkg:generic/linux.*"
,
"pkg:generic/e2fsprogs.*"
,
"pkg:generic/udhcp.*"
,
]
DIR_LISTED_SOURCE_BY_PACKAGE_NAME
=
{
"busybox"
:
BusyBoxDirectoryListedSource
,
"bzip2"
:
Bzip2DirectoryListedSource
,
"dnsmasq"
:
DnsmasqDirectoryListedSource
,
"dropbear"
:
DropbearDirectoryListedSource
,
"ebtables"
:
EbtablesDirectoryListedSource
,
"hostapd"
:
HostapdDirectoryListedSource
,
"iproute2"
:
Iproute2DirectoryListedSource
,
"iptables"
:
IptablesDirectoryListedSource
,
"libnl"
:
LibnlDirectoryListedSource
,
"lighttpd"
:
LighttpdDirectoryListedSource
,
"nftables"
:
NftablesDirectoryListedSource
,
"openssh"
:
OpenSSHDirectoryListedSource
,
"samba"
:
SambaDirectoryListedSource
,
"syslinux"
:
SyslinuxDirectoryListedSource
,
"toybox"
:
ToyboxDirectoryListedSource
,
"uclibc"
:
UclibcDirectoryListedSource
,
"uclibc-ng"
:
UclibcNGDirectoryListedSource
,
"util-linux"
:
UtilLinuxDirectoryListedSource
,
"wpa_supplicant"
:
WpaSupplicantDirectoryListedSource
,
"ipkg"
:
IpkgDirectoryListedSource
,
"mtd-utils"
:
MtdUtilsDirectoryListedSource
,
"barebox"
:
BareboxDirectoryListedSource
,
"linux"
:
LinuxDirectoryListedSource
,
"e2fsprogs"
:
E2fsprogsDirectoryListedSource
,
"udhcp"
:
UdhcpDirectoryListedSource
,
}
@
router
.
route
(
*
DIR_SUPPORTED_PURLS
)
def
get_htmllisting_data_from_purl
(
purl
):
"""Generate `Package` object from the `purl` having directory listed source"""
package_url
=
PackageURL
.
from_string
(
purl
)
return
DIR_LISTED_SOURCE_BY_PACKAGE_NAME
[
package_url
.
name
].
get_package_info
(
package_url
)
def
get_packages_from_listing
(
purl
,
source_archive_url
,
regex
,
ignored_files_and_dir
):
"""
Return list of package data from a directory listing based on the specified regex.
"""
_
,
listing
=
htmllistparse
.
fetch_listing
(
source_archive_url
)
packages
=
[]
for
file
in
listing
:
match
=
regex
.
match
(
file
.
name
)
if
not
match
or
file
.
name
in
ignored_files_and_dir
:
continue
version
=
match
.
group
(
"version"
)
version
=
version
.
strip
(
"v"
).
strip
()
if
not
version
or
not
version
[
0
].
isdigit
():
continue
modified_time
=
file
.
modified
date
=
time
.
strftime
(
"%Y-%m-%dT%H:%M:%S"
,
modified_time
)
download_url
=
urljoin
(
source_archive_url
,
file
.
name
)
package_url
=
PackageURL
(
type
=
purl
.
type
,
namespace
=
purl
.
namespace
,
name
=
purl
.
name
,
version
=
version
,
)
packages
.
append
(
Package
(
homepage_url
=
source_archive_url
,
download_url
=
download_url
,
release_date
=
date
,
**
package_url
.
to_dict
(),
)
)
return
packages
def
extract_packages_from_listing
(
purl
,
source_archive_url
,
regex
,
ignored_files_and_dir
):
"""
Yield package data from a directory listing for the given source_archive_url.
"""
for
package
in
get_packages_from_listing
(
purl
,
source_archive_url
,
regex
,
ignored_files_and_dir
):
# Don't yield all packages when a specific version is requested.
if
purl
.
version
and
package
.
version
!=
purl
.
version
:
continue
yield
package
# If a version is specified in purl and we have found a matching package,
# we don't need to continue searching.
if
purl
.
version
:
break
def
extract_package_from_nested_listing
(
purl
,
source_url
,
regex
,
ignored_files_and_dir
):
"""
Yield package data from a nested directory listing for the given source_url.
"""
_
,
listing
=
htmllistparse
.
fetch_listing
(
source_url
)
for
directory
in
listing
:
if
not
directory
.
name
.
endswith
(
"/"
)
or
directory
.
name
in
ignored_files_and_dir
:
continue
directory_url
=
urljoin
(
source_url
,
directory
.
name
)
for
package
in
get_packages_from_listing
(
purl
,
directory_url
,
regex
,
ignored_files_and_dir
):
# Don't yield all packages when a specific version is requested.
if
purl
.
version
and
package
.
version
!=
purl
.
version
:
continue
yield
package
# If a version is specified in purl and we have found a matching package,
# we don't need to continue searching.
if
purl
.
version
:
return
Back
|
FazBrowse Home
|
New Git URL