-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
102 additions
and
0 deletions.
There are no files selected for viewing
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,102 @@ | ||
#!/usr/bin/env python | ||
|
||
|
||
import configparser | ||
import json | ||
import os | ||
import sys | ||
|
||
import requests | ||
|
||
import common | ||
|
||
config = configparser.ConfigParser() | ||
config.read(os.path.expanduser("~/.avast.ini")) | ||
|
||
|
||
token = common.gettoken( | ||
user=config["auth"]["RWusername"], password=config["auth"]["RWpassword"] | ||
) | ||
|
||
|
||
comurl = f"{common.apiurl}/comunicats/emails_notificacions" | ||
headers = {"Authorization": "Bearer %s" % token} | ||
|
||
|
||
true = True | ||
null = "" | ||
|
||
if len(sys.argv) < 2: | ||
print("Missing argument: idAssociat for sending the message") | ||
sys.exit(-1) | ||
|
||
associat = int(sys.argv[1]) | ||
|
||
|
||
print("Enviando comunicado") | ||
|
||
|
||
data = { | ||
"comunicat": json.dumps( | ||
{ | ||
"idComunicat": 0, | ||
"titol": "Actualiza sus datos", | ||
"descripcioIntro": """Hola, [[persona_nombre]]:<br><br><br>Estamos actualizando la base de datos para poder acceder al canal de Telegram oficial donde solo participaran miembros de la asociación. Para que esto sea posible necesitas conseguir tu id de telegram y añadirlo a tu ficha. Puedes añadir una ID por tutor. En nuestra web tienes el tutorial de como hacerlo.<br><br> https://asociacion-avast.org/registro-en-la-base-de-datos-de-avast-del-id-de-telegram/ <br><br><br>Necesitamos que accedas al siguiente enlace para configurarlo en nuestra base de datos:<br><br>[[invitacion_enlace_preinscripcion]]<br><br>*Recuerda que este enlace es válido sólo por [[invitacion_horas_validez]] horas.<br><br><br>Una vez registrado se te enviara el enlace al canal de Familias de AVAST.<br><br><br>Si tienes alguna duda o no te aclaras muy bien, tenemos un grupo de ayuda de Telegram para ayudarte: https://t.me/+9ou2gX99KLxjNWVk <br><br>Gracias por tu colaboración.<br><br>Atentamente,<br>Administración - AVAST""", | ||
"adjunts": [], | ||
"estat": "COMESTESB", | ||
"dataEnviamentProgramada": null, | ||
"isLoaded": true, | ||
} | ||
), | ||
"configBase": json.dumps( | ||
{ | ||
"idConfiguracioComunicat": "4", | ||
"idFamiliaComunicat": 0, | ||
"tipusComunicat": "TPCINVITACIO", | ||
"plantillaComunicat": "PCINVITACIONS", | ||
} | ||
), | ||
"configExtra": json.dumps( | ||
{ | ||
"idsColegiats": ["%s" % associat], | ||
"idsPatrocinadors": [], | ||
"idsRebuts": [], | ||
"idsInscripcions": [], | ||
"idsReserves": [], | ||
"setEstatReclamacioImpagats": 0, | ||
"idActivitat": null, | ||
"idsValorsSeccioPersonalitzada": null, | ||
"idEnquesta": null, | ||
"idRegistreAssistencia": null, | ||
"idConvocatoria": null, | ||
"idConfiguracioImprimirPdf": null, | ||
"idAgrupacio": null, | ||
"idModalitat": null, | ||
"idsAssociats": null, | ||
"idConfiguracioFormulariColegi": "14", | ||
"anys": null, | ||
"perso": null, | ||
"idsContactes": [], | ||
} | ||
), | ||
"configIncloure": json.dumps( | ||
{ | ||
"isEmail": true, | ||
"isEmailOficial": true, | ||
"isEmailTutors": true, | ||
"isEmailCapFamilia": true, | ||
"isEmailExtra": "", | ||
"emailsExtra": [], | ||
} | ||
), | ||
"destinataris": json.dumps(["%s" % associat]), | ||
"destinatarisPatrocinador": "[]", | ||
"destinatarisContacte": "[]", | ||
} | ||
|
||
files = [] | ||
headers = headers | ||
response = requests.request("POST", comurl, headers=headers, data=data, files=files) | ||
|
||
print(response) | ||
print(response.text) |