├── .gitignore ├── LICENSE ├── README.md ├── playback_reporting.sln └── playback_reporting ├── Api └── UserActivityAPI.cs ├── BackupManager.cs ├── Data ├── ActivityRepository.cs ├── ItemChildStats.cs ├── ItemInfo.cs ├── PathItem.cs └── PlaybackInfo.cs ├── EventMonitorEntryPoint.cs ├── Extensions.cs ├── Notifications.cs ├── Pages ├── activity_report.html ├── activity_report.js ├── breakdown_report.html ├── breakdown_report.js ├── chart.min.js ├── custom_query.html ├── custom_query.js ├── helper_function.js ├── hourly_usage_report.html ├── hourly_usage_report.js ├── playback_report_settings.html ├── playback_report_settings.js ├── played.html ├── played.js ├── user_play_report.html ├── user_play_report.js ├── user_playback_report.html ├── user_playback_report.js ├── user_report.html └── user_report.js ├── Plugin.cs ├── PluginConfiguration.cs ├── ReportPlaybackOptions.cs ├── Tasks ├── TaskCleanDb.cs ├── TaskCreatePlaylists.cs ├── TaskNotifictionMediaReport.cs ├── TaskNotifictionUserReport.cs └── TaskRunBackup.cs ├── playback_reporting.csproj └── thumb.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/README.md -------------------------------------------------------------------------------- /playback_reporting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting.sln -------------------------------------------------------------------------------- /playback_reporting/Api/UserActivityAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Api/UserActivityAPI.cs -------------------------------------------------------------------------------- /playback_reporting/BackupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/BackupManager.cs -------------------------------------------------------------------------------- /playback_reporting/Data/ActivityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Data/ActivityRepository.cs -------------------------------------------------------------------------------- /playback_reporting/Data/ItemChildStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Data/ItemChildStats.cs -------------------------------------------------------------------------------- /playback_reporting/Data/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Data/ItemInfo.cs -------------------------------------------------------------------------------- /playback_reporting/Data/PathItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Data/PathItem.cs -------------------------------------------------------------------------------- /playback_reporting/Data/PlaybackInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Data/PlaybackInfo.cs -------------------------------------------------------------------------------- /playback_reporting/EventMonitorEntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/EventMonitorEntryPoint.cs -------------------------------------------------------------------------------- /playback_reporting/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Extensions.cs -------------------------------------------------------------------------------- /playback_reporting/Notifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Notifications.cs -------------------------------------------------------------------------------- /playback_reporting/Pages/activity_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/activity_report.html -------------------------------------------------------------------------------- /playback_reporting/Pages/activity_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/activity_report.js -------------------------------------------------------------------------------- /playback_reporting/Pages/breakdown_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/breakdown_report.html -------------------------------------------------------------------------------- /playback_reporting/Pages/breakdown_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/breakdown_report.js -------------------------------------------------------------------------------- /playback_reporting/Pages/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/chart.min.js -------------------------------------------------------------------------------- /playback_reporting/Pages/custom_query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/custom_query.html -------------------------------------------------------------------------------- /playback_reporting/Pages/custom_query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/custom_query.js -------------------------------------------------------------------------------- /playback_reporting/Pages/helper_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/helper_function.js -------------------------------------------------------------------------------- /playback_reporting/Pages/hourly_usage_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/hourly_usage_report.html -------------------------------------------------------------------------------- /playback_reporting/Pages/hourly_usage_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/hourly_usage_report.js -------------------------------------------------------------------------------- /playback_reporting/Pages/playback_report_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/playback_report_settings.html -------------------------------------------------------------------------------- /playback_reporting/Pages/playback_report_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/playback_report_settings.js -------------------------------------------------------------------------------- /playback_reporting/Pages/played.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/played.html -------------------------------------------------------------------------------- /playback_reporting/Pages/played.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/played.js -------------------------------------------------------------------------------- /playback_reporting/Pages/user_play_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/user_play_report.html -------------------------------------------------------------------------------- /playback_reporting/Pages/user_play_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/user_play_report.js -------------------------------------------------------------------------------- /playback_reporting/Pages/user_playback_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/user_playback_report.html -------------------------------------------------------------------------------- /playback_reporting/Pages/user_playback_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/user_playback_report.js -------------------------------------------------------------------------------- /playback_reporting/Pages/user_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/user_report.html -------------------------------------------------------------------------------- /playback_reporting/Pages/user_report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Pages/user_report.js -------------------------------------------------------------------------------- /playback_reporting/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Plugin.cs -------------------------------------------------------------------------------- /playback_reporting/PluginConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/PluginConfiguration.cs -------------------------------------------------------------------------------- /playback_reporting/ReportPlaybackOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/ReportPlaybackOptions.cs -------------------------------------------------------------------------------- /playback_reporting/Tasks/TaskCleanDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Tasks/TaskCleanDb.cs -------------------------------------------------------------------------------- /playback_reporting/Tasks/TaskCreatePlaylists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Tasks/TaskCreatePlaylists.cs -------------------------------------------------------------------------------- /playback_reporting/Tasks/TaskNotifictionMediaReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Tasks/TaskNotifictionMediaReport.cs -------------------------------------------------------------------------------- /playback_reporting/Tasks/TaskNotifictionUserReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Tasks/TaskNotifictionUserReport.cs -------------------------------------------------------------------------------- /playback_reporting/Tasks/TaskRunBackup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/Tasks/TaskRunBackup.cs -------------------------------------------------------------------------------- /playback_reporting/playback_reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/playback_reporting.csproj -------------------------------------------------------------------------------- /playback_reporting/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faush01/playback_reporting/HEAD/playback_reporting/thumb.png --------------------------------------------------------------------------------