49 lines
2.2 KiB
Python
49 lines
2.2 KiB
Python
# myapp/management/commands/mycustomcommand.py
|
|
from django.core.management.base import BaseCommand
|
|
from tqdm import tqdm
|
|
from fwd_api.models import SubscriptionRequestFile, SubscriptionRequest
|
|
from fwd_api.exception.exceptions import InvalidException
|
|
from fwd_api.utils.accuracy import predict_result_to_ready
|
|
import traceback
|
|
import copy
|
|
from django.utils import timezone
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Refactor database for image level'
|
|
|
|
def add_arguments(self, parser):
|
|
# Add your command-line arguments here
|
|
parser.add_argument('start', type=str, help='start date, sample: 2023-01-02T00:00:00+0700')
|
|
parser.add_argument('end', type=str, help='end date, sample: 2024-01-25T00:00:00+0800')
|
|
|
|
def process_request(self, request):
|
|
# if not request.predict_result:
|
|
# self.stdout.write(self.style.WARNING(f"Key predict_result not found in {request.request_id}"))
|
|
# return
|
|
# if request.predict_result.get("status", 200) != 200:
|
|
# self.stdout.write(self.style.WARNING(f"Key predict_result not found in {request.request_id}"))
|
|
# return
|
|
|
|
if not request.feedback_result or not request.redemption_id:
|
|
request.is_test_request= True
|
|
request.save()
|
|
|
|
def handle(self, *args, **options):
|
|
start = options['start']
|
|
end = options['end']
|
|
|
|
if start or end:
|
|
try:
|
|
start_date = timezone.datetime.strptime(start, '%Y-%m-%dT%H:%M:%S%z') # We care only about day precision only
|
|
end_date = timezone.datetime.strptime(end, '%Y-%m-%dT%H:%M:%S%z')
|
|
except Exception as e:
|
|
print(f"[INFO]: start: {start}")
|
|
print(f"[INFO]: end: {end}")
|
|
raise InvalidException(excArgs="Date format")
|
|
subcription_iter = SubscriptionRequest.objects.filter(created_at__range=(start_date, end_date))
|
|
else:
|
|
subcription_iter = SubscriptionRequest.objects.all()
|
|
|
|
for request in tqdm(subcription_iter.iterator()):
|
|
self.process_request(request)
|
|
self.stdout.write(self.style.SUCCESS('Sample Django management command executed successfully!')) |