pandora/pandora/item/management/commands/update_external.py

38 lines
1.2 KiB
Python
Raw Normal View History

2011-10-29 14:13:14 +00:00
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
2016-02-18 10:49:26 +00:00
from __future__ import print_function
2011-10-29 14:13:14 +00:00
from optparse import make_option
from django.core.management.base import BaseCommand
2011-10-29 14:13:14 +00:00
import app.monkey_patch
2011-10-29 14:13:14 +00:00
from ... import models
class Command(BaseCommand):
"""
rebuild sort/search cache for all items.
"""
help = 'listen to rabbitmq and execute encoding tasks.'
args = ''
option_list = BaseCommand.option_list + (
make_option('--all', action='store_true', dest='all',
default=False, help='update all items, otherwise oldes N'),
make_option('-n', '--items', action='store', dest='items', type=int,
default=30, help='number of items ot update'),
)
def handle(self, **options):
offset = 0
chunk = options['all'] and 100 or options['items']
2014-09-19 12:26:46 +00:00
qs = models.Item.objects.exclude(public_id__startswith='0x')
2011-10-31 17:50:59 +00:00
count = pos = qs.count()
while (options['all'] and offset <= count) or offset < options['items']:
2016-02-18 10:49:26 +00:00
print(offset, pos, count)
for i in qs.order_by('modified')[:chunk]:
2016-02-18 10:49:26 +00:00
print(pos, i.public_id, i.modified)
2011-10-29 14:13:14 +00:00
i.update_external()
pos -= 1
offset += chunk