-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
297 lines (248 loc) · 8.71 KB
/
app.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
from flask import Flask,render_template, request, redirect, url_for,jsonify,abort
from datetime import datetime, timedelta
from user_functions import *
from dbfunctions import *
import mail_config
from flask_jwt_extended import JWTManager, jwt_required, create_access_token, get_jwt_identity
from flask_cors import CORS
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
app = Flask(__name__)
CORS(app)
app.config['JWT_SECRET_KEY'] = '09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7'
jwt = JWTManager(app)
@app.route('/')
def hello_world():
result="Hi am kalaiyarasan, happy to see you"
return result
@app.route('/users', methods=['GET'])
def get_allUsers():
user_list = find_all_collection("userInfo")
return user_list
@app.route('/register',methods=['POST'])
def user_register():
data = request.json
username = str(data.get("email")).strip()
user_check = isuserExist(username)
if user_check:
response ={"status": "Failed!","message":"User is already registered!"}
return response
hash_password = get_password_hash(str(data.get("password")))
user_data ={
"first_name":data.get("first_name"),
"last_name":data.get("last_name"),
"email":data.get("email"),
"password":hash_password,
}
try:
#insert the user in db
registered_user = save_collection("userInfo",user_data)
if registered_user.acknowledged:
response = {
"status" :"success",
"message" : "User was registered successfully."
}
status_code =201
return response,status_code
else:
response = {
"status" :"Failed",
"message" : "User registeration failed."
}
return response
except Exception as e:
return "Something went wrong." ,500
@app.route('/login', methods=['POST'])
def login():
data = request.json
user = authenticate_user(data.get("email"), data.get("password"))
if not user:
abort(401)
user_details= getUserByEmailId(data.get("email"))
try:
expiration_time = timedelta(1800)
access_token = create_access_token(identity=user[0]["email"], expires_delta=expiration_time)
except Exception as e:
abort(401)
response ={
"status":"success",
"access_token": access_token,
"token_type": "bearer",
"users":user_details
}
return response
@app.route('/template', methods=['POST'])
@jwt_required()
def create_template():
current_user = get_jwt_identity()
if current_user is None:
abort(401)
data = request.json
template = {
'templateId':gentemplateId(),
'created_by':current_user,
'template_name': data.get('template_name'),
'subject': data.get('subject'),
'body': data.get('body')
}
saveTemplate = save_collection('templates',template)
if saveTemplate.acknowledged:
response = {
"status" :"success",
"message" : "Template saved successfully."
}
return response,201
else:
response = {
"status" :"Failed",
"message" : "Failed to save template."
}
return response
#Get All Template
@app.route('/template', methods=['GET'])
@jwt_required()
def all_templates():
current_user = get_jwt_identity()
if current_user is None :
abort(401)
collection ="templates"
arr={"created_by":current_user}
all_templates = find_in_collection(collection,arr)
return all_templates
#get single templates
@app.route('/template/<templateid>', methods=['GET'])
@jwt_required()
def get_Singletemplate(templateid:str):
current_user = get_jwt_identity()
if current_user is None :
abort(401)
arr = {"templateId" : int(templateid),"created_by":current_user}
all_templates = find_one_in_collection("templates",arr)
return all_templates
#update template
@app.route('/template/<templateid>', methods=['PUT'])
@jwt_required()
def update_template(templateid:str):
current_user = get_jwt_identity()
if current_user is None :
abort(401)
data =request.json
update_template = {
'template_name': data.get('template_name'),
'subject': data.get('subject'),
'body': data.get('body')
}
arr = {"templateId" : int(templateid),"created_by":current_user}
check_data = find_in_collection("templates",arr)
if check_data == []:
response ={
"status" :"Failed",
"message" : "Your Template Not Found"
}
return response
set_template = {'$set':update_template}
update_collection("templates",arr,set_template)
response = {
"status" :"success",
"message" : "Template updated successfully"
}
return response
#delete template
@app.route('/template/<templateid>', methods=['DELETE'])
@jwt_required()
def delete_template(templateid:str):
current_user = get_jwt_identity()
if current_user is None :
abort(401)
arr = {"templateId" : int(templateid),"created_by":current_user}
check_data = find_in_collection("templates",arr)
if check_data == []:
response ={
"status" :"Failed",
"message" : "Your Template Not Found"
}
return response
drop_collection("templates",arr)
response = {
"status" :"Sucess",
"message" : "Template deleted successfully"
}
return response
def send_email(receiver_email, subject, message_body, reply=False,reply_to_email=None):
# Setup the MIME
message = MIMEMultipart()
message['From'] = 'goodturn@gmail.com'
message['To'] = receiver_email
message['Subject'] = subject
sender_email = mail_config.sender_email
# Add Reply-To header if specified
if reply_to_email:
message.add_header('Reply-To', reply_to_email)
# Attach the message body
message.attach(MIMEText(message_body, 'html'))
# Create SMTP session for sending the mail
try:
smtp_server = 'smtp.gmail.com'
port = 587 # For SSL - 465, For TLS - 587
app_password = mail_config.app_password
# Establish a secure session with Gmail's outgoing SMTP server using TLS
server = smtplib.SMTP(smtp_server, port)
server.starttls()
# Login to the sender's email account
server.login(sender_email, app_password)
# Send the email
server.sendmail(sender_email, receiver_email, message.as_string())
print("Email sent successfully!")
except Exception as e:
print(f"Failed to send email. Error: {str(e)}")
finally:
# Terminate the SMTP session
server.quit()
@app.route('/mail', methods=['POST'])
def mailSend():
#Form data
name = request.form['name']
client_mail_id = request.form['email']
country = request.form['country']
cname = request.form['cname']
affiliation = request.form['affiliation']
role = request.form['role']
message = request.form['message']
# Now you can use these variables as needed
#welcome message to client
welcome_subject = mail_config.welcome_email_subject
welcome_message_body=mail_config.welcome_email
send_email(client_mail_id,welcome_subject, welcome_message_body)
#mail send to admin
admin_subject = mail_config.register_email
admin_message_body = f"""
Hello Admin,<br>
<br>
A new user has successfully registered. Here are the details:<br>
<br>
Name: {name} <br>
Email: {client_mail_id} <br>
country: {country} <br>
Contact Name: {cname} <br>
Affiliation: {affiliation} <br>
Role: {role} <br>
Message: {message} <br>
<br>
<br>
Thanks <br>
Good Turn
"""
send_email(mail_config.admin_email,admin_subject, admin_message_body,reply=True,reply_to_email=client_mail_id)
return "success"
@app.errorhandler(401)
def unauthorized_error_handler(error):
# Create a custom response object with custom headers
unauthorized_headers = {"WWW-Authenticate": "Bearer"}
response = jsonify(error="Could not validate credentials")
response.status_code = 401
for header, value in unauthorized_headers.items():
response.headers[header] = value
return response
if __name__ == "__main__":
app.run()