123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- from flask import Flask, render_template
- from flask_paginate import Pagination, get_page_parameter, get_page_args
- from flask_caching import Cache
- from flask import request
- import pendulum
- import subprocess
- import base64
- import os
- base_path = "/messagebase"
- app = Flask(__name__, static_url_path=base_path + "/static")
- @app.template_filter("datefmt")
- def format_datetime(value):
- dt = pendulum.from_timestamp(value, tz=pendulum.tz.local_timezone())
- return dt.to_datetime_string()
- # Check Configuring Flask-Caching section for more details
- cache = Cache(app, config={"CACHE_TYPE": "filesystem", "CACHE_DIR": "cache"})
- import jammin
- bases = {"FSX_GEN": "fsx_bot", "FSX_BOT": "fsx_bot"}
- @cache.cached(timeout=5 * 60, key_prefix="messages")
- def get_messages(base):
- messages = jammin.get_messages(base)
- messages.reverse()
- return messages
- @app.route(base_path + "/list")
- def list_bases():
- return render_template(
- "list.html", bases=bases, base_path=base_path, title="Message Areas"
- )
- # return 'Here would be a listing of message bases'
- @app.route(base_path + "/messages/<area>")
- def display_messages(area):
- if area not in bases:
- return render_template(
- "missing-area.html", base_path=base_path, title="Missing Area"
- )
- # messages = jammin.get_messages(bases[area])
- messages = get_messages(bases[area])
- # messages.reverse() # cached.reverse()
- page = request.args.get(get_page_parameter(), type=int, default=1)
- # get_page_arg defaults to page 1, per_page of 10
- PER_PAGE = 50
- total = len(messages)
- pagination = Pagination(
- page=page,
- total=total,
- css_framework="foundation",
- record_name="messages",
- per_page=PER_PAGE,
- )
- page, per_page, offset = get_page_args()
- start = (page - 1) * PER_PAGE
- end = start + PER_PAGE
- # messages = messages[(page-1) * PER_PAGE:offset+PER_PAGE]
- messages = messages[start:end]
- return render_template(
- "messages.html",
- messages=messages,
- area=area,
- pagination=pagination,
- base_path=base_path,
- title="Messages for " + bases[area],
- )
- def ansi_to_png(raw_ansi_bytes, idx):
- pid = os.getppid()
- ansifile = "{0}-{1}.ans".format(idx, pid)
- pngfile = "{0}-{1}.png".format(idx, pid)
- with open(ansifile, "wb") as fp:
- fp.write(raw_ansi_bytes)
- subprocess.run(["./ansilove", "-d", "-o", pngfile, ansifile])
- with open(pngfile, "rb") as fp:
- png = fp.read()
- os.unlink(ansifile)
- os.unlink(pngfile)
- return base64.b64encode(png).decode("utf-8")
- # <img alt="My Image" src="data:image/png;base64,
- @app.route(base_path + "/read/<area>/<int:msgno>")
- def display_message(area, msgno):
- if area not in bases:
- return render_template(
- "missing-area.html", base_path=base_path, title="Missing Area"
- )
- message = jammin.read_message(bases[area], msgno)
- if "text" in message:
- if "\x1b" in message["text"]:
- # Ok, the message contains ANSI CODES -- Convert
- message["png"] = ansi_to_png(message["bytes"].replace(b"\r", b"\n"), msgno)
- else:
- message["text"] = message["text"].replace("\r", "\n") # <br >\n")
- return render_template(
- "message.html",
- message=message,
- area=area,
- msgnumber=msgno,
- base_path=base_path,
- title="Message {0}".format(msgno),
- )
|