Commit d92cd6f3 authored by Bui's avatar Bui

add view caching

parent ca85bc1b
...@@ -4,12 +4,19 @@ from __future__ import division ...@@ -4,12 +4,19 @@ from __future__ import division
import json import json
import sqlite3 import sqlite3
import tempfile
import re import re
import os import os
from flask import Flask, g, jsonify, render_template, request, abort, redirect from flask import Flask, g, jsonify, render_template, request, abort, redirect
from flask_caching import Cache
from ffmpy import FFmpeg from ffmpy import FFmpeg
app = Flask(__name__) app = Flask(__name__)
try:
app.cache = Cache(app, config={'CACHE_TYPE': 'redis'})
except RuntimeError:
app.cache = Cache(app, config={'CACHE_TYPE': 'filesystem', 'CACHE_DIR': tempfile.gettempdir()})
DATABASE = 'taiko.db' DATABASE = 'taiko.db'
DEFAULT_URL = 'https://github.com/bui/taiko-web/' DEFAULT_URL = 'https://github.com/bui/taiko-web/'
...@@ -149,6 +156,7 @@ def route_index(): ...@@ -149,6 +156,7 @@ def route_index():
@app.route('/api/preview') @app.route('/api/preview')
@app.cache.cached(timeout=15)
def route_api_preview(): def route_api_preview():
song_id = request.args.get('id', None) song_id = request.args.get('id', None)
if not song_id or not re.match('^[0-9]+$', song_id): if not song_id or not re.match('^[0-9]+$', song_id):
...@@ -167,6 +175,7 @@ def route_api_preview(): ...@@ -167,6 +175,7 @@ def route_api_preview():
@app.route('/api/songs') @app.route('/api/songs')
@app.cache.cached(timeout=15)
def route_api_songs(): def route_api_songs():
songs = query_db('select * from songs where enabled = 1') songs = query_db('select * from songs where enabled = 1')
...@@ -210,6 +219,7 @@ def route_api_songs(): ...@@ -210,6 +219,7 @@ def route_api_songs():
@app.route('/api/config') @app.route('/api/config')
@app.cache.cached(timeout=15)
def route_api_config(): def route_api_config():
config = get_config() config = get_config()
return jsonify(config) return jsonify(config)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment