1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: kevindees
5
+ * Date: 2018-12-19
6
+ * Time: 15:43
7
+ */
8
+
9
+ namespace QueueRedis ;
10
+
11
+ use Illuminate \Console \Command ;
12
+ use Illuminate \Support \Facades \Redis ;
13
+
14
+
15
+ class HorizonDataCommand extends Command
16
+ {
17
+ /**
18
+ * The name and signature of the console command.
19
+ *
20
+ * @var string
21
+ */
22
+ protected $ signature = 'horizon:data
23
+ {type : The data you wish to target: failed_jobs, recent_jobs, tag }
24
+ {--C|clear : Clear the data} ' ;
25
+
26
+ /**
27
+ * The console command description.
28
+ *
29
+ * @var string
30
+ */
31
+ protected $ description = 'Flush horizon data ' ;
32
+
33
+ protected $ type ;
34
+ protected $ clear ;
35
+
36
+ /**
37
+ * Create a new command instance.
38
+ *
39
+ * @return void
40
+ */
41
+ public function __construct ()
42
+ {
43
+ parent ::__construct ();
44
+ }
45
+
46
+ /**
47
+ * Execute the console command.
48
+ *
49
+ * @return mixed
50
+ */
51
+ public function handle ()
52
+ {
53
+ $ this ->type = $ this ->argument ('type ' );
54
+ $ this ->clear = $ this ->option ('clear ' );
55
+
56
+ if ($ this ->clear ) {
57
+ $ this ->clear ();
58
+ }
59
+ }
60
+
61
+ protected function clear () {
62
+
63
+ switch ($ this ->type ) {
64
+ case 'failed_jobs ' :
65
+ $ this ->info ('Clearing all horizon recent failed and failed jobs ' );
66
+ Redis::connection ()->del ('horizon:failed:* ' );
67
+ Redis::connection ()->del ('horizon:recent_failed_jobs ' );
68
+ Redis::connection ()->del ('horizon:failed_jobs ' );
69
+ break ;
70
+ case 'recent_jobs ' :
71
+ $ this ->info ('Clearing all horizon recent jobs ' );
72
+ Redis::connection ()->del ('horizon:recent_jobs ' );
73
+ break ;
74
+ default :
75
+ if (!empty ($ this ->type )) {
76
+ $ tag = $ this ->type ;
77
+ $ this ->info ('Clearing: horizon: ' . $ tag );
78
+ Redis::connection ()->del ('horizon: ' . escapeshellarg ($ tag ));
79
+ }
80
+ break ;
81
+ }
82
+ }
83
+ }
0 commit comments