2019-12-14 04:48:39 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
2019-12-14 05:30:37 +00:00
|
|
|
|
2019-12-14 04:48:39 +00:00
|
|
|
from hosting.models import (
|
2019-12-14 05:30:37 +00:00
|
|
|
HostingOrder, VMDetail
|
2019-12-14 04:48:39 +00:00
|
|
|
)
|
2019-12-14 05:30:37 +00:00
|
|
|
from membership.models import CustomUser
|
|
|
|
|
2019-12-14 04:48:39 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
help = '''Dumps the email addresses of all customers who have a VM'''
|
|
|
|
|
|
|
|
def add_arguments(self, parser):
|
|
|
|
parser.add_argument('-a', '--all_registered', action='store_true',
|
|
|
|
help='All registered users')
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
all_registered = options['all_registered']
|
|
|
|
all_customers_set = set()
|
|
|
|
if all_registered:
|
|
|
|
all_customers = CustomUser.objects.filter(
|
|
|
|
is_admin=False, validated=True
|
|
|
|
)
|
|
|
|
for customer in all_customers:
|
|
|
|
all_customers_set.add(customer.email)
|
|
|
|
else:
|
2019-12-14 05:22:20 +00:00
|
|
|
all_hosting_orders = HostingOrder.objects.filter()
|
|
|
|
running_vm_details = VMDetail.objects.filter(terminated_at=None)
|
|
|
|
running_vm_ids = [rvm.vm_id for rvm in running_vm_details]
|
2019-12-14 04:48:39 +00:00
|
|
|
for order in all_hosting_orders:
|
2019-12-14 05:22:20 +00:00
|
|
|
if order.vm_id in running_vm_ids:
|
|
|
|
all_customers_set.add(order.customer.user.email)
|
|
|
|
for cu in all_customers_set:
|
|
|
|
print(cu)
|
2019-12-14 05:26:14 +00:00
|
|
|
if all_registered:
|
|
|
|
print("All registered users = %s" % len(all_customers_set))
|
|
|
|
else:
|
|
|
|
print("Total active customers = %s" % len(all_customers_set))
|