mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-21 22:03:18 -07:00
Fix popular TV and movie secondary sort
This commit is contained in:
parent
7ba9317439
commit
2342cbac10
1 changed files with 14 additions and 6 deletions
|
@ -203,6 +203,10 @@ class DataFactory(object):
|
||||||
'session_history_metadata.grandparent_rating_key, ' \
|
'session_history_metadata.grandparent_rating_key, ' \
|
||||||
'MAX(session_history.started) as last_watch, ' \
|
'MAX(session_history.started) as last_watch, ' \
|
||||||
'COUNT(session_history.id) as total_plays, ' \
|
'COUNT(session_history.id) as total_plays, ' \
|
||||||
|
'cast(round(SUM(round((julianday(datetime(session_history.stopped, "unixepoch", "localtime")) - ' \
|
||||||
|
'julianday(datetime(session_history.started, "unixepoch", "localtime"))) * 86400) - ' \
|
||||||
|
'(CASE WHEN session_history.paused_counter IS NULL THEN 0 ' \
|
||||||
|
'ELSE session_history.paused_counter END))/60) as integer) as total_duration,' \
|
||||||
'session_history_metadata.grandparent_thumb ' \
|
'session_history_metadata.grandparent_thumb ' \
|
||||||
'FROM session_history_metadata ' \
|
'FROM session_history_metadata ' \
|
||||||
'JOIN session_history ON session_history_metadata.id = session_history.id ' \
|
'JOIN session_history ON session_history_metadata.id = session_history.id ' \
|
||||||
|
@ -210,8 +214,8 @@ class DataFactory(object):
|
||||||
'>= datetime("now", "-%s days", "localtime") ' \
|
'>= datetime("now", "-%s days", "localtime") ' \
|
||||||
'AND session_history_metadata.media_type = "episode" ' \
|
'AND session_history_metadata.media_type = "episode" ' \
|
||||||
'GROUP BY session_history_metadata.grandparent_title ' \
|
'GROUP BY session_history_metadata.grandparent_title ' \
|
||||||
'ORDER BY users_watched DESC, total_plays DESC ' \
|
'ORDER BY users_watched DESC, %s DESC ' \
|
||||||
'LIMIT %s' % (time_range, stat_count)
|
'LIMIT %s' % (time_range, sort_type, stat_count)
|
||||||
result = monitor_db.select(query)
|
result = monitor_db.select(query)
|
||||||
except:
|
except:
|
||||||
logger.warn("Unable to execute database query.")
|
logger.warn("Unable to execute database query.")
|
||||||
|
@ -223,7 +227,7 @@ class DataFactory(object):
|
||||||
'rating_key': item[3],
|
'rating_key': item[3],
|
||||||
'last_play': item[4],
|
'last_play': item[4],
|
||||||
'total_plays': item[5],
|
'total_plays': item[5],
|
||||||
'grandparent_thumb': item[6],
|
'grandparent_thumb': item[7],
|
||||||
'thumb': '',
|
'thumb': '',
|
||||||
'user': '',
|
'user': '',
|
||||||
'friendly_name': '',
|
'friendly_name': '',
|
||||||
|
@ -291,6 +295,10 @@ class DataFactory(object):
|
||||||
'session_history_metadata.rating_key, ' \
|
'session_history_metadata.rating_key, ' \
|
||||||
'MAX(session_history.started) as last_watch, ' \
|
'MAX(session_history.started) as last_watch, ' \
|
||||||
'COUNT(session_history.id) as total_plays, ' \
|
'COUNT(session_history.id) as total_plays, ' \
|
||||||
|
'cast(round(SUM(round((julianday(datetime(session_history.stopped, "unixepoch", "localtime")) - ' \
|
||||||
|
'julianday(datetime(session_history.started, "unixepoch", "localtime"))) * 86400) - ' \
|
||||||
|
'(CASE WHEN session_history.paused_counter IS NULL THEN 0 ' \
|
||||||
|
'ELSE session_history.paused_counter END))/60) as integer) as total_duration,' \
|
||||||
'session_history_metadata.thumb ' \
|
'session_history_metadata.thumb ' \
|
||||||
'FROM session_history_metadata ' \
|
'FROM session_history_metadata ' \
|
||||||
'JOIN session_history ON session_history_metadata.id = session_history.id ' \
|
'JOIN session_history ON session_history_metadata.id = session_history.id ' \
|
||||||
|
@ -298,8 +306,8 @@ class DataFactory(object):
|
||||||
'>= datetime("now", "-%s days", "localtime") ' \
|
'>= datetime("now", "-%s days", "localtime") ' \
|
||||||
'AND session_history_metadata.media_type = "movie" ' \
|
'AND session_history_metadata.media_type = "movie" ' \
|
||||||
'GROUP BY session_history_metadata.full_title ' \
|
'GROUP BY session_history_metadata.full_title ' \
|
||||||
'ORDER BY users_watched DESC, total_plays DESC ' \
|
'ORDER BY users_watched DESC, %s DESC ' \
|
||||||
'LIMIT %s' % (time_range, stat_count)
|
'LIMIT %s' % (time_range, sort_type, stat_count)
|
||||||
result = monitor_db.select(query)
|
result = monitor_db.select(query)
|
||||||
except:
|
except:
|
||||||
logger.warn("Unable to execute database query.")
|
logger.warn("Unable to execute database query.")
|
||||||
|
@ -312,7 +320,7 @@ class DataFactory(object):
|
||||||
'last_play': item[4],
|
'last_play': item[4],
|
||||||
'total_plays': item[5],
|
'total_plays': item[5],
|
||||||
'grandparent_thumb': '',
|
'grandparent_thumb': '',
|
||||||
'thumb': item[6],
|
'thumb': item[7],
|
||||||
'user': '',
|
'user': '',
|
||||||
'friendly_name': '',
|
'friendly_name': '',
|
||||||
'platform_type': '',
|
'platform_type': '',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue