1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Pterodactyl - Panel |
4
|
|
|
* Copyright (c) 2015 - 2016 Dane Everitt <[email protected]>. |
5
|
|
|
* |
6
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
7
|
|
|
* of this software and associated documentation files (the "Software"), to deal |
8
|
|
|
* in the Software without restriction, including without limitation the rights |
9
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
10
|
|
|
* copies of the Software, and to permit persons to whom the Software is |
11
|
|
|
* furnished to do so, subject to the following conditions: |
12
|
|
|
* |
13
|
|
|
* The above copyright notice and this permission notice shall be included in all |
14
|
|
|
* copies or substantial portions of the Software. |
15
|
|
|
* |
16
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
17
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
18
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
19
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
20
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
21
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
22
|
|
|
* SOFTWARE. |
23
|
|
|
*/ |
24
|
|
|
|
25
|
|
|
namespace Pterodactyl\Http\Controllers\Server; |
26
|
|
|
|
27
|
|
|
use Log; |
28
|
|
|
use Alert; |
29
|
|
|
use Javascript; |
30
|
|
|
use Pterodactyl\Models; |
31
|
|
|
use Illuminate\Http\Request; |
32
|
|
|
use Pterodactyl\Repositories; |
33
|
|
|
use Pterodactyl\Exceptions\DisplayException; |
34
|
|
|
use Pterodactyl\Http\Controllers\Controller; |
35
|
|
|
use Pterodactyl\Exceptions\DisplayValidationException; |
36
|
|
|
|
37
|
|
|
class TaskController extends Controller |
38
|
|
|
{ |
39
|
|
|
public function __constructor() |
40
|
|
|
{ |
41
|
|
|
// |
42
|
|
|
} |
43
|
|
|
|
44
|
|
View Code Duplication |
public function getIndex(Request $request, $uuid) |
|
|
|
|
45
|
|
|
{ |
46
|
|
|
$server = Models\Server::getByUUID($uuid); |
47
|
|
|
$this->authorize('list-tasks', $server); |
48
|
|
|
$node = Models\Node::find($server->node); |
|
|
|
|
49
|
|
|
|
50
|
|
|
Javascript::put([ |
51
|
|
|
'server' => collect($server->makeVisible('daemonSecret'))->only(['uuid', 'uuidShort', 'daemonSecret', 'username']), |
52
|
|
|
'node' => collect($node)->only('fqdn', 'scheme', 'daemonListen'), |
53
|
|
|
]); |
54
|
|
|
|
55
|
|
|
return view('server.tasks.index', [ |
56
|
|
|
'server' => $server, |
57
|
|
|
'node' => $node, |
58
|
|
|
'tasks' => Models\Task::where('server', $server->id)->get(), |
|
|
|
|
59
|
|
|
'actions' => [ |
60
|
|
|
'command' => trans('server.tasks.actions.command'), |
61
|
|
|
'power' => trans('server.tasks.actions.power'), |
62
|
|
|
], |
63
|
|
|
]); |
64
|
|
|
} |
65
|
|
|
|
66
|
|
View Code Duplication |
public function getNew(Request $request, $uuid) |
|
|
|
|
67
|
|
|
{ |
68
|
|
|
$server = Models\Server::getByUUID($uuid); |
69
|
|
|
$this->authorize('create-task', $server); |
70
|
|
|
$node = Models\Node::find($server->node); |
|
|
|
|
71
|
|
|
|
72
|
|
|
Javascript::put([ |
73
|
|
|
'server' => collect($server->makeVisible('daemonSecret'))->only(['uuid', 'uuidShort', 'daemonSecret', 'username']), |
74
|
|
|
'node' => collect($node)->only('fqdn', 'scheme', 'daemonListen'), |
75
|
|
|
]); |
76
|
|
|
|
77
|
|
|
return view('server.tasks.new', [ |
78
|
|
|
'server' => $server, |
79
|
|
|
'node' => $node, |
80
|
|
|
]); |
81
|
|
|
} |
82
|
|
|
|
83
|
|
View Code Duplication |
public function postNew(Request $request, $uuid) |
|
|
|
|
84
|
|
|
{ |
85
|
|
|
$server = Models\Server::getByUUID($uuid); |
86
|
|
|
$this->authorize('create-task', $server); |
87
|
|
|
|
88
|
|
|
try { |
89
|
|
|
$repo = new Repositories\TaskRepository; |
90
|
|
|
$repo->create($server->id, $request->except([ |
|
|
|
|
91
|
|
|
'_token', |
92
|
|
|
])); |
93
|
|
|
|
94
|
|
|
return redirect()->route('server.tasks', $uuid); |
95
|
|
|
} catch (DisplayValidationException $ex) { |
96
|
|
|
return redirect()->route('server.tasks.new', $uuid)->withErrors(json_decode($ex->getMessage()))->withInput(); |
97
|
|
|
} catch (DisplayException $ex) { |
98
|
|
|
Alert::danger($ex->getMessage())->flash(); |
99
|
|
|
} catch (\Exception $ex) { |
100
|
|
|
Log::error($ex); |
101
|
|
|
Alert::danger('An unknown error occured while attempting to create this task.')->flash(); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
return redirect()->route('server.tasks.new', $uuid); |
105
|
|
|
} |
106
|
|
|
|
107
|
|
View Code Duplication |
public function deleteTask(Request $request, $uuid, $id) |
|
|
|
|
108
|
|
|
{ |
109
|
|
|
$server = Models\Server::getByUUID($uuid); |
110
|
|
|
$this->authorize('delete-task', $server); |
111
|
|
|
|
112
|
|
|
$task = Models\Task::findOrFail($id); |
113
|
|
|
|
114
|
|
|
if (! $task || $server->id !== $task->server) { |
|
|
|
|
115
|
|
|
return response()->json([ |
116
|
|
|
'error' => 'No task by that ID was found associated with this server.', |
117
|
|
|
], 404); |
118
|
|
|
} |
119
|
|
|
|
120
|
|
|
try { |
121
|
|
|
$repo = new Repositories\TaskRepository; |
122
|
|
|
$repo->delete($id); |
123
|
|
|
|
124
|
|
|
return response()->json([], 204); |
125
|
|
|
} catch (\Exception $ex) { |
126
|
|
|
Log::error($ex); |
127
|
|
|
|
128
|
|
|
return response()->json([ |
129
|
|
|
'error' => 'A server error occured while attempting to delete this task.', |
130
|
|
|
], 503); |
131
|
|
|
} |
132
|
|
|
} |
133
|
|
|
|
134
|
|
View Code Duplication |
public function toggleTask(Request $request, $uuid, $id) |
|
|
|
|
135
|
|
|
{ |
136
|
|
|
$server = Models\Server::getByUUID($uuid); |
137
|
|
|
$this->authorize('toggle-task', $server); |
138
|
|
|
|
139
|
|
|
$task = Models\Task::findOrFail($id); |
140
|
|
|
|
141
|
|
|
if (! $task || $server->id !== $task->server) { |
|
|
|
|
142
|
|
|
return response()->json([ |
143
|
|
|
'error' => 'No task by that ID was found associated with this server.', |
144
|
|
|
], 404); |
145
|
|
|
} |
146
|
|
|
|
147
|
|
|
try { |
148
|
|
|
$repo = new Repositories\TaskRepository; |
149
|
|
|
$resp = $repo->toggle($id); |
150
|
|
|
|
151
|
|
|
return response()->json([ |
152
|
|
|
'status' => $resp, |
153
|
|
|
]); |
154
|
|
|
} catch (\Exception $ex) { |
155
|
|
|
Log::error($ex); |
156
|
|
|
|
157
|
|
|
return response()->json([ |
158
|
|
|
'error' => 'A server error occured while attempting to toggle this task.', |
159
|
|
|
], 503); |
160
|
|
|
} |
161
|
|
|
} |
162
|
|
|
} |
163
|
|
|
|
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.