Beispiel #1
0
    def ranking_locale(self, locale):
        category = int(request.args.get('category', 0))
        search = request.args.get('search')

        toggle_locale = {'en-us': 'en-gb', 'en-gb': 'en-us'}.get(locale)
        ctx = {
            'locale_base': self.url + '/locale/' + locale + '/',
            'locale_toggle_name': toggle_locale,
            'locale_toggle': self.url + '/locale/' + toggle_locale + '/',
            'categories': category_list(),
            'image_cdn': app.config['IMAGE_CDN'],
            'category': category,
            'locale': locale,
            'search_term': request.args.get('search', 'Search for a user')}

        if category == 0:
            category = None

        u = UserSearch()
        offset, limit = request.args.get('start', 0), request.args.get('size', 20)
        u.set_paging(offset, limit)
        if search:
            u.add_text('username', search)
        else:
            u.filter_category(category)
            u.promotion_settings(category)
        processed_users = u.users(include_promo=True)

        ctx['users'] = []

        # loop once to get the raw data
        raw_users = {}

        for user in u.results():
            print user
            u = {}
            u['id'] = user.id
            u['username'] = user.username
            u['explanation'] = user.__dict__['_meta']['explanation']
            u['profile_cover_url'] = user.profile_cover_url
            u['avatar_thumbnail_url'] = user.avatar_thumbnail_url
            u['description'] = user.description
            u['promotion'] = user.promotion
            u['normalised_rank'] = user.normalised_rank
            u['category'] = user.category
            u['brand'] = user.brand
            raw_users[user.id] = u

        # loop again to get the correct order
        for user in processed_users:
            u = raw_users[user['id']]
            promo_string = '|'.join([locale, str(category or 0), str(user['position'] + 1)])
            u['promoted'] = False
            if u.get('promotion', []) and promo_string in u.get('promotion', []):
                u['promoted'] = True
            ctx['users'].append(u)

        return self.render('admin/user_ranking.html', **ctx)
Beispiel #2
0
    def ranking_locale(self, locale):
        category = int(request.args.get('category', 0))
        search = request.args.get('search')

        toggle_locale = {'en-us': 'en-gb', 'en-gb': 'en-us'}.get(locale)
        ctx = {
            'locale_base': self.url + '/locale/' + locale + '/',
            'locale_toggle_name': toggle_locale,
            'locale_toggle': self.url + '/locale/' + toggle_locale + '/',
            'categories': category_list(),
            'image_cdn': app.config['IMAGE_CDN'],
            'category': category,
            'locale': locale,
            'search_term': request.args.get('search', 'Search for a channel')}

        if category == 0:
            category = None

        cs = ChannelSearch(locale)
        offset, limit = request.args.get('start', 0), request.args.get('size', 20)
        cs.set_paging(offset, limit)
        if search:
            cs.add_text('title', search)
        else:
            cs.add_filter(filters.boost_from_field_value('editorial_boost'))
            cs.add_filter(filters.channel_rank_boost(locale))
            cs.add_filter(filters.negatively_boost_favourites())
            cs.filter_category(category)
            cs.promotion_settings(category)
        processed_channels = cs.channels(with_owners=True)

        ctx['channels'] = []

        # loop once to get the raw data
        raw_channels = {}
        for channel in cs.results():
            c = {}
            c['id'] = channel.id
            c['title'] = channel.title
            c['editorial_boost'] = channel.editorial_boost
            try:
                c['date_added'] = channel.date_added[:10]
            except TypeError:
                c['date_added'] = channel.date_added.isoformat()[:10]
            c['cover_thumbnail_large_url'] = channel.cover_thumbnail_large_url
            c['explanation'] = channel.__dict__['_meta']['explanation']
            c['subscriber_frequency'] = channel.subscriber_frequency
            c['subscriber_count'] = channel.subscriber_count
            c['video_update_frequency'] = channel.update_frequency
            c['subscriber_count'] = channel.subscriber_count
            c['promotion'] = channel.promotion
            c['gbcount'] = channel.locales['en-gb']['view_count']
            c['uscount'] = channel.locales['en-us']['view_count']
            c['normalised_rank'] = channel.normalised_rank
            raw_channels[channel.id] = c

        # loop again to get the correct order
        for channel in processed_channels:
            c = raw_channels[channel['id']]
            promo_string = '|'.join([locale, str(category or 0), str(channel['position'] + 1)])
            c['promoted'] = False
            if c.get('promotion', []) and promo_string in c.get('promotion', []):
                c['promoted'] = True
            ctx['channels'].append(c)

        return self.render('admin/ranking.html', **ctx)