-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviews.py
571 lines (523 loc) · 21.5 KB
/
views.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
from django.db.models import Q
from opportunity.models import Opportunity
from opportunity.tasks import send_email_to_assigned_user
from opportunity import swagger_params
from opportunity.serializer import (
OpportunitySerializer,
OpportunityCreateSerializer,
)
from accounts.models import Account, Tags
from accounts.serializer import AccountSerializer, TagsSerailizer
from common.models import Attachments, Comment, Profile
from common.custom_auth import JSONWebTokenAuthentication
from common.serializer import (
ProfileSerializer,
CommentSerializer,
AttachmentsSerializer,
)
from common.utils import (
STAGES,
SOURCES,
CURRENCY_CODES,
)
from contacts.models import Contact
from contacts.serializer import ContactSerializer
from teams.models import Teams
from rest_framework import status
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework.permissions import IsAuthenticated
from rest_framework.pagination import LimitOffsetPagination
from drf_yasg.utils import swagger_auto_schema
import json
class OpportunityListView(APIView, LimitOffsetPagination):
authentication_classes = (JSONWebTokenAuthentication,)
permission_classes = (IsAuthenticated,)
model = Opportunity
def get_context_data(self, **kwargs):
params = (
self.request.query_params
if len(self.request.data) == 0
else self.request.data
)
queryset = self.model.objects.filter(
org=self.request.org).order_by('-id')
accounts = Account.objects.filter(org=self.request.org)
contacts = Contact.objects.filter(org=self.request.org)
if self.request.profile.role != "ADMIN" and not self.request.user.is_superuser:
queryset = queryset.filter(
Q(created_by=self.request.profile) | Q(
assigned_to=self.request.profile)
).distinct()
accounts = accounts.filter(
Q(created_by=self.request.profile) | Q(
assigned_to=self.request.profile)
).distinct()
contacts = contacts.filter(
Q(created_by=self.request.profile) | Q(
assigned_to=self.request.profile)
).distinct()
if params:
if params.get("name"):
queryset = queryset.filter(name__icontains=params.get("name"))
if params.get("account"):
queryset = queryset.filter(account=params.get("account"))
if params.get("stage"):
queryset = queryset.filter(stage__contains=params.get("stage"))
if params.get("lead_source"):
queryset = queryset.filter(
lead_source__contains=params.get("lead_source")
)
if params.get("tags"):
queryset = queryset.filter(
tags__in=json.loads(params.get("tags"))
).distinct()
context = {}
results_opportunities = self.paginate_queryset(
queryset.distinct(), self.request, view=self
)
opportunities = OpportunitySerializer(
results_opportunities, many=True).data
if results_opportunities:
offset = queryset.filter(
id__gte=results_opportunities[-1].id).count()
if offset == queryset.count():
offset = None
else:
offset = 0
context.update(
{
"opportunities_count": self.count,
"offset": offset,
}
)
context["opportunities"] = opportunities
context["accounts_list"] = AccountSerializer(accounts, many=True).data
context["contacts_list"] = ContactSerializer(contacts, many=True).data
context['tags'] = TagsSerailizer(Tags.objects.filter(),many=True).data
context["stage"] = STAGES
context["lead_source"] = SOURCES
context["currency"] = CURRENCY_CODES
return context
@swagger_auto_schema(
tags=["Opportunities"],
manual_parameters=swagger_params.opportunity_list_get_params,
)
def get(self, request, *args, **kwargs):
context = self.get_context_data(**kwargs)
return Response(context)
@swagger_auto_schema(
tags=["Opportunities"],
manual_parameters=swagger_params.opportunity_create_post_params,
)
def post(self, request, *args, **kwargs):
params = request.query_params if len(
request.data) == 0 else request.data
serializer = OpportunityCreateSerializer(
data=params, request_obj=request)
if serializer.is_valid():
opportunity_obj = serializer.save(
created_by=request.profile,
closed_on=params.get("due_date"),
org=request.org
)
if params.get("contacts"):
contacts_list = json.loads(params.get("contacts"))
contacts = Contact.objects.filter(
id__in=contacts_list, org=request.org
)
opportunity_obj.contacts.add(*contacts)
if params.get("tags"):
tags = json.loads(params.get("tags"))
for tag in tags:
obj_tag = Tags.objects.filter(slug=tag.lower())
if obj_tag.exists():
obj_tag = obj_tag[0]
else:
obj_tag = Tags.objects.create(name=tag)
opportunity_obj.tags.add(obj_tag)
if params.get("stage"):
stage = params.get("stage")
if stage in ["CLOSED WON", "CLOSED LOST"]:
opportunity_obj.closed_by = self.request.profile
if params.get("teams"):
teams_list = json.loads(params.get("teams"))
teams = Teams.objects.filter(
id__in=teams_list, org=request.org)
opportunity_obj.teams.add(*teams)
if params.get("assigned_to"):
assinged_to_list = json.loads(
params.get("assigned_to"))
profiles = Profile.objects.filter(
id__in=assinged_to_list, org=request.org, is_active=True)
opportunity_obj.assigned_to.add(*profiles)
if self.request.FILES.get("opportunity_attachment"):
attachment = Attachments()
attachment.created_by = self.request.profile
attachment.file_name = self.request.FILES.get(
"opportunity_attachment"
).name
attachment.opportunity = opportunity_obj
attachment.attachment = self.request.FILES.get(
"opportunity_attachment")
attachment.save()
recipients = list(
opportunity_obj.assigned_to.all().values_list("id", flat=True)
)
send_email_to_assigned_user.delay(
recipients,
opportunity_obj.id,
)
return Response(
{"error": False, "message": "Opportunity Created Successfully"},
status=status.HTTP_200_OK,
)
return Response(
{"error": True, "errors": serializer.errors},
status=status.HTTP_400_BAD_REQUEST,
)
class OpportunityDetailView(APIView):
authentication_classes = (JSONWebTokenAuthentication,)
permission_classes = (IsAuthenticated,)
model = Opportunity
def get_object(self, pk):
return self.model.objects.filter(id=pk).first()
@swagger_auto_schema(
tags=["Opportunities"],
manual_parameters=swagger_params.opportunity_create_post_params,
)
def put(self, request, pk, format=None):
params = request.query_params if len(
request.data) == 0 else request.data
opportunity_object = self.get_object(pk=pk)
if opportunity_object.org != request.org:
return Response(
{"error": True, "errors": "User company doesnot match with header...."},
status=status.HTTP_403_FORBIDDEN,
)
if self.request.profile.role != "ADMIN" and not self.request.user.is_superuser:
if not (
(self.request.profile == opportunity_object.created_by)
or (self.request.profile in opportunity_object.assigned_to.all())
):
return Response(
{
"error": True,
"errors": "You do not have Permission to perform this action",
},
status=status.HTTP_403_FORBIDDEN,
)
serializer = OpportunityCreateSerializer(
opportunity_object,
data=params,
request_obj=request,
opportunity=True,
)
if serializer.is_valid():
opportunity_object = serializer.save(
closed_on=params.get("due_date"))
previous_assigned_to_users = list(
opportunity_object.assigned_to.all().values_list("id", flat=True)
)
opportunity_object.contacts.clear()
if params.get("contacts"):
contacts_list = json.loads(params.get("contacts"))
contacts = Contact.objects.filter(
id__in=contacts_list, org=request.org
)
opportunity_object.contacts.add(*contacts)
opportunity_object.tags.clear()
if params.get("tags"):
tags = json.loads(params.get("tags"))
for tag in tags:
obj_tag = Tags.objects.filter(slug=tag.lower())
if obj_tag.exists():
obj_tag = obj_tag[0]
else:
obj_tag = Tags.objects.create(name=tag)
opportunity_object.tags.add(obj_tag)
if params.get("stage"):
stage = params.get("stage")
if stage in ["CLOSED WON", "CLOSED LOST"]:
opportunity_object.closed_by = self.request.profile
opportunity_object.teams.clear()
if params.get("teams"):
teams_list = json.loads(params.get("teams"))
teams = Teams.objects.filter(
id__in=teams_list, org=request.org)
opportunity_object.teams.add(*teams)
opportunity_object.assigned_to.clear()
if params.get("assigned_to"):
assinged_to_list = json.loads(
params.get("assigned_to"))
profiles = Profile.objects.filter(
id__in=assinged_to_list, org=request.org, is_active=True)
opportunity_object.assigned_to.add(*profiles)
if self.request.FILES.get("opportunity_attachment"):
attachment = Attachments()
attachment.created_by = self.request.profile
attachment.file_name = self.request.FILES.get(
"opportunity_attachment"
).name
attachment.opportunity = opportunity_object
attachment.attachment = self.request.FILES.get(
"opportunity_attachment")
attachment.save()
assigned_to_list = list(
opportunity_object.assigned_to.all().values_list("id", flat=True)
)
recipients = list(set(assigned_to_list) -
set(previous_assigned_to_users))
send_email_to_assigned_user.delay(
recipients,
opportunity_object.id,
)
return Response(
{"error": False, "message": "Opportunity Updated Successfully"},
status=status.HTTP_200_OK,
)
return Response(
{"error": True, "errors": serializer.errors},
status=status.HTTP_400_BAD_REQUEST,
)
@swagger_auto_schema(
tags=["Opportunities"], manual_parameters=swagger_params.organization_params
)
def delete(self, request, pk, format=None):
self.object = self.get_object(pk)
if self.object.org != request.org:
return Response(
{"error": True, "errors": "User company doesnot match with header...."},
status=status.HTTP_403_FORBIDDEN
)
if self.request.profile.role != "ADMIN" and not self.request.user.is_superuser:
if self.request.profile != self.object.created_by:
return Response(
{
"error": True,
"errors": "You do not have Permission to perform this action",
},
status=status.HTTP_403_FORBIDDEN,
)
self.object.delete()
return Response(
{"error": False, "message": "Opportunity Deleted Successfully."},
status=status.HTTP_200_OK,
)
@swagger_auto_schema(
tags=["Opportunities"], manual_parameters=swagger_params.organization_params
)
def get(self, request, pk, format=None):
self.opportunity = self.get_object(pk=pk)
context = {}
context["opportunity_obj"] = OpportunitySerializer(
self.opportunity).data
if self.opportunity.org != request.org:
return Response(
{"error": True, "errors": "User company doesnot match with header...."},
status=status.HTTP_403_FORBIDDEN,
)
if self.request.profile.role != "ADMIN" and not self.request.user.is_superuser:
if not (
(self.request.profile == self.opportunity.created_by)
or (self.request.profile in self.opportunity.assigned_to.all())
):
return Response(
{
"error": True,
"errors": "You don't have Permission to perform this action",
},
status=status.HTTP_403_FORBIDDEN,
)
comment_permission = False
if (
self.request.profile == self.opportunity.created_by
or self.request.user.is_superuser
or self.request.profile.role == "ADMIN"
):
comment_permission = True
if self.request.user.is_superuser or self.request.profile.role == "ADMIN":
users_mention = list(
Profile.objects.filter(
is_active=True, org=self.request.org
).values("user__username")
)
elif self.request.profile != self.opportunity.created_by:
if self.opportunity.created_by:
users_mention = [
{"username": self.opportunity.created_by.user.username}]
else:
users_mention = []
else:
users_mention = []
context.update(
{
"comments": CommentSerializer(
self.opportunity.opportunity_comments.all(), many=True
).data,
"attachments": AttachmentsSerializer(
self.opportunity.opportunity_attachment.all(), many=True
).data,
"contacts": ContactSerializer(
self.opportunity.contacts.all(), many=True
).data,
"users": ProfileSerializer(
Profile.objects.filter(
is_active=True, org=self.request.org
).order_by("user__email"),
many=True,
).data,
"stage": STAGES,
"lead_source": SOURCES,
"currency": CURRENCY_CODES,
"comment_permission": comment_permission,
"users_mention": users_mention,
}
)
return Response(context)
@swagger_auto_schema(
tags=["Opportunities"],
manual_parameters=swagger_params.opportunity_detail_get_params,
)
def post(self, request, pk, **kwargs):
params = (
self.request.query_params
if len(self.request.data) == 0
else self.request.data
)
context = {}
self.opportunity_obj = Opportunity.objects.get(pk=pk)
if self.opportunity_obj.org != request.org:
return Response(
{"error": True, "errors": "User company doesnot match with header...."},
status=status.HTTP_403_FORBIDDEN
)
comment_serializer = CommentSerializer(data=params)
if self.request.profile.role != "ADMIN" and not self.request.user.is_superuser:
if not (
(self.request.profile == self.opportunity_obj.created_by)
or (self.request.profile in self.opportunity_obj.assigned_to.all())
):
return Response(
{
"error": True,
"errors": "You don't have Permission to perform this action",
},
status=status.HTTP_403_FORBIDDEN,
)
if comment_serializer.is_valid():
if params.get("comment"):
comment_serializer.save(
opportunity_id=self.opportunity_obj.id,
commented_by_id=self.request.profile.id,
)
if self.request.FILES.get("opportunity_attachment"):
attachment = Attachments()
attachment.created_by = self.request.profile
attachment.file_name = self.request.FILES.get(
"opportunity_attachment"
).name
attachment.opportunity = self.opportunity_obj
attachment.attachment = self.request.FILES.get(
"opportunity_attachment")
attachment.save()
comments = Comment.objects.filter(opportunity=self.opportunity_obj).order_by(
"-id"
)
attachments = Attachments.objects.filter(
opportunity=self.opportunity_obj
).order_by("-id")
context.update(
{
"opportunity_obj": OpportunitySerializer(self.opportunity_obj).data,
"attachments": AttachmentsSerializer(attachments, many=True).data,
"comments": CommentSerializer(comments, many=True).data,
}
)
return Response(context)
class OpportunityCommentView(APIView):
model = Comment
authentication_classes = (JSONWebTokenAuthentication,)
permission_classes = (IsAuthenticated,)
def get_object(self, pk):
return self.model.objects.get(pk=pk)
@swagger_auto_schema(
tags=["Opportunities"],
manual_parameters=swagger_params.opportunity_comment_edit_params,
)
def put(self, request, pk, format=None):
params = request.query_params if len(
request.data) == 0 else request.data
obj = self.get_object(pk)
if (
request.profile.role == "ADMIN"
or request.user.is_superuser
or request.profile == obj.commented_by
):
serializer = CommentSerializer(obj, data=params)
if params.get("comment"):
if serializer.is_valid():
serializer.save()
return Response(
{"error": False, "message": "Comment Submitted"},
status=status.HTTP_200_OK,
)
return Response(
{"error": True, "errors": serializer.errors},
status=status.HTTP_400_BAD_REQUEST,
)
return Response(
{
"error": True,
"errors": "You don't have permission to perform this action.",
},
status=status.HTTP_403_FORBIDDEN,
)
@swagger_auto_schema(
tags=["Opportunities"], manual_parameters=swagger_params.organization_params
)
def delete(self, request, pk, format=None):
self.object = self.get_object(pk)
if (
request.profile.role == "ADMIN"
or request.user.is_superuser
or request.profile == self.object.commented_by
):
self.object.delete()
return Response(
{"error": False, "message": "Comment Deleted Successfully"},
status=status.HTTP_200_OK,
)
return Response(
{
"error": True,
"errors": "You do not have permission to perform this action",
},
status=status.HTTP_403_FORBIDDEN,
)
class OpportunityAttachmentView(APIView):
model = Attachments
authentication_classes = (JSONWebTokenAuthentication,)
permission_classes = (IsAuthenticated,)
@swagger_auto_schema(
tags=["Opportunities"], manual_parameters=swagger_params.organization_params
)
def delete(self, request, pk, format=None):
self.object = self.model.objects.get(pk=pk)
if (
request.profile.role == "ADMIN"
or request.user.is_superuser
or request.profile == self.object.created_by
):
self.object.delete()
return Response(
{"error": False, "message": "Attachment Deleted Successfully"},
status=status.HTTP_200_OK,
)
return Response(
{
"error": True,
"errors": "You don't have permission to perform this action.",
},
status=status.HTTP_403_FORBIDDEN,
)