2018-12-19 17:28:10 +03:00
from bottle import Bottle , route , get , post , run , template , static_file , request , response , FormsDict
2018-11-24 18:29:24 +03:00
from importlib . machinery import SourceFileLoader
2018-11-27 21:05:50 +03:00
import urllib
2018-11-24 18:29:24 +03:00
import waitress
import os
import datetime
2018-11-28 19:45:52 +03:00
from cleanup import *
2018-11-30 17:44:30 +03:00
from utilities import *
2019-03-03 00:55:22 +03:00
from malojatime import *
2018-11-27 18:08:14 +03:00
import sys
2019-03-10 19:38:33 +03:00
import unicodedata
2019-03-11 22:44:37 +03:00
import json
2019-03-28 14:45:23 +03:00
from htmlgenerators import KeySplit
2018-11-24 18:29:24 +03:00
2018-12-19 17:28:10 +03:00
dbserver = Bottle ( )
2018-11-24 18:29:24 +03:00
2018-11-25 20:17:14 +03:00
SCROBBLES = [ ] # Format: tuple(track_ref,timestamp,saved)
ARTISTS = [ ] # Format: artist
TRACKS = [ ] # Format: tuple(frozenset(artist_ref,...),title)
2019-03-11 20:06:45 +03:00
### OPTIMIZATION
SCROBBLESDICT = { } # timestamps to scrobble mapping
STAMPS = [ ] # sorted
2019-03-12 16:37:04 +03:00
#STAMPS_SET = set() # as set for easier check if exists
2018-11-29 18:05:44 +03:00
2018-12-19 17:28:10 +03:00
cla = CleanerAgent ( )
coa = CollectorAgent ( )
2018-11-30 17:44:30 +03:00
clients = [ ]
2018-11-28 19:45:52 +03:00
2018-11-28 15:02:43 +03:00
lastsync = 0
2018-12-21 18:32:21 +03:00
# rulestate that the entire current database was built with, or False if the database was built from inconsistent scrobble files
db_rulestate = False
2018-12-20 19:23:16 +03:00
2018-11-25 20:17:14 +03:00
2018-11-30 17:44:30 +03:00
### symmetric keys are fine for now since we hopefully use HTTPS
def loadAPIkeys ( ) :
global clients
2018-11-30 18:01:32 +03:00
createTSV ( " clients/authenticated_machines.tsv " )
2018-11-30 17:44:30 +03:00
clients = parseTSV ( " clients/authenticated_machines.tsv " , " string " , " string " )
2019-03-11 16:32:53 +03:00
log ( " Authenticated Machines: " + " , " . join ( [ m [ 1 ] for m in clients ] ) )
2018-11-25 20:17:14 +03:00
2018-11-30 17:44:30 +03:00
def checkAPIkey ( k ) :
return ( k in [ k for [ k , d ] in clients ] )
2018-11-25 20:17:14 +03:00
2018-12-12 21:37:59 +03:00
####
## Getting dict representations of database objects
####
2018-11-25 20:17:14 +03:00
def getScrobbleObject ( o ) :
track = getTrackObject ( TRACKS [ o [ 0 ] ] )
return { " artists " : track [ " artists " ] , " title " : track [ " title " ] , " time " : o [ 1 ] }
2019-03-14 13:07:20 +03:00
2018-11-25 20:17:14 +03:00
def getArtistObject ( o ) :
return o
2019-03-14 13:07:20 +03:00
2018-11-25 20:17:14 +03:00
def getTrackObject ( o ) :
artists = [ getArtistObject ( ARTISTS [ a ] ) for a in o [ 0 ] ]
return { " artists " : artists , " title " : o [ 1 ] }
2018-12-12 21:37:59 +03:00
####
## Creating or finding existing database entries
####
2019-03-14 13:07:20 +03:00
2019-03-11 22:04:23 +03:00
def createScrobble ( artists , title , time , volatile = False ) :
2019-03-12 16:37:04 +03:00
while ( time in SCROBBLESDICT ) :
2018-11-29 18:05:44 +03:00
time + = 1
i = getTrackID ( artists , title )
2019-03-11 22:04:23 +03:00
obj = ( i , time , volatile ) # if volatile generated, we simply pretend we have already saved it to disk
2019-03-11 20:06:45 +03:00
#SCROBBLES.append(obj)
# immediately insert scrobble correctly so we can guarantee sorted list
index = insert ( SCROBBLES , obj , key = lambda x : x [ 1 ] )
SCROBBLESDICT [ time ] = obj
STAMPS . insert ( index , time ) #should be same index as scrobblelist
2019-03-03 00:55:22 +03:00
register_scrobbletime ( time )
2019-03-11 22:44:37 +03:00
invalidate_caches ( )
2018-11-25 20:17:14 +03:00
2018-12-05 16:30:50 +03:00
2018-11-29 18:05:44 +03:00
def readScrobble ( artists , title , time ) :
2019-03-12 16:37:04 +03:00
while ( time in SCROBBLESDICT ) :
2018-11-29 18:05:44 +03:00
time + = 1
i = getTrackID ( artists , title )
2018-11-25 20:17:14 +03:00
obj = ( i , time , True )
SCROBBLES . append ( obj )
2019-03-12 16:37:04 +03:00
SCROBBLESDICT [ time ] = obj
2019-03-11 20:06:45 +03:00
#STAMPS.append(time)
2019-03-14 13:07:20 +03:00
2018-11-25 20:17:14 +03:00
def getArtistID ( name ) :
obj = name
2018-12-21 20:22:58 +03:00
objlower = name . lower ( )
2019-03-14 13:07:20 +03:00
2018-12-21 20:22:58 +03:00
try :
return ARTISTS . index ( obj )
except :
pass
2018-11-25 20:17:14 +03:00
try :
2018-12-21 20:22:58 +03:00
return [ a . lower ( ) for a in ARTISTS ] . index ( objlower )
2018-11-25 20:17:14 +03:00
except :
i = len ( ARTISTS )
ARTISTS . append ( obj )
2018-12-21 20:22:58 +03:00
return i
2019-03-14 13:07:20 +03:00
2018-11-25 20:17:14 +03:00
def getTrackID ( artists , title ) :
artistset = set ( )
for a in artists :
artistset . add ( getArtistID ( name = a ) )
obj = ( frozenset ( artistset ) , title )
2018-12-21 20:22:58 +03:00
objlower = ( frozenset ( artistset ) , title . lower ( ) )
2019-03-14 13:07:20 +03:00
2018-11-25 20:17:14 +03:00
try :
2018-12-21 20:22:58 +03:00
return TRACKS . index ( obj )
except :
pass
try :
# not the best performance
return [ ( t [ 0 ] , t [ 1 ] . lower ( ) ) for t in TRACKS ] . index ( objlower )
2018-11-25 20:17:14 +03:00
except :
i = len ( TRACKS )
TRACKS . append ( obj )
2018-12-21 20:22:58 +03:00
return i
2018-11-24 18:29:24 +03:00
2019-02-15 21:39:19 +03:00
########
########
## HTTP requests and their associated functions
########
########
2018-12-12 21:37:59 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /test " )
2018-12-14 21:52:31 +03:00
def test_server ( ) :
apikey = request . query . get ( " key " )
response . set_header ( " Access-Control-Allow-Origin " , " * " )
2018-12-21 18:32:21 +03:00
if apikey is not None and not ( checkAPIkey ( apikey ) ) :
2018-12-14 21:52:31 +03:00
response . status = 403
2018-12-21 18:32:21 +03:00
return " Wrong API key "
2019-03-14 13:07:20 +03:00
2018-12-21 18:32:21 +03:00
elif db_rulestate :
2018-12-14 21:52:31 +03:00
response . status = 204
return
2018-12-21 18:32:21 +03:00
else :
response . status = 205
return
2019-03-14 13:07:20 +03:00
2018-12-27 05:09:29 +03:00
# 204 Database server is up and operational
# 205 Database server is up, but DB is not fully built or is inconsistent
# 403 Database server is up, but provided API key is not valid
2018-12-12 21:37:59 +03:00
2019-02-15 21:39:19 +03:00
## All database functions are separated - the external wrapper only reads the request keys, converts them into lists and renames them where necessary, and puts the end result in a dict if not already so it can be returned as json
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /scrobbles " )
2019-02-15 20:11:40 +03:00
def get_scrobbles_external ( ) :
2018-12-20 01:17:38 +03:00
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
k_filter , k_time , _ , k_amount = KeySplit ( keys )
ckeys = { * * k_filter , * * k_time , * * k_amount }
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
result = get_scrobbles ( * * ckeys )
2019-02-15 21:39:19 +03:00
return { " list " : result }
2019-02-15 20:11:40 +03:00
def get_scrobbles ( * * keys ) :
2019-03-12 14:56:53 +03:00
r = db_query ( * * { k : keys [ k ] for k in keys if k in [ " artist " , " artists " , " title " , " since " , " to " , " within " , " associated " , " track " , " max_ " ] } )
#if keys.get("max_") is not None:
# return r[:int(keys.get("max_"))]
#else:
# return r
return r
2019-02-15 21:39:19 +03:00
2019-02-16 18:28:32 +03:00
2019-03-03 03:29:55 +03:00
# UNUSED
#@dbserver.route("/amounts")
#def get_amounts_external():
# return get_amounts() #really now
#
#def get_amounts():
# return {"scrobbles":len(SCROBBLES),"tracks":len(TRACKS),"artists":len(ARTISTS)}
2019-03-14 13:07:20 +03:00
2019-02-16 18:28:32 +03:00
2019-02-02 20:08:30 +03:00
@dbserver.route ( " /numscrobbles " )
2019-02-15 21:39:19 +03:00
def get_scrobbles_num_external ( ) :
2019-02-02 20:08:30 +03:00
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
k_filter , k_time , _ , k_amount = KeySplit ( keys )
ckeys = { * * k_filter , * * k_time , * * k_amount }
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
result = get_scrobbles_num ( * * ckeys )
2019-02-15 21:39:19 +03:00
return { " amount " : result }
def get_scrobbles_num ( * * keys ) :
2019-02-21 02:13:18 +03:00
r = db_query ( * * { k : keys [ k ] for k in keys if k in [ " artist " , " track " , " artists " , " title " , " since " , " to " , " within " , " associated " ] } )
2019-02-15 21:39:19 +03:00
return len ( r )
2019-03-03 03:29:55 +03:00
2019-03-12 18:06:09 +03:00
#for multiple since values (must be ordered)
# DOESN'T SEEM TO ACTUALLY BE FASTER
# REEVALUATE
#def get_scrobbles_num_multiple(sinces=[],to=None,**keys):
2019-03-14 13:07:20 +03:00
#
2019-03-12 18:06:09 +03:00
# sinces_stamps = [time_stamps(since,to,None)[0] for since in sinces]
# #print(sinces)
# #print(sinces_stamps)
# minsince = sinces[-1]
# r = db_query(**{k:keys[k] for k in keys if k in ["artist","track","artists","title","associated","to"]},since=minsince)
2019-03-14 13:07:20 +03:00
#
2019-03-12 18:06:09 +03:00
# #print(r)
2019-03-14 13:07:20 +03:00
#
2019-03-12 18:06:09 +03:00
# validtracks = [0 for s in sinces]
2019-03-14 13:07:20 +03:00
#
2019-03-12 18:06:09 +03:00
# i = 0
# si = 0
# while True:
# if si == len(sinces): break
# if i == len(r): break
# if r[i]["time"] >= sinces_stamps[si]:
# validtracks[si] += 1
# else:
# si += 1
# continue
# i += 1
2019-03-14 13:07:20 +03:00
#
#
2019-03-12 18:06:09 +03:00
# return validtracks
2019-03-14 13:07:20 +03:00
2019-03-12 18:06:09 +03:00
2019-02-16 18:28:32 +03:00
# UNUSED
2019-03-03 03:29:55 +03:00
#@dbserver.route("/charts")
#def get_charts_external():
# keys = FormsDict.decode(request.query)
# ckeys = {}
# ckeys["since"], ckeys["to"], ckeys["within"] = keys.get("since"), keys.get("to"), keys.get("in")
2019-03-14 13:07:20 +03:00
#
# result = get_scrobbles_num(**ckeys)
2019-03-03 03:29:55 +03:00
# return {"number":result}
2019-02-16 18:28:32 +03:00
#def get_charts(**keys):
# return db_aggregate(**{k:keys[k] for k in keys if k in ["since","to","within"]})
2019-02-15 21:39:19 +03:00
2019-02-02 20:08:30 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /tracks " )
2019-02-15 21:39:19 +03:00
def get_tracks_external ( ) :
2018-12-17 01:56:30 +03:00
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
k_filter , _ , _ , _ = KeySplit ( keys , forceArtist = True )
ckeys = { * * k_filter }
2019-02-16 18:28:32 +03:00
2019-02-15 23:07:08 +03:00
result = get_tracks ( * * ckeys )
2019-02-15 21:39:19 +03:00
return { " list " : result }
2019-02-15 23:07:08 +03:00
def get_tracks ( artist = None ) :
2019-03-14 13:07:20 +03:00
2018-11-30 15:39:12 +03:00
if artist is not None :
2019-02-15 23:07:08 +03:00
artistid = ARTISTS . index ( artist )
else :
artistid = None
2019-02-15 21:39:19 +03:00
2018-11-25 20:17:14 +03:00
# Option 1
2019-02-15 21:39:19 +03:00
return [ getTrackObject ( t ) for t in TRACKS if ( artistid in t [ 0 ] ) or ( artistid == None ) ]
2019-03-14 13:07:20 +03:00
2018-11-25 20:17:14 +03:00
# Option 2 is a bit more elegant but much slower
#tracklist = [getTrackObject(t) for t in TRACKS]
#ls = [t for t in tracklist if (artist in t["artists"]) or (artist==None)]
2019-02-15 21:39:19 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /artists " )
2019-02-15 21:39:19 +03:00
def get_artists_external ( ) :
result = get_artists ( )
return { " list " : result }
2018-11-25 16:49:53 +03:00
def get_artists ( ) :
2019-02-15 21:39:19 +03:00
return ARTISTS #well
2019-03-14 13:07:20 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /charts/artists " )
2019-02-15 21:39:19 +03:00
def get_charts_artists_external ( ) :
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
_ , k_time , _ , _ = KeySplit ( keys )
ckeys = { * * k_time }
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
result = get_charts_artists ( * * ckeys )
2019-02-15 21:39:19 +03:00
return { " list " : result }
def get_charts_artists ( * * keys ) :
return db_aggregate ( by = " ARTIST " , * * { k : keys [ k ] for k in keys if k in [ " since " , " to " , " within " ] } )
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /charts/tracks " )
2019-02-15 21:39:19 +03:00
def get_charts_tracks_external ( ) :
2018-12-22 16:06:21 +03:00
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
k_filter , k_time , _ , _ = KeySplit ( keys , forceArtist = True )
ckeys = { * * k_filter , * * k_time }
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
result = get_charts_tracks ( * * ckeys )
2019-02-15 21:39:19 +03:00
return { " list " : result }
2019-03-14 13:07:20 +03:00
2019-02-15 21:39:19 +03:00
def get_charts_tracks ( * * keys ) :
return db_aggregate ( by = " TRACK " , * * { k : keys [ k ] for k in keys if k in [ " since " , " to " , " within " , " artist " ] } )
2019-03-14 13:07:20 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /pulse " )
2019-02-15 23:07:08 +03:00
def get_pulse_external ( ) :
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
k_filter , k_time , k_internal , k_amount = KeySplit ( keys )
ckeys = { * * k_filter , * * k_time , * * k_internal , * * k_amount }
2019-02-15 23:07:08 +03:00
results = get_pulse ( * * ckeys )
return { " list " : results }
2019-03-03 03:29:55 +03:00
def get_pulse ( * * keys ) :
2018-12-08 02:01:44 +03:00
2019-03-14 13:07:20 +03:00
rngs = ranges ( * * { k : keys [ k ] for k in keys if k in [ " since " , " to " , " within " , " step " , " stepn " , " trail " ] } )
2018-12-08 02:01:44 +03:00
results = [ ]
2019-03-14 13:07:20 +03:00
2019-03-03 03:29:55 +03:00
for ( a , b ) in rngs :
res = len ( db_query ( since = a , to = b , * * { k : keys [ k ] for k in keys if k in [ " artists " , " artist " , " track " , " title " , " associated " ] } ) )
results . append ( { " from " : a , " to " : b , " scrobbles " : res } )
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
return results
2019-03-14 13:07:20 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /top/artists " )
2019-02-15 23:07:08 +03:00
def get_top_artists_external ( ) :
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
_ , k_time , k_internal , _ = KeySplit ( keys )
ckeys = { * * k_time , * * k_internal }
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
results = get_top_artists ( * * ckeys )
return { " list " : results }
2019-03-14 13:07:20 +03:00
2019-03-03 03:29:55 +03:00
def get_top_artists ( * * keys ) :
2019-03-14 13:07:20 +03:00
2019-03-03 03:29:55 +03:00
rngs = ranges ( * * { k : keys [ k ] for k in keys if k in [ " since " , " to " , " within " , " step " , " stepn " , " trail " ] } )
2018-12-05 16:30:50 +03:00
results = [ ]
2019-03-14 13:07:20 +03:00
2019-03-03 03:29:55 +03:00
for ( a , b ) in rngs :
2018-12-15 17:25:00 +03:00
try :
2019-03-03 03:29:55 +03:00
res = db_aggregate ( since = a , to = b , by = " ARTIST " ) [ 0 ]
results . append ( { " from " : a , " to " : b , " artist " : res [ " artist " ] , " scrobbles " : res [ " scrobbles " ] } )
2018-12-15 17:25:00 +03:00
except :
2019-03-03 03:29:55 +03:00
results . append ( { " from " : a , " to " : b , " artist " : None , " scrobbles " : 0 } )
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
return results
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /top/tracks " )
2019-02-15 23:07:08 +03:00
def get_top_tracks_external ( ) :
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
_ , k_time , k_internal , _ = KeySplit ( keys )
ckeys = { * * k_time , * * k_internal }
# IMPLEMENT THIS FOR TOP TRACKS OF ARTIST AS WELL?
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
results = get_top_tracks ( * * ckeys )
return { " list " : results }
2019-03-03 03:29:55 +03:00
def get_top_tracks ( * * keys ) :
2019-02-15 23:07:08 +03:00
2019-03-03 03:29:55 +03:00
rngs = ranges ( * * { k : keys [ k ] for k in keys if k in [ " since " , " to " , " within " , " step " , " stepn " , " trail " ] } )
2018-12-16 19:52:13 +03:00
results = [ ]
2019-03-14 13:07:20 +03:00
2019-03-03 03:29:55 +03:00
for ( a , b ) in rngs :
2018-12-16 19:52:13 +03:00
try :
2019-03-03 03:29:55 +03:00
res = db_aggregate ( since = a , to = b , by = " TRACK " ) [ 0 ]
results . append ( { " from " : a , " to " : b , " track " : res [ " track " ] , " scrobbles " : res [ " scrobbles " ] } )
2018-12-16 19:52:13 +03:00
except :
2019-03-03 03:29:55 +03:00
results . append ( { " from " : a , " to " : b , " track " : None , " scrobbles " : 0 } )
2019-03-14 13:07:20 +03:00
2019-02-15 23:07:08 +03:00
return results
2019-03-14 13:07:20 +03:00
2019-02-17 17:02:27 +03:00
@dbserver.route ( " /artistinfo " )
def artistInfo_external ( ) :
2018-12-17 01:56:30 +03:00
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
k_filter , _ , _ , _ = KeySplit ( keys , forceArtist = True )
ckeys = { * * k_filter }
2019-03-14 13:07:20 +03:00
2019-02-17 17:02:27 +03:00
results = artistInfo ( * * ckeys )
return results
2019-03-14 13:07:20 +03:00
2019-02-17 17:02:27 +03:00
def artistInfo ( artist ) :
2019-03-14 13:07:20 +03:00
2018-12-17 01:56:30 +03:00
charts = db_aggregate ( by = " ARTIST " )
2018-12-24 23:25:09 +03:00
scrobbles = len ( db_query ( artists = [ artist ] ) ) #we cant take the scrobble number from the charts because that includes all countas scrobbles
2018-12-17 01:56:30 +03:00
try :
c = [ e for e in charts if e [ " artist " ] == artist ] [ 0 ]
2018-12-19 17:28:10 +03:00
others = coa . getAllAssociated ( artist )
2019-03-14 13:07:20 +03:00
position = charts . index ( c )
while position != 0 and c [ " scrobbles " ] == charts [ position - 1 ] [ " scrobbles " ] : position - = 1
return { " scrobbles " : scrobbles , " position " : position + 1 , " associated " : others }
2018-12-17 01:56:30 +03:00
except :
# if the artist isnt in the charts, they are not being credited and we need to show information about the credited one
2018-12-19 17:28:10 +03:00
artist = coa . getCredited ( artist )
2018-12-17 01:56:30 +03:00
c = [ e for e in charts if e [ " artist " ] == artist ] [ 0 ]
2019-03-14 13:07:20 +03:00
position = charts . index ( c )
while position != 0 and c [ " scrobbles " ] == charts [ position - 1 ] [ " scrobbles " ] : position - = 1
return { " replace " : artist , " scrobbles " : scrobbles , " position " : position + 1 }
@dbserver.route ( " /trackinfo " )
2019-02-17 17:02:27 +03:00
def trackInfo_external ( ) :
2018-12-27 16:57:25 +03:00
keys = FormsDict . decode ( request . query )
2019-03-28 14:45:23 +03:00
k_filter , _ , _ , _ = KeySplit ( keys , forceTrack = True )
ckeys = { * * k_filter }
2019-03-14 13:07:20 +03:00
2019-02-17 17:02:27 +03:00
results = trackInfo ( * * ckeys )
return results
def trackInfo ( artists , title ) :
2018-12-27 16:57:25 +03:00
charts = db_aggregate ( by = " TRACK " )
2019-03-14 13:07:20 +03:00
#scrobbles = len(db_query(artists=artists,title=title)) #chart entry of track always has right scrobble number, no countas rules here
2018-12-27 16:57:25 +03:00
c = [ e for e in charts if set ( e [ " track " ] [ " artists " ] ) == set ( artists ) and e [ " track " ] [ " title " ] == title ] [ 0 ]
2019-03-14 13:07:20 +03:00
scrobbles = c [ " scrobbles " ]
position = charts . index ( c )
while position != 0 and c [ " scrobbles " ] == charts [ position - 1 ] [ " scrobbles " ] : position - = 1
return { " scrobbles " : scrobbles , " position " : position + 1 }
2019-02-17 17:02:27 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.get ( " /newscrobble " )
2018-11-30 15:39:12 +03:00
def pseudo_post_scrobble ( ) :
2018-11-27 21:05:50 +03:00
keys = FormsDict . decode ( request . query ) # The Dal★Shabet handler
2018-11-26 18:21:07 +03:00
artists = keys . get ( " artist " )
title = keys . get ( " title " )
2019-01-11 16:14:00 +03:00
apikey = keys . get ( " key " )
if not ( checkAPIkey ( apikey ) ) :
response . status = 403
return " "
2018-11-28 19:45:52 +03:00
try :
time = int ( keys . get ( " time " ) )
except :
2018-11-28 17:33:30 +03:00
time = int ( datetime . datetime . now ( tz = datetime . timezone . utc ) . timestamp ( ) )
2018-12-19 17:28:10 +03:00
( artists , title ) = cla . fullclean ( artists , title )
2018-11-28 19:45:52 +03:00
2018-11-27 18:08:14 +03:00
## this is necessary for localhost testing
response . set_header ( " Access-Control-Allow-Origin " , " * " )
2019-03-14 13:07:20 +03:00
2018-11-26 18:21:07 +03:00
createScrobble ( artists , title , time )
2019-03-14 13:07:20 +03:00
2018-11-28 15:02:43 +03:00
if ( time - lastsync ) > 3600 :
sync ( )
2019-03-14 13:07:20 +03:00
2018-11-27 18:08:14 +03:00
return " "
2019-03-14 13:07:20 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.post ( " /newscrobble " )
2018-11-30 15:39:12 +03:00
def post_scrobble ( ) :
keys = FormsDict . decode ( request . forms ) # The Dal★Shabet handler
artists = keys . get ( " artist " )
title = keys . get ( " title " )
2018-11-30 17:44:30 +03:00
apikey = keys . get ( " key " )
if not ( checkAPIkey ( apikey ) ) :
response . status = 403
return " "
2019-03-14 13:07:20 +03:00
2018-11-30 15:39:12 +03:00
try :
time = int ( keys . get ( " time " ) )
except :
time = int ( datetime . datetime . now ( tz = datetime . timezone . utc ) . timestamp ( ) )
2018-12-19 17:28:10 +03:00
( artists , title ) = cla . fullclean ( artists , title )
2018-11-30 15:39:12 +03:00
## this is necessary for localhost testing
2019-03-28 14:45:23 +03:00
#response.set_header("Access-Control-Allow-Origin","*")
2019-03-14 13:07:20 +03:00
2018-11-30 15:39:12 +03:00
createScrobble ( artists , title , time )
2019-03-14 13:07:20 +03:00
2019-02-02 18:54:01 +03:00
#if (time - lastsync) > 3600:
# sync()
sync ( ) #let's just always sync, not like one filesystem access every three minutes is a problem and it avoids lost tracks when we lose power
2019-03-14 13:07:20 +03:00
2018-11-30 15:39:12 +03:00
return " "
2019-03-14 13:07:20 +03:00
2018-12-19 17:28:10 +03:00
@dbserver.route ( " /sync " )
2018-11-27 18:08:14 +03:00
def abouttoshutdown ( ) :
2018-11-28 15:02:43 +03:00
sync ( )
2018-11-27 18:08:14 +03:00
#sys.exit()
2018-12-20 19:23:16 +03:00
@dbserver.post ( " /newrule " )
def newrule ( ) :
keys = FormsDict . decode ( request . forms )
2018-12-29 18:57:52 +03:00
apikey = keys . pop ( " key " , None )
if ( checkAPIkey ( apikey ) ) :
addEntry ( " rules/webmade.tsv " , [ k for k in keys ] )
global db_rulestate
db_rulestate = False
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
@dbserver.route ( " /issues " )
2019-02-21 11:43:35 +03:00
def issues_external ( ) : #probably not even needed
return issues ( )
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
def issues ( ) :
combined = [ ]
duplicates = [ ]
newartists = [ ]
2018-12-21 18:32:21 +03:00
inconsistent = not db_rulestate
2018-12-23 01:19:52 +03:00
# if the user manually edits files while the server is running this won't show, but too lazy to check the rulestate here
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
import itertools
import difflib
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
sortedartists = ARTISTS . copy ( )
sortedartists . sort ( key = len , reverse = True )
reversesortedartists = sortedartists . copy ( )
reversesortedartists . reverse ( )
for a in reversesortedartists :
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
nochange = cla . confirmedReal ( a )
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
st = a
lis = [ ]
reachedmyself = False
for ar in sortedartists :
if ( ar != a ) and not reachedmyself :
continue
elif not reachedmyself :
reachedmyself = True
continue
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
if ( ar . lower ( ) == a . lower ( ) ) or ( " the " + ar . lower ( ) == a . lower ( ) ) or ( " a " + ar . lower ( ) == a . lower ( ) ) :
duplicates . append ( ( ar , a ) )
break
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
if ( ar + " " in st ) or ( " " + ar in st ) :
lis . append ( ar )
st = st . replace ( ar , " " ) . strip ( )
elif ( ar == st ) :
lis . append ( ar )
st = " "
if not nochange :
combined . append ( ( a , lis ) )
break
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
elif ( ar in st ) and len ( ar ) * 2 > len ( st ) :
duplicates . append ( ( a , ar ) )
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
st = st . replace ( " & " , " " ) . replace ( " and " , " " ) . replace ( " with " , " " ) . strip ( )
if st != " " and st != a :
if len ( st ) < 5 and len ( lis ) == 1 :
#check if we havent just randomly found the string in another word
#if (" " + st + " ") in lis[0] or (lis[0].endswith(" " + st)) or (lis[0].startswith(st + " ")):
duplicates . append ( ( a , lis [ 0 ] ) )
elif len ( st ) < 5 and len ( lis ) > 1 and not nochange :
combined . append ( ( a , lis ) )
elif len ( st ) > = 5 and not nochange :
#check if we havent just randomly found the string in another word
if ( " " + st + " " ) in a or ( a . endswith ( " " + st ) ) or ( a . startswith ( st + " " ) ) :
newartists . append ( ( st , a , lis ) )
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
#for c in itertools.combinations(ARTISTS,3):
# l = list(c)
# print(l)
# l.sort(key=len,reverse=True)
# [full,a1,a2] = l
# if (a1 + " " + a2 in full) or (a2 + " " + a1 in full):
# combined.append((full,a1,a2))
#for c in itertools.combinations(ARTISTS,2):
# if
#
# if (c[0].lower == c[1].lower):
# duplicates.append((c[0],c[1]))
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
# elif (c[0] + " " in c[1]) or (" " + c[0] in c[1]) or (c[1] + " " in c[0]) or (" " + c[1] in c[0]):
# if (c[0] in c[1]):
# full, part = c[1],c[0]
# rest = c[1].replace(c[0],"").strip()
# else:
# full, part = c[0],c[1]
# rest = c[0].replace(c[1],"").strip()
# if rest in ARTISTS and full not in [c[0] for c in combined]:
# combined.append((full,part,rest))
2019-03-14 13:07:20 +03:00
2018-12-20 19:23:16 +03:00
# elif (c[0] in c[1]) or (c[1] in c[0]):
# duplicates.append((c[0],c[1]))
2019-03-14 13:07:20 +03:00
2018-12-21 18:32:21 +03:00
return { " duplicates " : duplicates , " combined " : combined , " newartists " : newartists , " inconsistent " : inconsistent }
2019-03-24 16:56:34 +03:00
@dbserver.post ( " /importrules " )
def import_rulemodule ( ) :
keys = FormsDict . decode ( request . forms )
2019-03-24 18:04:44 +03:00
apikey = keys . pop ( " key " , None )
if ( checkAPIkey ( apikey ) ) :
filename = keys . get ( " filename " )
remove = keys . get ( " remove " ) is not None
validchars = " -_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 "
filename = " " . join ( c for c in filename if c in validchars )
if remove :
log ( " Deactivating predefined rulefile " + filename )
os . remove ( " rules/ " + filename + " .tsv " )
else :
log ( " Importing predefined rulefile " + filename )
os . symlink ( " predefined/ " + filename + " .tsv " , " rules/ " + filename + " .tsv " )
2019-03-24 16:56:34 +03:00
2018-12-21 18:32:21 +03:00
@dbserver.post ( " /rebuild " )
def rebuild ( ) :
2019-03-14 13:07:20 +03:00
2019-01-10 01:29:01 +03:00
keys = FormsDict . decode ( request . forms )
2018-12-29 18:57:52 +03:00
apikey = keys . pop ( " key " , None )
if ( checkAPIkey ( apikey ) ) :
2019-03-10 22:05:38 +03:00
log ( " Database rebuild initiated! " )
2018-12-29 18:57:52 +03:00
global db_rulestate
db_rulestate = False
sync ( )
os . system ( " python3 fixexisting.py " )
global cla , coa
cla = CleanerAgent ( )
coa = CollectorAgent ( )
build_db ( )
2019-03-14 18:27:53 +03:00
invalidate_caches ( )
2018-12-20 19:23:16 +03:00
2019-03-06 19:50:36 +03:00
@dbserver.get ( " /search " )
def search ( ) :
keys = FormsDict . decode ( request . query )
query = keys . get ( " query " )
2019-03-07 01:18:11 +03:00
max_ = keys . get ( " max " )
if max_ is not None : max_ = int ( max_ )
2019-03-06 22:18:26 +03:00
query = query . lower ( )
2019-03-14 13:07:20 +03:00
2019-03-06 19:50:36 +03:00
artists = db_search ( query , type = " ARTIST " )
tracks = db_search ( query , type = " TRACK " )
2019-03-06 22:18:26 +03:00
# if the string begins with the query it's a better match, if a word in it begins with it, still good
2019-03-07 01:18:11 +03:00
# also, shorter is better (because longer titles would be easier to further specify)
artists . sort ( key = lambda x : ( ( 0 if x . lower ( ) . startswith ( query ) else 1 if " " + query in x . lower ( ) else 2 ) , len ( x ) ) )
tracks . sort ( key = lambda x : ( ( 0 if x [ " title " ] . lower ( ) . startswith ( query ) else 1 if " " + query in x [ " title " ] . lower ( ) else 2 ) , len ( x [ " title " ] ) ) )
return { " artists " : artists [ : max_ ] , " tracks " : tracks [ : max_ ] }
2019-03-14 13:07:20 +03:00
2018-12-12 21:37:59 +03:00
####
## Server operation
####
2018-11-24 18:29:24 +03:00
# Starts the server
2018-12-19 17:28:10 +03:00
def runserver ( PORT ) :
2019-03-10 22:05:38 +03:00
log ( " Starting database server... " )
2018-11-28 15:02:43 +03:00
global lastsync
2018-12-21 19:22:44 +03:00
lastsync = int ( datetime . datetime . now ( tz = datetime . timezone . utc ) . timestamp ( ) )
2018-11-25 20:17:14 +03:00
build_db ( )
2019-03-14 13:07:20 +03:00
2018-11-24 18:29:24 +03:00
2018-11-30 17:44:30 +03:00
loadAPIkeys ( )
2018-12-26 19:42:55 +03:00
run ( dbserver , host = ' :: ' , port = PORT , server = ' waitress ' )
2019-03-10 22:05:38 +03:00
log ( " Database server reachable! " )
2018-11-25 20:17:14 +03:00
def build_db ( ) :
2019-03-14 13:07:20 +03:00
2019-03-10 22:05:38 +03:00
log ( " Building database... " )
2019-03-14 13:07:20 +03:00
2018-12-21 18:32:21 +03:00
global SCROBBLES , ARTISTS , TRACKS
2019-03-11 20:06:45 +03:00
global SCROBBLESDICT , STAMPS
2019-03-14 13:07:20 +03:00
2018-12-21 18:32:21 +03:00
SCROBBLES = [ ]
ARTISTS = [ ]
TRACKS = [ ]
2019-03-14 18:27:53 +03:00
STAMPS = [ ]
SCROBBLESDICT = { }
2019-03-14 13:07:20 +03:00
2019-03-12 16:37:04 +03:00
# parse files
2019-03-11 16:49:29 +03:00
db = parseAllTSV ( " scrobbles " , " int " , " string " , " string " , escape = False )
2018-12-21 00:07:22 +03:00
for sc in db :
artists = sc [ 1 ] . split ( " ␟ " )
title = sc [ 2 ]
time = sc [ 0 ]
2019-03-14 13:07:20 +03:00
2018-12-21 00:07:22 +03:00
readScrobble ( artists , title , time )
2018-12-24 21:14:24 +03:00
2019-03-14 13:07:20 +03:00
# optimize database
2019-03-12 16:37:04 +03:00
SCROBBLES . sort ( key = lambda tup : tup [ 1 ] )
#SCROBBLESDICT = {obj[1]:obj for obj in SCROBBLES}
2019-03-11 20:06:45 +03:00
STAMPS = [ t for t in SCROBBLESDICT ]
STAMPS . sort ( )
2019-03-14 13:07:20 +03:00
2019-03-12 16:37:04 +03:00
# inform malojatime module about earliest scrobble
register_scrobbletime ( STAMPS [ 0 ] )
2019-03-14 13:07:20 +03:00
2019-02-03 01:55:13 +03:00
# get extra artists with zero scrobbles from countas rules
for artist in coa . getAllArtists ( ) :
if artist not in ARTISTS :
ARTISTS . append ( artist )
2019-03-14 13:07:20 +03:00
2018-12-21 19:22:44 +03:00
coa . updateIDs ( ARTISTS )
2019-03-14 13:07:20 +03:00
2018-12-21 18:32:21 +03:00
global db_rulestate
db_rulestate = consistentRulestate ( " scrobbles " , cla . checksums )
2019-03-14 13:07:20 +03:00
2019-02-16 18:42:45 +03:00
# load cached images
loadCache ( )
2019-03-14 13:07:20 +03:00
2019-03-10 22:05:38 +03:00
log ( " Database fully built! " )
2018-11-24 18:29:24 +03:00
2019-03-14 13:07:20 +03:00
# Saves all cached entries to disk
2018-11-28 15:02:43 +03:00
def sync ( ) :
2018-12-21 00:07:22 +03:00
# all entries by file collected
# so we don't open the same file for every entry
entries = { }
2019-03-14 13:07:20 +03:00
2018-11-27 21:05:50 +03:00
for idx in range ( len ( SCROBBLES ) ) :
if not SCROBBLES [ idx ] [ 2 ] :
2019-03-14 13:07:20 +03:00
2018-11-27 21:05:50 +03:00
t = getScrobbleObject ( SCROBBLES [ idx ] )
2019-03-14 13:07:20 +03:00
2018-12-21 21:13:24 +03:00
artistlist = list ( t [ " artists " ] )
artistlist . sort ( ) #we want the order of artists to be deterministic so when we update files with new rules a diff can see what has actually been changed
artistss = " ␟ " . join ( artistlist )
2018-11-24 18:29:24 +03:00
timestamp = datetime . date . fromtimestamp ( t [ " time " ] )
2019-03-14 13:07:20 +03:00
2018-12-21 00:07:22 +03:00
entry = [ str ( t [ " time " ] ) , artistss , t [ " title " ] ]
2019-03-14 13:07:20 +03:00
2018-12-21 00:07:22 +03:00
monthcode = str ( timestamp . year ) + " _ " + str ( timestamp . month )
entries . setdefault ( monthcode , [ ] ) . append ( entry ) #i feckin love the setdefault function
2019-03-14 13:07:20 +03:00
2018-11-27 21:05:50 +03:00
SCROBBLES [ idx ] = ( SCROBBLES [ idx ] [ 0 ] , SCROBBLES [ idx ] [ 1 ] , True )
2019-03-14 13:07:20 +03:00
2018-12-21 00:07:22 +03:00
for e in entries :
2019-03-11 16:49:29 +03:00
addEntries ( " scrobbles/ " + e + " .tsv " , entries [ e ] , escape = False )
2018-12-21 00:07:22 +03:00
combineChecksums ( " scrobbles/ " + e + " .tsv " , cla . checksums )
2019-03-14 13:07:20 +03:00
2018-11-28 15:02:43 +03:00
global lastsync
2018-12-21 00:07:22 +03:00
lastsync = int ( datetime . datetime . now ( tz = datetime . timezone . utc ) . timestamp ( ) )
2019-01-10 01:29:01 +03:00
log ( " Database saved to disk. " )
2019-03-14 13:07:20 +03:00
2019-02-16 18:42:45 +03:00
# save cached images
saveCache ( )
2019-03-14 13:07:20 +03:00
2018-11-24 18:29:24 +03:00
2018-12-12 21:37:59 +03:00
2019-03-11 22:44:37 +03:00
###
## Caches in front of DB
## these are intended mainly for excessive site navigation during one session (e.g. constantly going back to the main page to click the next link)
###
import copy
cache_query = { }
cacheday = ( 0 , 0 , 0 )
def db_query ( * * kwargs ) :
check_cache_age ( )
global cache_query
key = json . dumps ( kwargs )
if key in cache_query : return copy . copy ( cache_query [ key ] )
2019-03-14 13:07:20 +03:00
2019-03-11 22:44:37 +03:00
result = db_query_full ( * * kwargs )
cache_query [ key ] = copy . copy ( result )
return result
cache_aggregate = { }
def db_aggregate ( * * kwargs ) :
check_cache_age ( )
global cache_aggregate
key = json . dumps ( kwargs )
if key in cache_aggregate : return copy . copy ( cache_aggregate [ key ] )
2019-03-14 13:07:20 +03:00
2019-03-11 22:44:37 +03:00
result = db_aggregate_full ( * * kwargs )
cache_aggregate [ key ] = copy . copy ( result )
return result
2019-03-14 13:07:20 +03:00
2019-03-11 22:44:37 +03:00
def invalidate_caches ( ) :
global cache_query , cache_aggregate
cache_query = { }
cache_aggregate = { }
2019-03-14 13:07:20 +03:00
2019-03-15 13:16:53 +03:00
now = datetime . datetime . utcnow ( )
2019-03-11 22:44:37 +03:00
global cacheday
cacheday = ( now . year , now . month , now . day )
2019-03-14 13:07:20 +03:00
log ( " Database caches invalidated. " )
2019-03-11 22:44:37 +03:00
def check_cache_age ( ) :
2019-03-14 13:07:20 +03:00
now = datetime . datetime . utcnow ( )
2019-03-11 22:44:37 +03:00
global cacheday
if cacheday != ( now . year , now . month , now . day ) : invalidate_caches ( )
2018-12-12 21:37:59 +03:00
####
## Database queries
####
2019-03-14 13:07:20 +03:00
# Queries the database
2019-03-12 14:56:53 +03:00
def db_query_full ( artist = None , artists = None , title = None , track = None , since = None , to = None , within = None , associated = False , max_ = None ) :
2019-02-20 20:22:45 +03:00
2019-03-03 00:55:22 +03:00
( since , to ) = time_stamps ( since , to , within )
2019-03-14 13:07:20 +03:00
# this is not meant as a search function. we *can* query the db with a string, but it only works if it matches exactly
2018-12-24 21:14:24 +03:00
# if a title is specified, we assume that a specific track (with the exact artist combination) is requested
2018-12-26 19:42:55 +03:00
# if not, duplicate artist arguments are ignored
2019-03-14 13:07:20 +03:00
2019-02-20 20:22:45 +03:00
#artist = None
2019-03-14 13:07:20 +03:00
2019-02-20 20:22:45 +03:00
if artist is not None and isinstance ( artist , str ) :
artist = ARTISTS . index ( artist )
2019-03-14 13:07:20 +03:00
2019-02-20 20:22:45 +03:00
# artists to numbers
2019-03-14 13:07:20 +03:00
if artists is not None :
2019-02-20 20:22:45 +03:00
artists = set ( [ ( ARTISTS . index ( a ) if isinstance ( a , str ) else a ) for a in artists ] )
2019-03-14 13:07:20 +03:00
2019-02-20 20:22:45 +03:00
# track to number
if track is not None and isinstance ( track , dict ) :
trackartists = set ( [ ( ARTISTS . index ( a ) if isinstance ( a , str ) else a ) for a in track [ " artists " ] ] )
track = TRACKS . index ( ( frozenset ( trackartists ) , track [ " title " ] ) )
artists = None
2019-03-14 13:07:20 +03:00
2018-12-26 19:42:55 +03:00
#check if track is requested via title
2018-12-24 21:14:24 +03:00
if title != None and track == None :
track = TRACKS . index ( ( frozenset ( artists ) , title ) )
artists = None
2019-03-14 13:07:20 +03:00
2018-12-26 19:42:55 +03:00
# if we're not looking for a track (either directly or per title artist arguments, which is converted to track above)
# we only need one artist
2019-02-20 20:22:45 +03:00
elif artist is None and track is None and artists is not None and len ( artists ) != 0 :
2018-12-26 19:42:55 +03:00
artist = artists . pop ( )
2019-03-14 13:07:20 +03:00
# db query always reverse by default
2019-03-12 14:56:53 +03:00
result = [ ]
2019-03-14 13:07:20 +03:00
2019-03-12 14:56:53 +03:00
i = 0
for s in scrobbles_in_range ( since , to , reverse = True ) :
if i == max_ : break
if ( track is None or s [ 0 ] == track ) and ( artist is None or artist in TRACKS [ s [ 0 ] ] [ 0 ] or associated and artist in coa . getCreditedList ( TRACKS [ s [ 0 ] ] [ 0 ] ) ) :
result . append ( getScrobbleObject ( s ) )
i + = 1
2019-03-14 13:07:20 +03:00
2019-03-12 14:56:53 +03:00
return result
2019-03-14 13:07:20 +03:00
2018-11-25 20:17:14 +03:00
# pointless to check for artist when track is checked because every track has a fixed set of artists, but it's more elegant this way
2019-03-14 13:07:20 +03:00
2018-12-04 19:07:07 +03:00
# Queries that... well... aggregate
2019-03-11 22:44:37 +03:00
def db_aggregate_full ( by = None , since = None , to = None , within = None , artist = None ) :
2019-03-03 00:55:22 +03:00
( since , to ) = time_stamps ( since , to , within )
2019-03-14 13:07:20 +03:00
2018-12-22 16:06:21 +03:00
if isinstance ( artist , str ) :
artist = ARTISTS . index ( artist )
2019-03-14 13:07:20 +03:00
2018-12-04 19:07:07 +03:00
if ( by == " ARTIST " ) :
#this is probably a really bad idea
#for a in ARTISTS:
# num = len(db_query(artist=a,since=since,to=to))
2019-03-14 13:07:20 +03:00
#
2018-12-04 19:07:07 +03:00
# alright let's try for real
charts = { }
2019-03-11 20:06:45 +03:00
#for s in [scr for scr in SCROBBLES if since < scr[1] < to]:
for s in scrobbles_in_range ( since , to ) :
2018-12-04 19:07:07 +03:00
artists = TRACKS [ s [ 0 ] ] [ 0 ]
2018-12-19 17:28:10 +03:00
for a in coa . getCreditedList ( artists ) :
2018-12-04 19:07:07 +03:00
# this either creates the new entry or increments the existing one
charts [ a ] = charts . setdefault ( a , 0 ) + 1
2019-03-14 13:07:20 +03:00
2018-12-22 16:06:21 +03:00
ls = [ { " artist " : getArtistObject ( ARTISTS [ a ] ) , " scrobbles " : charts [ a ] , " counting " : coa . getAllAssociated ( ARTISTS [ a ] ) } for a in charts ]
2018-12-04 19:07:07 +03:00
return sorted ( ls , key = lambda k : k [ " scrobbles " ] , reverse = True )
2019-03-14 13:07:20 +03:00
2018-12-04 19:07:07 +03:00
elif ( by == " TRACK " ) :
charts = { }
2019-03-11 20:06:45 +03:00
#for s in [scr for scr in SCROBBLES if since < scr[1] < to and (artist==None or (artist in TRACKS[scr[0]][0]))]:
for s in [ scr for scr in scrobbles_in_range ( since , to ) if ( artist is None or ( artist in TRACKS [ scr [ 0 ] ] [ 0 ] ) ) ] :
2018-12-04 19:07:07 +03:00
track = s [ 0 ]
# this either creates the new entry or increments the existing one
charts [ track ] = charts . setdefault ( track , 0 ) + 1
2019-03-14 13:07:20 +03:00
2018-12-04 19:07:07 +03:00
ls = [ { " track " : getTrackObject ( TRACKS [ t ] ) , " scrobbles " : charts [ t ] } for t in charts ]
return sorted ( ls , key = lambda k : k [ " scrobbles " ] , reverse = True )
2019-03-14 13:07:20 +03:00
2018-12-08 02:01:44 +03:00
else :
2019-03-11 20:06:45 +03:00
#return len([scr for scr in SCROBBLES if since < scr[1] < to])
return len ( list ( scrobbles_in_range ( since , to ) ) )
2018-12-04 19:07:07 +03:00
2018-12-12 21:37:59 +03:00
# Search for strings
def db_search ( query , type = None ) :
if type == " ARTIST " :
results = [ ]
for a in ARTISTS :
2019-03-10 19:38:33 +03:00
#if query.lower() in a.lower():
if simplestr ( query ) in simplestr ( a ) :
2018-12-12 21:37:59 +03:00
results . append ( a )
2019-03-14 13:07:20 +03:00
2018-12-12 21:37:59 +03:00
if type == " TRACK " :
results = [ ]
for t in TRACKS :
2019-03-10 19:38:33 +03:00
#if query.lower() in t[1].lower():
if simplestr ( query ) in simplestr ( t [ 1 ] ) :
2019-03-06 19:50:36 +03:00
results . append ( getTrackObject ( t ) )
2019-03-14 13:07:20 +03:00
2018-12-12 21:37:59 +03:00
return results
####
## Useful functions
####
2019-03-10 19:38:33 +03:00
# makes a string usable for searching (special characters are blanks, accents and stuff replaced with their real part)
def simplestr ( input , ignorecapitalization = True ) :
norm = unicodedata . normalize ( " NFKD " , input )
norm = [ c for c in norm if not unicodedata . combining ( c ) ]
norm = [ c if len ( c . encode ( ) ) == 1 else " " for c in norm ]
clear = ' ' . join ( c for c in norm )
if ignorecapitalization : clear = clear . lower ( )
return clear
2018-12-12 21:37:59 +03:00
2019-02-15 17:41:58 +03:00
2019-03-14 13:07:20 +03:00
2018-12-12 21:37:59 +03:00
def getArtistId ( nameorid ) :
if isinstance ( nameorid , int ) :
return nameorid
else :
try :
return ARTISTS . index ( nameorid )
except :
return - 1
2019-03-14 13:07:20 +03:00
2019-03-11 20:06:45 +03:00
def insert ( list_ , item , key = lambda x : x ) :
i = 0
while len ( list_ ) > i :
if key ( list_ [ i ] ) > key ( item ) :
list_ . insert ( i , item )
return i
i + = 1
2019-03-14 13:07:20 +03:00
2019-03-11 20:06:45 +03:00
list_ . append ( item )
return i
2019-03-14 13:07:20 +03:00
2019-03-12 14:56:53 +03:00
2019-03-11 22:04:23 +03:00
def scrobbles_in_range ( start , end , reverse = False ) :
if reverse :
for stamp in reversed ( STAMPS ) :
#print("Checking " + str(stamp))
if stamp < start : return
if stamp > end : continue
2019-03-12 14:56:53 +03:00
yield SCROBBLESDICT [ stamp ]
2019-03-11 22:04:23 +03:00
else :
for stamp in STAMPS :
#print("Checking " + str(stamp))
if stamp < start : continue
if stamp > end : return
yield SCROBBLESDICT [ stamp ]
2019-03-14 13:07:20 +03:00
2019-03-11 22:04:23 +03:00
# for performance testing
def generateStuff ( num = 0 , pertrack = 0 , mult = 0 ) :
import random
for i in range ( num ) :
track = random . choice ( TRACKS )
t = getTrackObject ( track )
time = random . randint ( STAMPS [ 0 ] , STAMPS [ - 1 ] )
createScrobble ( t [ " artists " ] , t [ " title " ] , time , volatile = True )
2019-03-14 13:07:20 +03:00
2019-03-11 22:04:23 +03:00
for track in TRACKS :
t = getTrackObject ( track )
for i in range ( pertrack ) :
time = random . randint ( STAMPS [ 0 ] , STAMPS [ - 1 ] )
createScrobble ( t [ " artists " ] , t [ " title " ] , time , volatile = True )
2019-03-14 13:07:20 +03:00
2019-03-11 22:04:23 +03:00
for scrobble in SCROBBLES :
2019-03-14 13:07:20 +03:00
s = getScrobbleObject ( scrobble )
2019-03-11 22:04:23 +03:00
for i in range ( mult ) :
createScrobble ( s [ " artists " ] , s [ " title " ] , s [ " time " ] - i * 500 , volatile = True )