Update app-catalog link check job
This commit moves the propose-app-catalog-update job from experimental to periodic pipeline, as it will not run properly as an experimental job. Change-Id: I0b4e5ce398c0c8f019cd4f0cbefd0dd142a0dd92
This commit is contained in:
parent
7bea6edec5
commit
2a4f09673c
@ -15,10 +15,13 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
import yaml
|
|
||||||
import requests
|
import requests
|
||||||
from collections import OrderedDict
|
|
||||||
import requestsexceptions
|
import requestsexceptions
|
||||||
|
import yaml
|
||||||
|
|
||||||
|
|
||||||
|
from collections import OrderedDict
|
||||||
|
|
||||||
|
|
||||||
def project_representer(dumper, data):
|
def project_representer(dumper, data):
|
||||||
return dumper.represent_mapping('tag:yaml.org,2002:map',
|
return dumper.represent_mapping('tag:yaml.org,2002:map',
|
||||||
@ -82,6 +85,19 @@ class IndentedDumper(IndentedEmitter, yaml.serializer.Serializer,
|
|||||||
yaml.resolver.Resolver.__init__(self)
|
yaml.resolver.Resolver.__init__(self)
|
||||||
|
|
||||||
|
|
||||||
|
def get_hashes(hash_url):
|
||||||
|
hashes = {}
|
||||||
|
r = requests.get(hash_url, allow_redirects=True)
|
||||||
|
if r.status_code == 200:
|
||||||
|
for line in r.iter_lines():
|
||||||
|
try:
|
||||||
|
hash, file = line.split(" ")
|
||||||
|
except ValueError:
|
||||||
|
continue
|
||||||
|
hashes[file] = hash
|
||||||
|
return hashes
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
requestsexceptions.squelch_warnings()
|
requestsexceptions.squelch_warnings()
|
||||||
yaml.add_constructor(yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG,
|
yaml.add_constructor(yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG,
|
||||||
@ -94,14 +110,21 @@ def main():
|
|||||||
|
|
||||||
assets = []
|
assets = []
|
||||||
for a in data['assets']:
|
for a in data['assets']:
|
||||||
if not a.get('attributes', {}).get('active', True):
|
url = a.get('attributes', {}).get('url')
|
||||||
|
if not a.get('active', True) or not url:
|
||||||
assets.append(a)
|
assets.append(a)
|
||||||
continue
|
continue
|
||||||
url = a.get('attributes', {}).get('url')
|
|
||||||
if url:
|
|
||||||
r = requests.head(url, allow_redirects=True)
|
r = requests.head(url, allow_redirects=True)
|
||||||
if r.status_code != 200:
|
if r.status_code != 200:
|
||||||
a['attributes']['active'] = False
|
a['active'] = False
|
||||||
|
else:
|
||||||
|
hash_url = a.get('hash_url')
|
||||||
|
if hash_url:
|
||||||
|
hashes = get_hashes(hash_url)
|
||||||
|
filename = url.split("/")[-1]
|
||||||
|
a['attributes']['hash'] = hashes.get(filename, 'unknown')
|
||||||
|
|
||||||
assets.append(a)
|
assets.append(a)
|
||||||
|
|
||||||
output = {'assets': assets}
|
output = {'assets': assets}
|
||||||
|
@ -3709,7 +3709,7 @@ projects:
|
|||||||
- gate-app-catalog-npm-run-lint
|
- gate-app-catalog-npm-run-lint
|
||||||
gate:
|
gate:
|
||||||
- gate-app-catalog-npm-run-lint
|
- gate-app-catalog-npm-run-lint
|
||||||
experimental:
|
periodic:
|
||||||
- propose-app-catalog-update
|
- propose-app-catalog-update
|
||||||
|
|
||||||
- name: openstack/app-catalog-common
|
- name: openstack/app-catalog-common
|
||||||
|
Loading…
Reference in New Issue
Block a user