-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Companies: new command to create them interactively
- Loading branch information
Showing
1 changed file
with
86 additions
and
0 deletions.
There are no files selected for viewing
86 changes: 86 additions & 0 deletions
86
lemarche/companies/management/commands/create_companies.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import operator | ||
from functools import reduce | ||
|
||
from django.db.models import Q | ||
|
||
from lemarche.companies.models import Company | ||
from lemarche.users.models import User | ||
|
||
# from lemarche.utils.apis import api_slack | ||
from lemarche.utils.commands import BaseCommand | ||
|
||
|
||
GENERIC_EMAIL_DOMAIN_SUFFIX_LIST = [ | ||
"gmail.com", | ||
"orange.fr", | ||
"wanadoo.fr", | ||
"hotmail.fr", | ||
"hotmail.com", | ||
"live.fr", | ||
"yahoo.fr", | ||
"yahoo.com", | ||
"outlook.fr", | ||
"outlook.com", | ||
"laposte.net", | ||
"free.fr", | ||
"sfr.fr", | ||
"icloud.com", | ||
"yandex.com", | ||
"msn.com", | ||
"cegetel.net", | ||
"bbox.fr", | ||
"yopmail.com", | ||
"neuf.fr", | ||
"numericable.fr", | ||
"gmx.fr", | ||
"googlemail.com", | ||
] | ||
|
||
|
||
class Command(BaseCommand): | ||
""" | ||
Usage: | ||
- poetry run python manage.py create_companies | ||
""" | ||
|
||
def handle(self, *args, **options): | ||
self.stdout_info("-" * 80) | ||
|
||
user_buyer_without_company = User.objects.filter(kind="BUYER", company_id__isnull=True) | ||
self.stdout_info(f"Users without company: {user_buyer_without_company.count()}") | ||
user_buyer_without_company_with_tender = user_buyer_without_company.filter(tenders__isnull=False) | ||
self.stdout_info(f"Users without company with tender: {user_buyer_without_company_with_tender.count()}") | ||
|
||
user_qs = ( | ||
user_buyer_without_company.filter( | ||
reduce(operator.and_, (~Q(email__endswith=x) for x in GENERIC_EMAIL_DOMAIN_SUFFIX_LIST)) | ||
) | ||
.exclude(company_name__icontains="particulier") | ||
.exclude(company_name="") | ||
) | ||
self.stdout_info(f"Users final queryset (extra filtering): {user_qs.count()}") | ||
companies_created = 0 | ||
|
||
for user in user_qs: | ||
user_email_suffix = user.email.split("@")[1] | ||
# check that no company already exist | ||
company_qs = Company.objects.filter(email_domain_list__contains=[user_email_suffix]) | ||
if not company_qs.count(): | ||
result = input(f"Create company: {user_email_suffix} / {user.company_name} ? (y/n) ") | ||
if result == "y": | ||
company = Company.objects.create(name=user.company_name, email_domain_list=[user_email_suffix]) | ||
company.users.add(user) | ||
self.stdout_info(f"Company created for {user_email_suffix}") | ||
companies_created += 1 | ||
elif company_qs.count() == 1: | ||
company = company_qs.first() | ||
company.users.add(user) | ||
self.stdout_info(f"User added to existing company {company.name}") | ||
|
||
msg_success = [ | ||
"----- Create companies -----", | ||
f"Done! Processed {user_qs.count()} users without company", | ||
f"Created {companies_created} companies", | ||
] | ||
self.stdout_messages_success(msg_success) | ||
# api_slack.send_message_to_channel("\n".join(msg_success)) |