def register_api_keys(addon_id, api_key, client_id, client_secret): """ Usage: addon.xml --- <import addon="plugin.video.youtube" version="6.0.0"/> --- .py --- import youtube_registration youtube_registration.register_api_keys(addon_id='plugin.video.example', api_key='A1zaSyA0b5sTjgxzTzYLmVtradlFVBfSHNOJKS0', client_id='825419953561-ert5tccq1r0upsuqdf5nm3le39czk23a.apps.googleusercontent.com', client_secret='Y5cE1IKzJQe1NZ0OsOoEqpu3') # then use your keys by appending an addon_id param to the plugin url xbmc.executebuiltin('RunPlugin(plugin://plugin.video.youtube/channel/UCaBf1a-dpIsw8OxqH4ki2Kg/?addon_id=plugin.video.example)') # addon_id will be passed to all following calls --- :param addon_id: id of the add-on being registered :param api_key: YouTube Data v3 API key :param client_id: YouTube Data v3 Client id :param client_secret: YouTube Data v3 Client secret """ context = Context(plugin_id='plugin.video.youtube') if not addon_id or addon_id == 'plugin.video.youtube': context.log_error('Register API Keys: |%s| Invalid addon_id' % addon_id) return api_jstore = APIKeyStore(context) json_api = api_jstore.load() jkeys = json_api['keys']['developer'].get(addon_id, {}) api_keys = { 'origin': addon_id, 'main': { 'system': 'JSONStore', 'key': b64encode(api_key), 'id': b64encode(client_id), 'secret': b64encode(client_secret) } } if jkeys and jkeys == api_keys: context.log_debug('Register API Keys: |%s| No update required' % addon_id) else: json_api['keys']['developer'][addon_id] = api_keys api_jstore.save(json_api) context.log_debug('Register API Keys: |%s| Keys registered' % addon_id)
def __add_new_developer(addon_id): """ :param addon_id: id of the add-on being added :return: """ params = {'addon_id': addon_id} context = Context(params=params, plugin_id='plugin.video.youtube') access_manager = context.get_access_manager() developers = access_manager.get_developers() if not developers.get(addon_id, None): developers[addon_id] = access_manager.get_new_developer() access_manager.set_developers(developers) context.log_debug('Creating developer user: |%s|' % addon_id)
__author__ = 'bromix' from datetime import datetime import time from youtube_plugin.kodion.impl import Context from youtube_plugin.kodion.constants import setting from youtube_plugin.kodion.utils import YouTubeMonitor, YouTubePlayer context = Context(plugin_id='plugin.video.youtube') context.log_debug('YouTube settings startup initialization...') version = context.get_system_version().get_version() settings = context.get_settings() mpd_addon = False if version >= (17, 0): mpd_addon = True else: settings.set_bool(setting.USE_DASH, False) settings.set_bool(setting.DASH_SUPPORT_ADDON, mpd_addon) context.log_notice('Startup: detected {0}, DASH_SUPPORT_ADDON = {1}'.format( context.get_system_version(), mpd_addon)) def strptime(stamp, stamp_fmt): import _strptime try: time.strptime('01 01 2012', '%d %m %Y') # dummy call