-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathDashboardRoutes.cs
219 lines (174 loc) · 8.88 KB
/
DashboardRoutes.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
// This file is part of Hangfire.
// Copyright © 2013-2014 Sergey Odinokov.
//
// Hangfire is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3
// of the License, or any later version.
//
// Hangfire is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with Hangfire. If not, see <http://www.gnu.org/licenses/>.
using System.Reflection;
using Hangfire.Dashboard.Pages;
using Hangfire.States;
namespace Hangfire.Dashboard
{
public static class DashboardRoutes
{
private static readonly string[] Javascripts =
{
"jquery-2.1.4.min.js",
"bootstrap.min.js",
"moment.min.js",
"moment-with-locales.min.js",
"Chart.min.js",
"chartjs-plugin-streaming.min.js",
"hangfire.js"
};
private static readonly string[] Stylesheets =
{
"bootstrap.min.css",
"hangfire.css"
};
static DashboardRoutes()
{
Routes = new RouteCollection();
Routes.AddRazorPage("/", x => new HomePage());
Routes.Add("/stats", new JsonStats());
#region Embedded static content
Routes.Add("/js[0-9]+", new CombinedResourceDispatcher(
"application/javascript",
GetExecutingAssembly(),
GetContentFolderNamespace("js"),
Javascripts));
Routes.Add("/css[0-9]+", new CombinedResourceDispatcher(
"text/css",
GetExecutingAssembly(),
GetContentFolderNamespace("css"),
Stylesheets));
Routes.Add("/fonts/glyphicons-halflings-regular/eot", new EmbeddedResourceDispatcher(
"application/vnd.ms-fontobject",
GetExecutingAssembly(),
GetContentResourceName("fonts", "glyphicons-halflings-regular.eot")));
Routes.Add("/fonts/glyphicons-halflings-regular/svg", new EmbeddedResourceDispatcher(
"image/svg+xml",
GetExecutingAssembly(),
GetContentResourceName("fonts", "glyphicons-halflings-regular.svg")));
Routes.Add("/fonts/glyphicons-halflings-regular/ttf", new EmbeddedResourceDispatcher(
"application/octet-stream",
GetExecutingAssembly(),
GetContentResourceName("fonts", "glyphicons-halflings-regular.ttf")));
Routes.Add("/fonts/glyphicons-halflings-regular/woff", new EmbeddedResourceDispatcher(
"font/woff",
GetExecutingAssembly(),
GetContentResourceName("fonts", "glyphicons-halflings-regular.woff")));
Routes.Add("/fonts/glyphicons-halflings-regular/woff2", new EmbeddedResourceDispatcher(
"font/woff2",
GetExecutingAssembly(),
GetContentResourceName("fonts", "glyphicons-halflings-regular.woff2")));
#endregion
#region Razor pages and commands
Routes.AddRazorPage("/jobs/enqueued", x => new QueuesPage());
Routes.AddRazorPage(
"/jobs/enqueued/fetched/(?<Queue>.+)",
x => new FetchedJobsPage(x.Groups["Queue"].Value));
Routes.AddClientBatchCommand("/jobs/enqueued/delete", (client, jobId) => client.ChangeState(jobId, CreateDeletedState()));
Routes.AddClientBatchCommand("/jobs/enqueued/requeue", (client, jobId) => client.ChangeState(jobId, CreateEnqueuedState()));
Routes.AddRazorPage(
"/jobs/enqueued/(?<Queue>.+)",
x => new EnqueuedJobsPage(x.Groups["Queue"].Value));
Routes.AddRazorPage("/jobs/processing", x => new ProcessingJobsPage());
Routes.AddClientBatchCommand(
"/jobs/processing/delete",
(client, jobId) => client.ChangeState(jobId, CreateDeletedState(), ProcessingState.StateName));
Routes.AddClientBatchCommand(
"/jobs/processing/requeue",
(client, jobId) => client.ChangeState(jobId, CreateEnqueuedState(), ProcessingState.StateName));
Routes.AddRazorPage("/jobs/scheduled", x => new ScheduledJobsPage());
Routes.AddClientBatchCommand(
"/jobs/scheduled/enqueue",
(client, jobId) => client.ChangeState(jobId, CreateEnqueuedState(), ScheduledState.StateName));
Routes.AddClientBatchCommand(
"/jobs/scheduled/delete",
(client, jobId) => client.ChangeState(jobId, CreateDeletedState(), ScheduledState.StateName));
Routes.AddRazorPage("/jobs/succeeded", x => new SucceededJobs());
Routes.AddClientBatchCommand(
"/jobs/succeeded/requeue",
(client, jobId) => client.ChangeState(jobId, CreateEnqueuedState(), SucceededState.StateName));
Routes.AddRazorPage("/jobs/failed", x => new FailedJobsPage());
Routes.AddClientBatchCommand(
"/jobs/failed/requeue",
(client, jobId) => client.ChangeState(jobId, CreateEnqueuedState(), FailedState.StateName));
Routes.AddClientBatchCommand(
"/jobs/failed/delete",
(client, jobId) => client.ChangeState(jobId, CreateDeletedState(), FailedState.StateName));
Routes.AddRazorPage("/jobs/deleted", x => new DeletedJobsPage());
Routes.AddClientBatchCommand(
"/jobs/deleted/requeue",
(client, jobId) => client.ChangeState(jobId, CreateEnqueuedState(), DeletedState.StateName));
Routes.AddRazorPage("/jobs/awaiting", x => new AwaitingJobsPage());
Routes.AddClientBatchCommand("/jobs/awaiting/enqueue", (client, jobId) => client.ChangeState(
jobId, CreateEnqueuedState(), AwaitingState.StateName));
Routes.AddClientBatchCommand("/jobs/awaiting/delete", (client, jobId) => client.ChangeState(
jobId, CreateDeletedState(), AwaitingState.StateName));
Routes.AddCommand(
"/jobs/actions/requeue/(?<JobId>.+)",
context =>
{
var client = context.GetBackgroundJobClient();
return client.ChangeState(context.UriMatch.Groups["JobId"].Value, CreateEnqueuedState());
});
Routes.AddCommand(
"/jobs/actions/delete/(?<JobId>.+)",
context =>
{
var client = context.GetBackgroundJobClient();
return client.ChangeState(context.UriMatch.Groups["JobId"].Value, CreateDeletedState());
});
Routes.AddRazorPage("/jobs/details/(?<JobId>.+)", x => new JobDetailsPage(x.Groups["JobId"].Value));
Routes.AddRazorPage("/recurring", x => new RecurringJobsPage());
Routes.AddRecurringBatchCommand(
"/recurring/remove",
(manager, jobId) => manager.RemoveIfExists(jobId));
Routes.AddRecurringBatchCommand(
"/recurring/trigger",
(manager, jobId) => manager.Trigger(jobId));
Routes.AddRazorPage("/servers", x => new ServersPage());
Routes.AddRazorPage("/retries", x => new RetriesPage());
Routes.AddRazorPage("/jobs/suspended", x => new SuspendedJobsPage());
Routes.AddRecurringBatchCommand(
"/recurring/suspend",
(manager, jobId) => manager.SuspendJob(jobId));
Routes.AddRecurringBatchCommand(
"/recurring/resume",
(manager, jobId) => manager.ResumeJob(jobId));
#endregion
}
public static RouteCollection Routes { get; }
internal static string GetContentFolderNamespace(string contentFolder)
{
return $"{typeof (DashboardRoutes).Namespace}.Content.{contentFolder}";
}
internal static string GetContentResourceName(string contentFolder, string resourceName)
{
return $"{GetContentFolderNamespace(contentFolder)}.{resourceName}";
}
private static DeletedState CreateDeletedState()
{
return new DeletedState { Reason = "Triggered via Dashboard UI" };
}
private static EnqueuedState CreateEnqueuedState()
{
return new EnqueuedState { Reason = "Triggered via Dashboard UI" };
}
private static Assembly GetExecutingAssembly()
{
return typeof (DashboardRoutes).GetTypeInfo().Assembly;
}
}
}