abb4fd75c9
Now that the governance resolution to allow teams to host meetings in their channels [1] has merged and all defined channels have a meetbot[2] get the valid channel list from infra's canonical source. [1] I631e2597bf818c5e4b2f813da14764d2cb55d0ce [2] I6a8a1cedd8a83e3e856e8df4aba4d0a584912eb0 Change-Id: I09e4fc07c486905a55ef06604b05493532175bf5
70 lines
2.2 KiB
Python
Executable File
70 lines
2.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# 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.
|
|
|
|
from __future__ import print_function
|
|
|
|
import argparse
|
|
import requests
|
|
import yaml
|
|
|
|
from yaml2ical import meeting
|
|
|
|
ACCESSBOT_YAML_URL = ('http://git.openstack.org/cgit/'
|
|
'openstack-infra/project-config/'
|
|
'plain/accessbot/channels.yaml')
|
|
|
|
|
|
# FIXME*tonyb): Extend this to ensure the channel has a meetbot.
|
|
# Right now this is true as the meetbots are in the globals but it could
|
|
# change.
|
|
def get_channels():
|
|
req = requests.get(ACCESSBOT_YAML_URL)
|
|
if req.status_code != 200:
|
|
raise SystemError('Unable to retrieve accessbot config. Aborting!')
|
|
accessbot = yaml.safe_load(req.text)
|
|
return set([x['name'] for x in accessbot['channels']])
|
|
|
|
|
|
def main():
|
|
# build option parser:
|
|
description = """
|
|
A tool that checks if the IRC channel happens in is capable of running a
|
|
fully functional MeetBot.
|
|
"""
|
|
|
|
parser = argparse.ArgumentParser(
|
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
description=description)
|
|
|
|
parser.add_argument("-y", "--yamldir",
|
|
dest="yaml_dir",
|
|
required=True,
|
|
help="directory containing YAML to process")
|
|
|
|
args = parser.parse_args()
|
|
channels = get_channels()
|
|
meetings = meeting.load_meetings(args.yaml_dir)
|
|
for m in meetings:
|
|
for s in m.schedules:
|
|
if s.freq == 'adhoc':
|
|
continue
|
|
if s.irc not in channels:
|
|
raise ValueError(("%s: IRC channel: %s not in (%s)") %
|
|
(s.filefrom, s.irc,
|
|
', '.join(channels)))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|