lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | #!/usr/bin/env python3 |
| 2 | # |
| 3 | # SPDX-License-Identifier: GPL-2.0-only |
| 4 | # |
| 5 | # This script can be used to verify HOMEPAGE values for all recipes in |
| 6 | # the current configuration. |
| 7 | # The result is influenced by network environment, since the timeout of connect url is 5 seconds as default. |
| 8 | |
| 9 | import sys |
| 10 | import os |
| 11 | import subprocess |
| 12 | import urllib.request |
| 13 | |
| 14 | |
| 15 | # Allow importing scripts/lib modules |
| 16 | scripts_path = os.path.abspath(os.path.dirname(os.path.realpath(__file__)) + '/..') |
| 17 | lib_path = scripts_path + '/lib' |
| 18 | sys.path = sys.path + [lib_path] |
| 19 | import scriptpath |
| 20 | import scriptutils |
| 21 | |
| 22 | # Allow importing bitbake modules |
| 23 | bitbakepath = scriptpath.add_bitbake_lib_path() |
| 24 | |
| 25 | import bb.tinfoil |
| 26 | |
| 27 | logger = scriptutils.logger_create('verify_homepage') |
| 28 | |
| 29 | def wgetHomepage(pn, homepage): |
| 30 | result = subprocess.call('wget ' + '-q -T 5 -t 1 --spider ' + homepage, shell = True) |
| 31 | if result: |
| 32 | logger.warning("%s: failed to verify HOMEPAGE: %s " % (pn, homepage)) |
| 33 | return 1 |
| 34 | else: |
| 35 | return 0 |
| 36 | |
| 37 | def verifyHomepage(bbhandler): |
| 38 | pkg_pn = bbhandler.cooker.recipecaches[''].pkg_pn |
| 39 | pnlist = sorted(pkg_pn) |
| 40 | count = 0 |
| 41 | checked = [] |
| 42 | for pn in pnlist: |
| 43 | for fn in pkg_pn[pn]: |
| 44 | # There's no point checking multiple BBCLASSEXTENDed variants of the same recipe |
| 45 | realfn, _, _ = bb.cache.virtualfn2realfn(fn) |
| 46 | if realfn in checked: |
| 47 | continue |
| 48 | data = bbhandler.parse_recipe_file(realfn) |
| 49 | homepage = data.getVar("HOMEPAGE") |
| 50 | if homepage: |
| 51 | try: |
| 52 | urllib.request.urlopen(homepage, timeout=5) |
| 53 | except Exception: |
| 54 | count = count + wgetHomepage(os.path.basename(realfn), homepage) |
| 55 | checked.append(realfn) |
| 56 | return count |
| 57 | |
| 58 | if __name__=='__main__': |
| 59 | with bb.tinfoil.Tinfoil() as bbhandler: |
| 60 | bbhandler.prepare() |
| 61 | logger.info("Start verifying HOMEPAGE:") |
| 62 | failcount = verifyHomepage(bbhandler) |
| 63 | logger.info("Finished verifying HOMEPAGE.") |
| 64 | logger.info("Summary: %s failed" % failcount) |