|
|
@ -2,8 +2,7 @@ import os |
|
|
|
import re |
|
|
|
import shutil |
|
|
|
import urllib.request |
|
|
|
from datetime import datetime, timezone |
|
|
|
import pytz |
|
|
|
from datetime import datetime |
|
|
|
from urllib.parse import urlparse |
|
|
|
from mimetypes import guess_type |
|
|
|
import jinja2 |
|
|
@ -103,8 +102,7 @@ class Logbot(Bot): |
|
|
|
if "@" in folder_name: # hacky |
|
|
|
folder_name = self._parse_room_name(folder_name) |
|
|
|
feed_path = os.path.join(self.output, folder_name, "feed.rss.xml") |
|
|
|
local_timezone = str(datetime.now(timezone.utc).astimezone().tzinfo) |
|
|
|
date = datetime.now(pytz.timezone(local_timezone)).strftime("%a, %d %b %Y %H:%M:%S %Z") # logs are saved with local timezone |
|
|
|
date = datetime.now().strftime("%a, %d %b %Y %H:%M:%S") |
|
|
|
print(date) |
|
|
|
template = jinja2.Template(open("template.rss").read()) # self.feedtemplate would be useful to have in the conf |
|
|
|
with open(feed_path, "w") as out: |
|
|
@ -123,8 +121,7 @@ class Logbot(Bot): |
|
|
|
"""Save new entry to database.""" |
|
|
|
keys = [x for x in self.db[message.room]["messages"].keys()] |
|
|
|
keys.sort(key=int) |
|
|
|
local_timezone = str(datetime.now(timezone.utc).astimezone().tzinfo) |
|
|
|
date = datetime.now(pytz.timezone(local_timezone)).strftime("%a, %d %b %Y %H:%M:%S %Z") # logs are saved with local timezone |
|
|
|
date = datetime.now().strftime("%a, %d %b %Y %H:%M:%S") |
|
|
|
if not keys: |
|
|
|
new_key = "0" |
|
|
|
else: |
|
|
|