2024-09-03 17:25:25 -06:00
|
|
|
import datetime
|
2024-09-03 16:37:39 -06:00
|
|
|
import io
|
|
|
|
|
|
|
|
import redis
|
2024-09-04 16:54:21 -06:00
|
|
|
from PIL import Image, ImageDraw, ImageFont
|
2024-09-03 17:25:25 -06:00
|
|
|
from flask import Flask, send_file, make_response
|
2024-09-03 16:37:39 -06:00
|
|
|
|
2024-09-04 16:54:21 -06:00
|
|
|
NO_MAP_STR = 'NO GLOBAL MAP AVAILABLE'
|
|
|
|
|
2024-09-03 16:37:39 -06:00
|
|
|
app = Flask(__name__)
|
|
|
|
redis_client = redis.Redis(host='localhost', port=6379)
|
|
|
|
|
|
|
|
|
|
|
|
@app.route('/global')
|
|
|
|
def serve_global_map():
|
|
|
|
global_map_data = redis_client.get('global_map')
|
|
|
|
if global_map_data is None:
|
2024-09-04 16:54:21 -06:00
|
|
|
img = Image.new('RGB', (500, 300), color=(255, 255, 255))
|
|
|
|
d = ImageDraw.Draw(img)
|
|
|
|
fnt = ImageFont.load_default(size=30)
|
|
|
|
w, h = fnt.getbbox(NO_MAP_STR)[2:4]
|
|
|
|
d.text(((500 - w) / 2, (300 - h) / 2), NO_MAP_STR, font=fnt, fill=(0, 0, 0))
|
|
|
|
buf = io.BytesIO()
|
|
|
|
img.save(buf, format='PNG')
|
|
|
|
buf.seek(0)
|
|
|
|
return send_file(buf, mimetype='image/png')
|
2024-09-03 16:37:39 -06:00
|
|
|
|
|
|
|
buf = io.BytesIO(global_map_data)
|
|
|
|
buf.seek(0)
|
2024-09-03 17:25:25 -06:00
|
|
|
response = make_response(send_file(buf, mimetype='image/png'))
|
|
|
|
expires = datetime.datetime.now()
|
|
|
|
expires = expires + datetime.timedelta(minutes=10)
|
2024-09-03 17:30:02 -06:00
|
|
|
response.headers['Cache-Control'] = 'public, max-age=600'
|
2024-09-03 17:25:25 -06:00
|
|
|
response.headers['Expires'] = expires.strftime("%a, %d %b %Y %H:%M:%S GMT")
|
|
|
|
return response
|
2024-09-03 16:37:39 -06:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app.run()
|