2018-08-27 00:14:56 +08:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
|
2018-10-11 04:57:29 +08:00
|
|
|
import json
|
2018-08-27 00:14:56 +08:00
|
|
|
import sqlite3
|
2018-08-27 20:28:30 +08:00
|
|
|
import re
|
|
|
|
import os
|
2018-10-11 04:57:29 +08:00
|
|
|
from flask import Flask, g, jsonify, render_template
|
2018-08-27 00:14:56 +08:00
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
DATABASE = 'taiko.db'
|
|
|
|
|
|
|
|
|
|
|
|
def get_db():
|
|
|
|
db = getattr(g, '_database', None)
|
|
|
|
if db is None:
|
|
|
|
db = g._database = sqlite3.connect(DATABASE)
|
|
|
|
return db
|
|
|
|
|
|
|
|
|
|
|
|
def query_db(query, args=(), one=False):
|
|
|
|
cur = get_db().execute(query, args)
|
|
|
|
rv = cur.fetchall()
|
|
|
|
cur.close()
|
|
|
|
return (rv[0] if rv else None) if one else rv
|
|
|
|
|
|
|
|
|
2018-08-27 20:28:30 +08:00
|
|
|
def parse_osu(osu):
|
|
|
|
osu_lines = open(osu, 'r').read().replace('\x00', '').split('\n')
|
|
|
|
sections = {}
|
|
|
|
current_section = (None, [])
|
|
|
|
|
|
|
|
for line in osu_lines:
|
|
|
|
line = line.strip()
|
|
|
|
secm = re.match('^\[(\w+)\]$', line)
|
|
|
|
if secm:
|
|
|
|
if current_section:
|
|
|
|
sections[current_section[0]] = current_section[1]
|
|
|
|
current_section = (secm.group(1), [])
|
|
|
|
else:
|
|
|
|
if current_section:
|
|
|
|
current_section[1].append(line)
|
|
|
|
else:
|
|
|
|
current_section = ('Default', [line])
|
|
|
|
|
|
|
|
if current_section:
|
|
|
|
sections[current_section[0]] = current_section[1]
|
|
|
|
|
|
|
|
return sections
|
|
|
|
|
|
|
|
|
|
|
|
def get_osu_key(osu, section, key, default=None):
|
|
|
|
sec = osu[section]
|
|
|
|
for line in sec:
|
|
|
|
ok = line.split(':', 1)[0].strip()
|
|
|
|
ov = line.split(':', 1)[1].strip()
|
|
|
|
|
|
|
|
if ok.lower() == key.lower():
|
|
|
|
return ov
|
|
|
|
|
|
|
|
return default
|
|
|
|
|
|
|
|
|
2018-08-27 00:14:56 +08:00
|
|
|
@app.teardown_appcontext
|
|
|
|
def close_connection(exception):
|
|
|
|
db = getattr(g, '_database', None)
|
|
|
|
if db is not None:
|
|
|
|
db.close()
|
|
|
|
|
|
|
|
|
2018-10-11 04:57:29 +08:00
|
|
|
@app.route('/')
|
|
|
|
def route_index():
|
2018-10-11 05:15:16 +08:00
|
|
|
version = None
|
|
|
|
if os.path.isfile('version.json'):
|
|
|
|
version = json.load(open('version.json', 'r'))
|
2018-10-11 04:57:29 +08:00
|
|
|
return render_template('index.html', version=version)
|
|
|
|
|
|
|
|
|
2018-08-27 00:14:56 +08:00
|
|
|
@app.route('/api/songs')
|
|
|
|
def route_api_songs():
|
2018-08-27 20:28:30 +08:00
|
|
|
songs = query_db('select * from songs where enabled = 1')
|
2018-09-27 02:30:57 +08:00
|
|
|
raw_categories = query_db('select * from categories')
|
|
|
|
categories = {}
|
|
|
|
def_category = {'title': None, 'title_en': None}
|
|
|
|
for cat in raw_categories:
|
|
|
|
categories[cat[0]] = {'title': cat[1], 'title_en': cat[2]}
|
2018-08-27 20:28:30 +08:00
|
|
|
songs_out = []
|
|
|
|
for song in songs:
|
2018-08-28 06:22:09 +08:00
|
|
|
osus = [osu for osu in os.listdir('public/songs/%s' % song[0]) if osu in ['easy.osu', 'normal.osu', 'hard.osu', 'oni.osu']]
|
2018-08-27 20:28:30 +08:00
|
|
|
if osus:
|
2018-08-28 06:22:09 +08:00
|
|
|
osud = parse_osu('public/songs/%s/%s' % (song[0], osus[0]))
|
2018-08-27 20:28:30 +08:00
|
|
|
preview = int(get_osu_key(osud, 'General', 'PreviewTime', 0))
|
|
|
|
else:
|
|
|
|
preview = 0
|
2018-09-27 02:30:57 +08:00
|
|
|
category_out = categories[song[8]] if song[8] in categories else def_category
|
|
|
|
|
|
|
|
songs_out.append({
|
|
|
|
'id': song[0],
|
|
|
|
'title': song[1],
|
|
|
|
'title_en': song[2],
|
|
|
|
'stars': [
|
|
|
|
song[3], song[4], song[5], song[6]
|
|
|
|
],
|
|
|
|
'preview': preview,
|
|
|
|
'category': category_out['title'],
|
2018-10-11 06:13:24 +08:00
|
|
|
'category_en': category_out['title_en'],
|
|
|
|
'type': song[9],
|
|
|
|
'offset': song[10]
|
2018-09-27 02:30:57 +08:00
|
|
|
})
|
2018-08-27 00:14:56 +08:00
|
|
|
|
2018-08-27 20:28:30 +08:00
|
|
|
return jsonify(songs_out)
|
2018-08-27 00:14:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2018-08-27 20:28:30 +08:00
|
|
|
app.run(port=34801)
|