-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage_services.py
37 lines (32 loc) · 1020 Bytes
/
manage_services.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# pylint: disable=W1203
# pylint: disable=W0613
'''
ICE Gauntlet Token Server
'''
import os
import shutil
import json
import random
from threading import Timer
class ManageServices:
'''
Method without ice things to manage the new rooms
'''
def announce_catalog_service(self, service, id, dict_of_catalogs, dict_of_auth, dict_of_streams):
'''
Get specific room
'''
service.get_show_services(dict_of_catalogs, dict_of_auth, dict_of_streams)
def announce_streaming_service(self, service, id, dict_of_catalogs, dict_of_auth, dict_of_streams):
'''
Get specific room
'''
service.get_show_services(dict_of_catalogs, dict_of_auth, dict_of_streams)
def announce_auth_service(self, service, id, dict_of_catalogs, dict_of_auth, dict_of_streams):
'''
Get specific room
'''
service.get_show_services(dict_of_catalogs, dict_of_auth, dict_of_streams)