2012-10-20 18:05:39 +00:00
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
from flask import request, send_file
|
|
|
|
from web import app
|
|
|
|
from db import Track
|
|
|
|
import os.path, uuid
|
|
|
|
|
|
|
|
@app.route('/rest/stream.view')
|
|
|
|
def stream_media():
|
|
|
|
id, maxBitRate, format, timeOffset, size, estimateContentLength = map(request.args.get, [ 'id', 'maxBitRate', 'format', 'timeOffset', 'size', 'estimateContentLength' ])
|
|
|
|
if not id:
|
2012-10-20 18:23:38 +00:00
|
|
|
return request.error_formatter(10, 'Missing media id')
|
2012-10-20 18:05:39 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
tid = uuid.UUID(id)
|
|
|
|
except:
|
2012-10-20 18:23:38 +00:00
|
|
|
return request.error_formatter(0, 'Invalid media id')
|
2012-10-20 18:05:39 +00:00
|
|
|
|
|
|
|
track = Track.query.get(tid)
|
|
|
|
if not track:
|
2012-10-20 18:23:38 +00:00
|
|
|
return request.error_formatter(70, 'Media not found'), 404
|
2012-10-20 18:05:39 +00:00
|
|
|
|
|
|
|
if maxBitRate:
|
|
|
|
try:
|
|
|
|
maxBitRate = int(maxBitRate)
|
|
|
|
except:
|
2012-10-20 18:23:38 +00:00
|
|
|
return request.error_formatter(0, 'Invalid bitrate value')
|
2012-10-20 18:05:39 +00:00
|
|
|
|
|
|
|
if track.bitrate > maxBitRate:
|
|
|
|
# TODO transcode
|
|
|
|
pass
|
|
|
|
|
|
|
|
if format != 'mp3':
|
|
|
|
# TODO transcode
|
|
|
|
pass
|
|
|
|
|
|
|
|
if estimateContentLength == 'true':
|
|
|
|
return send_file(track.path), 200, { 'Content-Length': os.path.getsize(track.path) }
|
|
|
|
|
|
|
|
return send_file(track.path)
|
|
|
|
|