Spaces:
Sleeping
Sleeping
File size: 12,762 Bytes
7552ee6 ff0ece9 0d47cfb 16c32c6 f487bf3 b6c5355 05035e7 6e5ec17 0a3e3b6 6e5ec17 b6c5355 676aef9 9cfce13 676aef9 62f6da6 16cbbfb 9368cf0 6e5ec17 7c09dcc 0a3e3b6 4818e9b 0a3e3b6 4818e9b 0a3e3b6 4818e9b 0a3e3b6 4818e9b 0a3e3b6 7c09dcc 193a53d 304b5eb 4818e9b 7c09dcc 348b20e 193a53d 348b20e 193a53d 348b20e 193a53d 348b20e 193a53d 348b20e 7c09dcc 0a3e3b6 7c09dcc dedecc9 7c09dcc 0a3e3b6 7c09dcc 0a3e3b6 7c09dcc 0a3e3b6 7c09dcc 0a3e3b6 7c09dcc 0a3e3b6 7c09dcc 0a3e3b6 7c09dcc 0a3e3b6 7c09dcc 0a3e3b6 7c09dcc 4818e9b 0a3e3b6 4818e9b 967e410 e61a89f 967e410 0a3e3b6 a95f82d 676aef9 2b2967b 0d47cfb 69af0ce 64ac61b 01e7c72 2b2967b 676aef9 0d47cfb 01e7c72 0d47cfb 01e7c72 a95f82d 0d47cfb a95f82d 0d47cfb a95f82d 4595fee f18f04b 2923221 |
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 |
from flask import Flask, request, render_template, jsonify
import requests
import datetime
import os
base_url = os.getenv('base_url') # URL сервера
token = os.getenv('token') # Ваш токен
api_key = os.getenv('api_key') # Ваш
app = Flask(__name__, template_folder="./")
@app.route('/grups', methods=['GET'])
def grup():
return render_template('grups.html')
@app.route('/send_request', methods=['POST'])
def send_request():
api_token = request.form.get('api_token')
group_id = request.form.get('group_id')
url = f"https://api.notisend.ru/v1/email/lists/{group_id}/parameters"
headers = {
'Content-Type': 'application/json',
'Authorization': f'Bearer {api_token}'
}
response = requests.get(url, headers=headers)
data = response.json()
return jsonify(data)
@app.route('/save_db', methods=['GET'])
def save_db():
show_params = False
list_id = request.args.get('list_id')
name = request.args.get('name')
name_id = request.args.get('name_id')
email = request.args.get('email')
phone = request.args.get('phone')
phone_id = request.args.get('phone_id')
pr1 = request.args.get('pr1')
pr1_id = request.args.get('pr1_id')
pr2 = request.args.get('pr2')
pr2_id = request.args.get('pr2_id')
pr3 = request.args.get('pr3')
pr3_id = request.args.get('pr3_id')
pr4 = request.args.get('pr4')
pr4_id = request.args.get('pr4_id')
pr5 = request.args.get('pr5')
pr5_id = request.args.get('pr5_id')
data = {
"email": email,
"unconfirmed": False,
"values": [
{
"parameter_id": pr5_id,
"kind": "string",
"list_id": list_id,
"title": "pr5",
"value": pr5
},
{
"parameter_id": pr4_id,
"kind": "string",
"list_id": list_id,
"title": "pr4",
"value": pr4
},
{
"parameter_id": pr3_id,
"kind": "string",
"list_id": list_id,
"title": "pr3",
"value": pr3
},
{
"parameter_id": pr2_id,
"kind": "string",
"list_id": list_id,
"title": "pr2",
"value": pr2
},
{
"parameter_id": pr1_id,
"kind": "string",
"list_id": list_id,
"title": "pr1",
"value": pr1
},
{
"parameter_id": phone_id,
"kind": "string",
"list_id": list_id,
"title": "phone",
"value": phone
},
{
"parameter_id": name_id,
"kind": "string",
"list_id": list_id,
"title": "name",
"value": name
}
]
}
headers = {
'Authorization': f'Bearer {token}',
'Content-Type': 'application/json'
}
response = requests.post(f"{base_url}/email/lists/{list_id}/recipients", json=data, headers=headers)
if show_params:
system_vars = {
'base_url': base_url,
'token': token
}
return jsonify({'system_variables': system_vars, 'request_parameters': request.args})
else:
return response.text
# Здесь должно быть определение переменных base_url и token для Notisend API
@app.route('/save_pl', methods=['POST'])
def save_pl():
list_id1 = '560768'
list_id2 = '560832'
list_id3 = '560833'
data = request.json
name = data.get('name')
email = data.get('email')
phone = data.get('phone')
# Определяем текущий день недели (0 - понедельник, 1 - вторник, ..., 6 - воскресенье)
current_day = datetime.datetime.today().weekday()
urls = []
# Понедельник, пятница, суббота, воскресенье
if current_day in [0, 4, 5, 6]:
urls = [
(f"{base_url}/email/lists/{list_id1}/recipients_mon_fri_sat_sun", {
"email": email,
"unconfirmed": True,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
}),
(f"{base_url}/email/lists/{list_id2}/recipients_mon_fri_sat_sun", {
"email": email,
"unconfirmed": True,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
}),
(f"{base_url}/email/lists/{list_id3}/recipients_mon_fri_sat_sun", {
"email": email,
"unconfirmed": True,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
})
]
# Вторник
elif current_day == 1:
current_time = datetime.datetime.now().time()
if current_time < datetime.time(19, 0): # Утро до 19:00
urls = [
(f"{base_url}/email/lists/{list_id1}/recipients_tue_morning", {
"email": email,
"unconfirmed": True,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
})
]
else: # Вечер после 19:00
urls = [
(f"{base_url}/email/lists/{list_id1}/recipients_tue_evening", {
"email": email,
"unconfirmed": False,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
})
]
# Среда
elif current_day == 2:
current_time = datetime.datetime.now().time()
if current_time < datetime.time(19, 0): # Утро до 19:00
urls = [
(f"{base_url}/email/lists/{list_id1}/recipients_wed_morning", {
"email": email,
"unconfirmed": True,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
})
]
else: # Вечер после 19:00
urls = [
(f"{base_url}/email/lists/{list_id1}/recipients_wed_evening", {
"email": email,
"unconfirmed": False,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
})
]
# Четверг
elif current_day == 3:
current_time = datetime.datetime.now().time()
if current_time < datetime.time(19, 0): # Утро до 19:00
urls = [
(f"{base_url}/email/lists/{list_id1}/recipients_thu_morning", {
"email": email,
"unconfirmed": True,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
})
]
else: # Вечер после 19:00
urls = [
(f"{base_url}/email/lists/{list_id1}/recipients_thu_evening", {
"email": email,
"unconfirmed": False,
"values": [
{
"parameter_id": 393120,
"kind": "string",
"list_id": list_id1,
"title": "phone",
"value": phone
},
{
"parameter_id": 393119,
"kind": "string",
"list_id": list_id1,
"title": "name",
"value": name
}
]
})
]
# Отправляем запросы
responses = []
for url, json_data in urls:
headers = {
'Authorization': f'Bearer {token}',
'Content-Type': 'application/json'
}
response = requests.post(url, json=json_data, headers=headers)
responses.append({
'url': url,
'status_code': response.status_code,
'response_text': response.text
})
return jsonify({'responses': responses})
if __name__ == '__main__':
app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 7860))) |