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
|
# Copyright (c) 2018, Ansible Project
from ansiblelint import AnsibleLintRule
import re
import six
class MetaVideoLinksRule(AnsibleLintRule):
id = '704'
shortdesc = "meta/main.yml video_links should be formatted correctly"
description = (
'Items in ``video_links`` in meta/main.yml should be '
'dictionaries, and contain only keys ``url`` and ``title``, '
'and have a shared link from a supported provider'
)
severity = 'LOW'
tags = ['metadata']
version_added = 'v4.0.0'
VIDEO_REGEXP = {
'google': re.compile(
r'https://drive.google.com.*file/d/([0-9A-Za-z-_]+)/.*'),
'vimeo': re.compile(
r'https://vimeo.com/([0-9]+)'),
'youtube': re.compile(
r'https://youtu.be/([0-9A-Za-z-_]+)'),
}
def matchplay(self, file, data):
if file['type'] != 'meta':
return False
galaxy_info = data.get('galaxy_info', None)
if not galaxy_info:
return False
video_links = galaxy_info.get('video_links', None)
if not video_links:
return False
results = []
for video in video_links:
if not isinstance(video, dict):
results.append(({'meta/main.yml': data},
"Expected item in 'video_links' to be "
"a dictionary"))
continue
if set(video) != {'url', 'title', '__file__', '__line__'}:
results.append(({'meta/main.yml': data},
"Expected item in 'video_links' to contain "
"only keys 'url' and 'title'"))
continue
for name, expr in six.iteritems(self.VIDEO_REGEXP):
if expr.match(video['url']):
break
else:
msg = ("URL format '{0}' is not recognized. "
"Expected it be a shared link from Vimeo, YouTube, "
"or Google Drive.".format(video['url']))
results.append(({'meta/main.yml': data}, msg))
return results
|