コード例 #1
0
    def lookup(self, uri):
        logger.debug('RadioBrowser: Start backend.RadioBrowserLibrary.lookup')

        variant, identifier = translator.parse_uri(uri)
        if variant != 'station':
            return []
        station = self.backend.radiobrowser.getStation(identifier)
        if not station:
            return []

        track = translator.station_to_track(station)
        return [track]
コード例 #2
0
    def get_images(self, uris):
        logger.debug('RadioBrowser: Start backend.RadioBrowserLibrary.get_images')

        result = {}
        for uri in uris:
            variant, identifier = translator.parse_uri(uri)
            if variant != 'station':
                continue

            station = self.backend.radiobrowser.getStation(identifier)
            if not station:
                continue
            
            result[uri] = [Image(uri=station.get('favicon'))]
        return result
コード例 #3
0
    def lookup(self, uri):

        # Check to see if uri is a station example - radiobrowser:station:961aeb3b-0601-11e8-ae97-52543be04c81
        logger.debug(
            'RadioBrowser: Start backend.RadioBrowserLibrary.lookup: ' + uri)
        variant, identifier = translator.parse_uri(uri)
        if variant != 'station':
            return []

        station = self.backend.radiobrowser.getStation(identifier)
        if not station:
            return []

        track = translator.station_to_track(station)
        return [track]
コード例 #4
0
    def translate_uri(self, uri):
        logger.debug('RadioBrowser: Start backend.RadioBrowserPlayback.translate_uri')

        identifier = translator.parse_uri(uri)
        if identifier[0] == 'station':
            station = self.backend.radiobrowser.getStation(identifier[1])
        else:
            station = self.backend.radiobrowser.getStation(identifier[0])
        if not station:
            return None
        stream_uris = self.backend.radiobrowser.tune(station)
        while stream_uris:
            uri = stream_uris.pop(0)
            logger.debug('RadioBrowser: Looking up URI: %s.' % uri)
            if uri:
                return uri
        logger.debug('RadioBrowser: RadioBrowser lookup failed.')
        return None
コード例 #5
0
    def browse(self, uri):
        logger.debug('RadioBrowser: Start backend.RadioBrowserLibrary.browse')

        result = []
        variant, identifier = translator.parse_uri(uri)
        logger.debug('RadioBrowser: Browsing %s' % uri)
        if variant == 'root':
            # root list: all categies
            for category in self.backend.radiobrowser.getCategories():
                result.append(translator.category_to_ref(category))
        elif "category" == variant:
            if "countries" == identifier:
                countries = self.backend.radiobrowser.browseCategory(identifier)
                for country in countries:
                    translator.country_add_name(country)
                for country in sorted(countries, key = lambda i: i['translated_name']):
                    ret = self.backend.radiobrowser.addCountry(country)
                    if True == ret:
                        result.append(translator.country_to_ref(country))
            elif "languages" == identifier:
                languages = self.backend.radiobrowser.browseCategory(identifier)
                for language in languages:
                    ret = self.backend.radiobrowser.addLanguage(language)
                    if True == ret:
                        result.append(translator.language_to_ref(language))
            elif "tags" == identifier:
                tags = self.backend.radiobrowser.browseCategory(identifier)
                for tag in tags:
                    ret = self.backend.radiobrowser.addTag(tag)
                    if True == ret:
                        result.append(translator.tag_to_ref(tag))
            elif "clicks" == identifier:
                stations = self.backend.radiobrowser.browseCategory(identifier)
                for station in stations:
                    ret = self.backend.radiobrowser.addStation(station)
                    if True == ret:
                        result.append(translator.station_to_ref(station))
            elif "votes" == identifier:
                stations = self.backend.radiobrowser.browseCategory(identifier)
                for station in stations:
                    ret = self.backend.radiobrowser.addStation(station)
                    if True == ret:
                        result.append(translator.station_to_ref(station))
            else:
                logger.debug('RadioBrowser: Unknown URI: %s', uri)
        elif variant == "tag" and identifier:
            tag = self.backend.radiobrowser.getTag(identifier)
            stations = self.backend.radiobrowser.stations(tag)
            for station in stations:
                self.backend.radiobrowser.addStation(station)
                result.append(translator.station_to_ref(station))
        elif variant == "language" and identifier:
            language = self.backend.radiobrowser.getLanguage(identifier)
            stations = self.backend.radiobrowser.stations(language)
            for station in stations:
                self.backend.radiobrowser.addStation(station)
                result.append(translator.station_to_ref(station))
        elif variant == "country" and identifier:
            country = self.backend.radiobrowser.getCountry(identifier)
            states = self.backend.radiobrowser.browseDirectory(country)
            emptyState = {
                'name': country['a2'],
                'country': country['a2'],
                'stationcount' : 1
                }
            states.append(emptyState)
            for state in states:
                ret = self.backend.radiobrowser.addState(state)
                if True == ret:
                    result.append(translator.state_to_ref(state))
        elif variant == "state" and identifier:
            state = self.backend.radiobrowser.getState(identifier)
            stations = self.backend.radiobrowser.stations(state)
            for station in stations:
                if (state['name'] == state['country']):
                    if ('' == station['state']):
                        continue
                self.backend.radiobrowser.addStation(station)
                result.append(translator.station_to_ref(station))
        else:
            logger.debug('RadioBrowser: Unknown URI: %s', uri)

        return result