2021-10-15 20:47:23 +05:30
|
|
|
from rest_framework.decorators import api_view
|
|
|
|
|
|
|
|
from .utils import *
|
|
|
|
|
|
|
|
logger = logging.getLogger('db')
|
|
|
|
|
|
|
|
|
|
|
|
@api_view(['POST'])
|
2021-12-03 01:04:49 +05:30
|
|
|
@precheck([COMPANY_NAME, ADDRESS, COMPANY_TYPE, NATURE_OF_BUSINESS, WEBSITE, COMPANY_DETAILS, IS_COMPANY_DETAILS_PDF,
|
|
|
|
CONTACT_PERSON_NAME, PHONE_NUMBER, EMAIL, CITY, STATE, COUNTRY, PINCODE, DESIGNATION, DESCRIPTION,
|
|
|
|
IS_DESCRIPTION_PDF,
|
2022-05-24 11:21:37 +05:30
|
|
|
COMPENSATION_CTC, COMPENSATION_GROSS, COMPENSATION_TAKE_HOME, COMPENSATION_BONUS,
|
2021-12-03 01:04:49 +05:30
|
|
|
IS_COMPENSATION_DETAILS_PDF,
|
2022-05-24 11:21:37 +05:30
|
|
|
ALLOWED_BRANCH, RS_ELIGIBLE, SELECTION_PROCEDURE_ROUNDS, SELECTION_PROCEDURE_DETAILS, IS_SELECTION_PROCEDURE_DETAILS_PDF,
|
2021-12-03 01:04:49 +05:30
|
|
|
TENTATIVE_DATE_OF_JOINING,
|
2022-05-01 14:56:46 +05:30
|
|
|
TENTATIVE_NO_OF_OFFERS, OTHER_REQUIREMENTS, RECAPTCHA_VALUE
|
2021-12-03 01:04:49 +05:30
|
|
|
])
|
|
|
|
def addPlacement(request):
|
2021-10-15 20:47:23 +05:30
|
|
|
try:
|
|
|
|
data = request.data
|
2021-12-03 01:04:49 +05:30
|
|
|
files = request.FILES
|
|
|
|
opening = Placement()
|
2022-04-10 23:12:02 +05:30
|
|
|
if not verify_recaptcha(data[RECAPTCHA_VALUE]):
|
|
|
|
raise Exception("Recaptcha Failed")
|
2022-05-01 14:56:46 +05:30
|
|
|
|
2021-10-15 20:47:23 +05:30
|
|
|
opening.id = generateRandomString()
|
2021-12-03 01:04:49 +05:30
|
|
|
# Add a company details in the opening
|
|
|
|
opening.company_name = data[COMPANY_NAME]
|
|
|
|
opening.address = data[ADDRESS]
|
|
|
|
opening.company_type = data[COMPANY_TYPE]
|
|
|
|
opening.nature_of_business = data[NATURE_OF_BUSINESS]
|
|
|
|
opening.website = data[WEBSITE]
|
|
|
|
opening.company_details = data[COMPANY_DETAILS]
|
2022-05-03 01:26:25 +05:30
|
|
|
opening.is_company_details_pdf = data[IS_COMPANY_DETAILS_PDF]
|
2022-05-24 11:21:37 +05:30
|
|
|
if data[RS_ELIGIBLE] == 'Yes':
|
|
|
|
opening.rs_eligible = True
|
|
|
|
else:
|
|
|
|
opening.rs_eligible = False
|
|
|
|
opening.job_locations = data[JOB_LOCATIONS]
|
2021-12-03 01:04:49 +05:30
|
|
|
|
|
|
|
if opening.is_company_details_pdf:
|
|
|
|
company_details_pdf = []
|
|
|
|
for file in files.getlist(COMPANY_DETAILS_PDF):
|
|
|
|
file_location = STORAGE_DESTINATION_COMPANY_ATTACHMENTS + opening.id + '/'
|
|
|
|
company_details_pdf.append(saveFile(file, file_location))
|
|
|
|
|
|
|
|
opening.company_details_pdf_names = company_details_pdf
|
|
|
|
|
2022-05-01 14:56:46 +05:30
|
|
|
if data[IS_COMPANY_DETAILS_PDF] == "true" and len(opening.company_details_pdf_names) > 0:
|
|
|
|
opening.is_company_details_pdf = True
|
|
|
|
elif data[IS_COMPANY_DETAILS_PDF] == "false" and len(opening.company_details_pdf_names) == 0:
|
|
|
|
opening.is_company_details_pdf = False
|
|
|
|
else:
|
|
|
|
raise ValueError('Invalid value for is_company_details_pdf')
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# Add a contact person details in the opening
|
|
|
|
opening.contact_person_name = data[CONTACT_PERSON_NAME]
|
|
|
|
# Check if Phone number is Integer
|
|
|
|
if data[PHONE_NUMBER].isdigit():
|
|
|
|
opening.phone_number = int(data[PHONE_NUMBER])
|
|
|
|
else:
|
|
|
|
raise ValueError('Phone number should be integer')
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
opening.email = data[EMAIL]
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# Add a company location in the opening
|
|
|
|
opening.city = data[CITY]
|
|
|
|
opening.state = data[STATE]
|
|
|
|
opening.country = data[COUNTRY]
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# Check if Pincode is Integer
|
|
|
|
if data[PINCODE].isdigit():
|
|
|
|
opening.pin_code = int(data[PINCODE])
|
2021-10-15 20:47:23 +05:30
|
|
|
else:
|
2021-12-03 01:04:49 +05:30
|
|
|
raise ValueError('Pincode should be integer')
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# If India then set city_type as Domestic else International
|
2022-05-21 16:08:30 +05:30
|
|
|
if opening.country.upper() == 'INDIA':
|
2021-12-03 01:04:49 +05:30
|
|
|
opening.city_type = 'Domestic'
|
|
|
|
else:
|
|
|
|
opening.city_type = 'International'
|
|
|
|
|
|
|
|
# Add a designation details in the opening
|
|
|
|
opening.designation = data[DESIGNATION]
|
2021-10-22 20:37:15 +05:30
|
|
|
opening.description = data[DESCRIPTION]
|
2022-05-03 01:26:25 +05:30
|
|
|
opening.is_description_pdf = data[IS_DESCRIPTION_PDF]
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
if opening.is_description_pdf:
|
|
|
|
description_pdf = []
|
|
|
|
for file in files.getlist(DESCRIPTION_PDF):
|
|
|
|
file_location = STORAGE_DESTINATION_COMPANY_ATTACHMENTS + opening.id + '/'
|
|
|
|
description_pdf.append(saveFile(file, file_location))
|
|
|
|
|
|
|
|
opening.description_pdf_names = description_pdf
|
|
|
|
|
2022-05-01 14:56:46 +05:30
|
|
|
# Check if is_description_pdf is boolean
|
|
|
|
if data[IS_DESCRIPTION_PDF] == "true" and len(opening.description_pdf_names) > 0:
|
|
|
|
opening.is_description_pdf = True
|
|
|
|
elif data[IS_DESCRIPTION_PDF] == "false" and len(opening.description_pdf_names) == 0:
|
|
|
|
opening.is_description_pdf = False
|
|
|
|
else:
|
|
|
|
raise ValueError('Invalid value for is_description_pdf')
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# Add a compensation details in the opening
|
|
|
|
# Check if compensation_ctc is integer
|
|
|
|
if data[COMPENSATION_CTC].isdigit():
|
|
|
|
opening.compensation_CTC = int(data[COMPENSATION_CTC])
|
|
|
|
elif data[COMPENSATION_CTC] is None:
|
|
|
|
opening.compensation_CTC = None
|
2021-10-15 20:47:23 +05:30
|
|
|
else:
|
2021-12-03 01:04:49 +05:30
|
|
|
raise ValueError('Compensation CTC must be an integer')
|
|
|
|
|
|
|
|
# Check if compensation_gross is integer
|
|
|
|
if data[COMPENSATION_GROSS].isdigit():
|
|
|
|
opening.compensation_gross = int(data[COMPENSATION_GROSS])
|
|
|
|
elif data[COMPENSATION_GROSS] is None:
|
|
|
|
opening.compensation_gross = None
|
2021-10-15 20:47:23 +05:30
|
|
|
else:
|
2021-12-03 01:04:49 +05:30
|
|
|
raise ValueError('Compensation Gross must be an integer')
|
|
|
|
|
|
|
|
# Check if compensation_take_home is integer
|
|
|
|
if data[COMPENSATION_TAKE_HOME].isdigit():
|
|
|
|
opening.compensation_take_home = int(data[COMPENSATION_TAKE_HOME])
|
|
|
|
elif data[COMPENSATION_TAKE_HOME] is None:
|
|
|
|
opening.compensation_take_home = None
|
2021-10-15 20:47:23 +05:30
|
|
|
else:
|
2021-12-03 01:04:49 +05:30
|
|
|
raise ValueError('Compensation Take Home must be an integer')
|
|
|
|
|
|
|
|
# Check if compensation_bonus is integer
|
|
|
|
if data[COMPENSATION_BONUS].isdigit():
|
|
|
|
opening.compensation_bonus = int(data[COMPENSATION_BONUS])
|
|
|
|
elif data[COMPENSATION_BONUS] is None:
|
|
|
|
opening.compensation_bonus = None
|
2021-10-15 20:47:23 +05:30
|
|
|
else:
|
2021-12-03 01:04:49 +05:30
|
|
|
raise ValueError('Compensation Bonus must be an integer')
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2022-05-03 01:26:25 +05:30
|
|
|
opening.is_compensation_details_pdf = data[IS_COMPENSATION_DETAILS_PDF]
|
2021-12-03 01:04:49 +05:30
|
|
|
|
|
|
|
if opening.is_compensation_details_pdf:
|
|
|
|
compensation_details_pdf = []
|
|
|
|
for file in files.getlist(COMPENSATION_DETAILS_PDF):
|
|
|
|
file_location = STORAGE_DESTINATION_COMPANY_ATTACHMENTS + opening.id + '/'
|
|
|
|
compensation_details_pdf.append(saveFile(file, file_location))
|
|
|
|
|
|
|
|
opening.compensation_details_pdf_names = compensation_details_pdf
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2022-05-01 14:56:46 +05:30
|
|
|
# Check if is_compensation_details_pdf is boolean
|
|
|
|
if data[IS_COMPENSATION_DETAILS_PDF] == "true" and len(opening.compensation_details_pdf_names) > 0:
|
|
|
|
opening.is_compensation_details_pdf = True
|
|
|
|
elif data[IS_COMPENSATION_DETAILS_PDF] == "false" and len(opening.compensation_details_pdf_names) == 0:
|
|
|
|
opening.is_compensation_details_pdf = False
|
|
|
|
else:
|
|
|
|
raise ValueError('Invalid value for is_compensation_details_pdf')
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
opening.bond_details = data[BOND_DETAILS]
|
|
|
|
|
|
|
|
# Check if selection_procedure_rounds is list
|
|
|
|
if data[SELECTION_PROCEDURE_ROUNDS] is None:
|
|
|
|
raise ValueError('Selection Procedure Rounds cannot be empty')
|
2021-10-15 20:47:23 +05:30
|
|
|
else:
|
2021-12-03 01:04:49 +05:30
|
|
|
try:
|
|
|
|
opening.selection_procedure_rounds = json.loads(data[SELECTION_PROCEDURE_ROUNDS])
|
|
|
|
except:
|
|
|
|
raise ValueError('Selection Procedure Rounds must be a list')
|
|
|
|
opening.selection_procedure_details = data[SELECTION_PROCEDURE_DETAILS]
|
2022-05-03 01:26:25 +05:30
|
|
|
opening.is_selection_procedure_details_pdf = data[IS_SELECTION_PROCEDURE_DETAILS_PDF]
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
if opening.is_selection_procedure_details_pdf:
|
|
|
|
selection_procedure_details_pdf = []
|
|
|
|
for file in files.getlist(SELECTION_PROCEDURE_DETAILS_PDF):
|
|
|
|
file_location = STORAGE_DESTINATION_COMPANY_ATTACHMENTS + opening.id + '/'
|
|
|
|
selection_procedure_details_pdf.append(saveFile(file, file_location))
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
opening.selection_procedure_details_pdf_names = selection_procedure_details_pdf
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2022-05-01 14:56:46 +05:30
|
|
|
# Check if is_selection_procedure_details_pdf is boolean
|
|
|
|
if data[IS_SELECTION_PROCEDURE_DETAILS_PDF] == "true" and len(
|
|
|
|
opening.selection_procedure_details_pdf_names) > 0:
|
|
|
|
opening.is_selection_procedure_details_pdf = True
|
|
|
|
elif data[IS_SELECTION_PROCEDURE_DETAILS_PDF] == "false" and len(
|
|
|
|
opening.selection_procedure_details_pdf_names) == 0:
|
|
|
|
opening.is_selection_procedure_details_pdf = False
|
|
|
|
else:
|
|
|
|
raise ValueError('Invalid value for is_selection_procedure_pdf')
|
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
stat, tier = getTier(opening.compensation_gross)
|
|
|
|
if stat:
|
|
|
|
opening.tier = tier
|
|
|
|
else:
|
|
|
|
raise ValueError('Invalid compensation gross')
|
|
|
|
# Convert to date object
|
2021-12-17 19:23:32 +05:30
|
|
|
opening.tentative_date_of_joining = datetime.datetime.strptime(data[TENTATIVE_DATE_OF_JOINING],
|
|
|
|
'%d-%m-%Y').date()
|
2021-12-03 01:04:49 +05:30
|
|
|
|
|
|
|
# Only Allowing Fourth Year for Placement
|
|
|
|
opening.allowed_batch = [FOURTH_YEAR, ]
|
|
|
|
# Check if allowed_branch are valid
|
|
|
|
if data[ALLOWED_BRANCH] is None:
|
|
|
|
raise ValueError('Allowed Branch cannot be empty')
|
|
|
|
elif set(json.loads(data[ALLOWED_BRANCH])).issubset(BRANCHES):
|
|
|
|
opening.allowed_branch = json.loads(data[ALLOWED_BRANCH])
|
|
|
|
else:
|
|
|
|
raise ValueError('Allowed Branch must be a subset of ' + str(BRANCHES))
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
# Check if tentative_no_of_offers is integer
|
|
|
|
if data[TENTATIVE_NO_OF_OFFERS].isdigit():
|
|
|
|
opening.tentative_no_of_offers = int(data[TENTATIVE_NO_OF_OFFERS])
|
2021-12-16 23:05:04 +05:30
|
|
|
elif data[TENTATIVE_NO_OF_OFFERS] == 'null':
|
|
|
|
opening.tentative_no_of_offers = None
|
2021-12-03 01:04:49 +05:30
|
|
|
else:
|
|
|
|
raise ValueError('Tentative No Of Offers must be an integer')
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
opening.other_requirements = data[OTHER_REQUIREMENTS]
|
2021-10-15 20:47:23 +05:30
|
|
|
|
|
|
|
opening.save()
|
2021-12-03 01:04:49 +05:30
|
|
|
|
2021-12-17 17:15:56 +05:30
|
|
|
stat, link = generateOneTimeVerificationLink(opening.email, opening.id, "Placement")
|
|
|
|
if not stat:
|
|
|
|
raise RuntimeError("Error in generating one time verification link for placement")
|
2021-10-15 20:47:23 +05:30
|
|
|
data = {
|
|
|
|
"designation": opening.designation,
|
2021-12-17 17:15:56 +05:30
|
|
|
"one_time_link": link
|
2021-10-15 20:47:23 +05:30
|
|
|
}
|
|
|
|
|
2021-12-17 17:15:56 +05:30
|
|
|
sendEmail(opening.email, COMPANY_EMAIl_VERIFICATION_TEMPLATE_SUBJECT, data,
|
|
|
|
COMPANY_EMAIL_VERIFICATION_TEMPLATE)
|
2021-10-15 20:47:23 +05:30
|
|
|
|
2021-12-03 01:04:49 +05:30
|
|
|
return Response({'action': "Add Placement", 'message': "Placement Added Successfully"},
|
2021-10-15 20:47:23 +05:30
|
|
|
status=status.HTTP_200_OK)
|
|
|
|
|
|
|
|
except ValueError as e:
|
2021-12-03 01:04:49 +05:30
|
|
|
return Response({'action': "Add Placement", 'message': str(e)},
|
2021-10-15 20:47:23 +05:30
|
|
|
status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
except:
|
2021-12-03 01:04:49 +05:30
|
|
|
logger.warning("Add New Placement: " + str(sys.exc_info()))
|
|
|
|
return Response({'action': "Add Placement", 'message': "Something went wrong"},
|
2021-10-15 20:47:23 +05:30
|
|
|
status=status.HTTP_400_BAD_REQUEST)
|
2021-12-17 17:15:56 +05:30
|
|
|
|
2021-12-17 19:23:32 +05:30
|
|
|
|
2021-12-17 17:15:56 +05:30
|
|
|
@api_view(['POST'])
|
|
|
|
@precheck([TOKEN])
|
|
|
|
def verifyEmail(request):
|
|
|
|
try:
|
|
|
|
data = request.data
|
2022-04-30 22:27:49 +05:30
|
|
|
send_email_to_company = None
|
2021-12-17 17:15:56 +05:30
|
|
|
token = data[TOKEN]
|
|
|
|
# decode token
|
|
|
|
decoded_token = jwt.decode(token, os.environ.get("EMAIL_VERIFICATION_SECRET_KEY"), algorithms=['HS256'])
|
|
|
|
# get email, opening_id, opening_type from token
|
|
|
|
email = decoded_token['email']
|
|
|
|
opening_id = decoded_token['opening_id']
|
|
|
|
opening_type = decoded_token['opening_type']
|
|
|
|
# get opening based on opening_type and opening_id
|
|
|
|
if opening_type == PLACEMENT:
|
|
|
|
opening = get_object_or_404(Placement, id=opening_id)
|
|
|
|
if email != opening.email:
|
|
|
|
raise ValueError("Invalid Email")
|
2022-04-30 22:27:49 +05:30
|
|
|
if not opening.email_verified:
|
|
|
|
opening.email_verified = True
|
|
|
|
send_email_to_company = True
|
|
|
|
else:
|
|
|
|
send_email_to_company = False
|
2021-12-17 17:15:56 +05:30
|
|
|
opening.save()
|
2022-04-30 22:27:49 +05:30
|
|
|
else:
|
|
|
|
raise ValueError('Invalid opening type')
|
|
|
|
|
|
|
|
if send_email_to_company:
|
|
|
|
# Email sending part.
|
2022-05-02 12:43:26 +05:30
|
|
|
pdfhtml = opening_description_table_html(opening)
|
|
|
|
name = opening.company_name + '_jnf_response.pdf'
|
|
|
|
attachment_jnf_respone = {
|
|
|
|
"name": name,
|
|
|
|
"html": pdfhtml,
|
|
|
|
}
|
2021-12-17 17:15:56 +05:30
|
|
|
data = {
|
|
|
|
"designation": opening.designation,
|
|
|
|
"opening_type": PLACEMENT,
|
|
|
|
"opening_link": PLACEMENT_OPENING_URL.format(id=opening.id), # Some Changes here too
|
2022-04-30 22:27:49 +05:30
|
|
|
"company_name": opening.company_name,
|
2021-12-17 17:15:56 +05:30
|
|
|
}
|
2022-04-30 22:27:49 +05:30
|
|
|
json_data = json.dumps(data, default=str)
|
|
|
|
sendEmail(opening.email, COMPANY_OPENING_SUBMITTED_TEMPLATE_SUBJECT.format(id=opening.id), json_data,
|
2022-05-02 12:43:26 +05:30
|
|
|
COMPANY_OPENING_SUBMITTED_TEMPLATE, attachment_jnf_respone)
|
2022-04-30 22:27:49 +05:30
|
|
|
|
2021-12-17 17:15:56 +05:30
|
|
|
return Response({'action': "Verify Email", 'message': "Email Verified Successfully"},
|
|
|
|
status=status.HTTP_200_OK)
|
|
|
|
except Http404:
|
|
|
|
return Response({'action': "Verify Email", 'message': "Opening Not Found"},
|
|
|
|
status=status.HTTP_404_NOT_FOUND)
|
|
|
|
except ValueError as e:
|
|
|
|
return Response({'action': "Verify Email", 'message': str(e)},
|
|
|
|
status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
except:
|
|
|
|
logger.warning("Verify Email: " + str(sys.exc_info()))
|
|
|
|
return Response({'action': "Verify Email", 'message': "Something went wrong"},
|
2022-05-01 14:56:46 +05:30
|
|
|
status=status.HTTP_400_BAD_REQUEST)
|