tasks.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. 'use strict';
  2. const cache = require("./cache");
  3. const Stations = require("./stations");
  4. const async = require("async");
  5. let utils;
  6. let tasks = {};
  7. let testTask = (callback) => {
  8. //Stuff
  9. console.log("Starting task");
  10. setTimeout(() => {
  11. console.log("Callback");
  12. callback();
  13. }, 10000);
  14. };
  15. let checkStationSkipTask = (callback) => {
  16. console.log(`Checking for stations`);
  17. async.waterfall([
  18. (next) => {
  19. cache.hgetall('stations', next);
  20. },
  21. (stations, next) => {
  22. async.each(stations, (station, next2) => {
  23. if (station.paused || !station.currentSong || !station.currentSong.title) return next2();
  24. const timeElapsed = Date.now() - station.startedAt - station.timePaused;
  25. if (timeElapsed <= station.currentSong.duration) return next2();
  26. else {
  27. console.log(`Skipping ${station._id}`);
  28. stations.skipStation(station._id);
  29. next2();
  30. }
  31. }, () => {
  32. next();
  33. });
  34. }
  35. ], () => {
  36. callback();
  37. });
  38. };
  39. module.exports = {
  40. init: function(cb) {
  41. utils = require('./utils');
  42. this.createTask("testTask", testTask, 5000, true);
  43. this.createTask("stationSkipTask", checkStationSkipTask, 1000 * 60 * 30);
  44. cb();
  45. },
  46. createTask: function(name, fn, timeout, paused = false) {
  47. tasks[name] = {
  48. name,
  49. fn,
  50. timeout,
  51. lastRan: 0,
  52. timer: null
  53. };
  54. if (!paused) this.handleTask(tasks[name]);
  55. },
  56. pauseTask: (name) => {
  57. tasks[name].timer.pause();
  58. },
  59. resumeTask: (name) => {
  60. tasks[name].timer.resume();
  61. },
  62. handleTask: function(task) {
  63. if (task.timer) task.timer.pause();
  64. task.fn(() => {
  65. task.lastRan = Date.now();
  66. task.timer = new utils.Timer(() => {
  67. this.handleTask(task);
  68. }, task.timeout, false);
  69. });
  70. }
  71. };