This repository was archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogger.py
63 lines (55 loc) · 2.19 KB
/
logger.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
# coding: utf-8
import os
import urllib.parse
from datetime import datetime
from json import dumps
from requests import post
try:
from .credentials_test import Configuration # for testing
except (ImportError, ModuleNotFoundError) as e:
from .credentials import Configuration
class Logger:
def __init__(self):
self.conf = Configuration()
self.date = datetime.today().strftime("%Y-%m-%d-%H-%M-%S")
self.sendmail_location = self.conf.MAIL_LOCATION
self.log_location = self.conf.LOG_LOCATION
self.free_credentials = {
"user": self.conf.FREE_USER,
"pass": self.conf.FREE_PASSWORD,
}
def file(self, json_nodump):
if not self.log_location:
raise Exception(
"You have not configured the settings to save LOG in a file"
)
if not os.path.isdir(self.log_location):
os.mkdir(self.log_location)
filename = "{}/log_{}".format(self.log_location, self.date) + ".json"
with open(filename, "w") as outfile:
outfile.write(dumps(json_nodump, indent=4, sort_keys=True))
def sms(self, data):
if not self.free_credentials:
raise Exception("You have not configured the settings to send an SMS")
if data != "":
url = "https://smsapi.free-mobile.fr/sendmsg?"
url += "user={}&pass={}&msg={}".format(
self.free_credentials["user"],
self.free_credentials["pass"],
urllib.parse.quote(str(data)),
)
print(url)
r = post(url=url)
print(r)
def mail(self, json_nodump):
if not self.sendmail_location:
raise Exception("You have not configured the settings to send a mail")
p = os.popen("%s -t" % self.sendmail_location, "w")
p.write("From: %s\n" % self.conf.MAIL_FROM)
p.write("To: %s\n" % self.conf.MAIL_TO)
p.write("Subject: AUTO RETWEET {}\n".format(str(self.date)))
p.write("\n") # blank line separating headers from body
p.write(dumps(json_nodump, indent=4))
status = p.close()
if status != 0:
print("Sendmail exit status", status)