2019-10-07 12:21:26 +01:00
|
|
|
from flask import Blueprint, jsonify
|
|
|
|
from datetime import date
|
|
|
|
import logging
|
|
|
|
|
2019-10-19 17:14:11 +01:00
|
|
|
from music.api.decorators import login_or_basic_auth, lastfm_username_required
|
2019-10-07 12:21:26 +01:00
|
|
|
|
2019-10-19 17:14:11 +01:00
|
|
|
import music.db.database as database
|
2019-10-07 12:21:26 +01:00
|
|
|
|
|
|
|
blueprint = Blueprint('fm-api', __name__)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route('/today', methods=['GET'])
|
|
|
|
@login_or_basic_auth
|
|
|
|
@lastfm_username_required
|
2020-04-30 14:54:05 +01:00
|
|
|
def daily_scrobbles(user=None):
|
2019-10-07 12:21:26 +01:00
|
|
|
|
2020-04-30 14:54:05 +01:00
|
|
|
net = database.get_authed_lastfm_network(user)
|
2019-10-07 12:21:26 +01:00
|
|
|
|
|
|
|
total = net.get_scrobble_count_from_date(input_date=date.today())
|
|
|
|
|
|
|
|
return jsonify({
|
|
|
|
'username': net.username,
|
|
|
|
'scrobbles_today': total
|
|
|
|
}), 200
|