GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — develop ( ee309b...de0b9b )
by Dane
03:44
created

NodesController::index()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 5

Duplication

Lines 10
Ratio 100 %

Importance

Changes 0
Metric Value
dl 10
loc 10
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 5
nc 2
nop 1
1
<?php
2
/**
3
 * Pterodactyl - Panel
4
 * Copyright (c) 2015 - 2017 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\Admin;
26
27
use DB;
28
use Log;
29
use Alert;
30
use Cache;
31
use Javascript;
32
use Pterodactyl\Models;
33
use Illuminate\Http\Request;
34
use Pterodactyl\Exceptions\DisplayException;
35
use Pterodactyl\Http\Controllers\Controller;
36
use Pterodactyl\Repositories\NodeRepository;
37
use Pterodactyl\Exceptions\DisplayValidationException;
38
39
class NodesController extends Controller
40
{
41
    /**
42
     * Displays the index page listing all nodes on the panel.
43
     *
44
     * @param  \Illuminate\Http\Request  $request
45
     * @return \Illuminate\View\View
46
     */
47 View Code Duplication
    public function index(Request $request)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
48
    {
49
        $nodes = Models\Node::with('location')->withCount('servers');
0 ignored issues
show
Bug introduced by
The method withCount does only exist in Illuminate\Database\Eloquent\Builder, but not in Illuminate\Database\Eloquent\Model.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
50
51
        if (! is_null($request->input('query'))) {
52
            $nodes->search($request->input('query'));
53
        }
54
55
        return view('admin.nodes.index', ['nodes' => $nodes->paginate(25)]);
0 ignored issues
show
Bug Compatibility introduced by
The expression view('admin.nodes.index'...$nodes->paginate(25))); of type Illuminate\View\View|Ill...\Contracts\View\Factory adds the type Illuminate\Contracts\View\Factory to the return on line 55 which is incompatible with the return type documented by Pterodactyl\Http\Control...\NodesController::index of type Illuminate\View\View.
Loading history...
56
    }
57
58
    /**
59
     * Displays create new node page.
60
     *
61
     * @param  \Illuminate\Http\Request  $request
62
     * @return \Illuminate\View\View|\Illuminate\Http\RedirectResponse
63
     */
64
    public function create(Request $request)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
65
    {
66
        $locations = Models\Location::all();
67
        if (! $locations->count()) {
68
            Alert::warning('You must add a location before you can add a new node.')->flash();
69
70
            return redirect()->route('admin.locations');
71
        }
72
73
        return view('admin.nodes.new', ['locations' => $locations]);
74
    }
75
76
    /**
77
     * Post controller to create a new node on the system.
78
     *
79
     * @param  \Illuminate\Http\Request  $request
80
     * @return \Illuminate\Http\RedirectResponse
81
     */
82
    public function store(Request $request)
83
    {
84
        try {
85
            $repo = new NodeRepository;
86
            $node = $repo->create(array_merge(
87
                $request->only([
88
                    'public', 'disk_overallocate',
89
                    'memory_overallocate', 'behind_proxy',
90
                ]),
91
                $request->intersect([
92
                    'name', 'location_id', 'fqdn',
93
                    'scheme', 'memory', 'disk',
94
                    'daemonBase', 'daemonSFTP', 'daemonListen',
95
                ])
96
            ));
97
            Alert::success('Successfully created new node that can be configured automatically on your remote machine by visiting the configuration tab. <strong>Before you can add any servers you need to first assign some IP addresses and ports.</strong>')->flash();
98
99
            return redirect()->route('admin.nodes.view', $node->id);
100
        } catch (DisplayValidationException $e) {
101
            return redirect()->route('admin.nodes.new')->withErrors(json_decode($e->getMessage()))->withInput();
102
        } catch (DisplayException $e) {
103
            Alert::danger($e->getMessage())->flash();
104
        } catch (\Exception $e) {
105
            Log::error($e);
106
            Alert::danger('An unhandled exception occured while attempting to add this node. Please try again.')->flash();
107
        }
108
109
        return redirect()->route('admin.nodes.new')->withInput();
110
    }
111
112
    /**
113
     * Shows the index overview page for a specific node.
114
     *
115
     * @param  \Illuminate\Http\Request  $request
116
     * @param  int                       $id
117
     * @return \Illuminate\View\View
118
     */
119
    public function viewIndex(Request $request, $id)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
120
    {
121
        $node = Models\Node::with('location')->withCount('servers')->findOrFail($id);
0 ignored issues
show
Bug introduced by
The method withCount does only exist in Illuminate\Database\Eloquent\Builder, but not in Illuminate\Database\Eloquent\Model.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
122
        $stats = collect(
123
            Models\Server::select(
124
                DB::raw('SUM(memory) as memory, SUM(disk) as disk')
125
            )->where('node_id', $node->id)->first()
126
        )->mapWithKeys(function ($item, $key) use ($node) {
127
            if ($node->{$key . '_overallocate'} > 0) {
128
                $withover = $node->{$key} * (1 + ($node->{$key . '_overallocate'} / 100));
129
            } else {
130
                $withover = $node->{$key};
131
            }
132
133
            $percent = ($item / $withover) * 100;
134
135
            return [$key => [
136
                'value' => number_format($item),
137
                'max' => number_format($withover),
138
                'percent' => $percent,
139
                'css' => ($percent <= 75) ? 'green' : (($percent > 90) ? 'red' : 'yellow'),
140
            ]];
141
        })->toArray();
142
143
        return view('admin.nodes.view.index', ['node' => $node, 'stats' => $stats]);
0 ignored issues
show
Bug Compatibility introduced by
The expression view('admin.nodes.view.i...e, 'stats' => $stats)); of type Illuminate\View\View|Ill...\Contracts\View\Factory adds the type Illuminate\Contracts\View\Factory to the return on line 143 which is incompatible with the return type documented by Pterodactyl\Http\Control...esController::viewIndex of type Illuminate\View\View.
Loading history...
144
    }
145
146
    /**
147
     * Shows the settings page for a specific node.
148
     *
149
     * @param  \Illuminate\Http\Request  $request
150
     * @param  int                       $id
151
     * @return \Illuminate\View\View
152
     */
153
    public function viewSettings(Request $request, $id)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
154
    {
155
        return view('admin.nodes.view.settings', [
0 ignored issues
show
Bug Compatibility introduced by
The expression view('admin.nodes.view.s...dels\Location::all())); of type Illuminate\View\View|Ill...\Contracts\View\Factory adds the type Illuminate\Contracts\View\Factory to the return on line 155 which is incompatible with the return type documented by Pterodactyl\Http\Control...ontroller::viewSettings of type Illuminate\View\View.
Loading history...
156
            'node' => Models\Node::findOrFail($id),
157
            'locations' => Models\Location::all(),
158
        ]);
159
    }
160
161
    /**
162
     * Shows the configuration page for a specific node.
163
     *
164
     * @param  \Illuminate\Http\Request  $request
165
     * @param  int                       $id
166
     * @return \Illuminate\View\View
167
     */
168
    public function viewConfiguration(Request $request, $id)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
169
    {
170
        return view('admin.nodes.view.configuration', [
0 ignored issues
show
Bug Compatibility introduced by
The expression view('admin.nodes.view.c...ode::findOrFail($id))); of type Illuminate\View\View|Ill...\Contracts\View\Factory adds the type Illuminate\Contracts\View\Factory to the return on line 170 which is incompatible with the return type documented by Pterodactyl\Http\Control...ller::viewConfiguration of type Illuminate\View\View.
Loading history...
171
            'node' => Models\Node::findOrFail($id),
172
        ]);
173
    }
174
175
    /**
176
     * Shows the allocation page for a specific node.
177
     *
178
     * @param  \Illuminate\Http\Request  $request
179
     * @param  int                       $id
180
     * @return \Illuminate\View\View
181
     */
182
    public function viewAllocation(Request $request, $id)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
183
    {
184
        $node = Models\Node::findOrFail($id);
185
        $node->setRelation('allocations', $node->allocations()->orderBy('ip', 'asc')->orderBy('port', 'asc')->with('server')->paginate(50));
186
187
        Javascript::put([
188
            'node' => collect($node)->only(['id']),
189
        ]);
190
191
        return view('admin.nodes.view.allocation', ['node' => $node]);
0 ignored issues
show
Bug Compatibility introduced by
The expression view('admin.nodes.view.a...rray('node' => $node)); of type Illuminate\View\View|Ill...\Contracts\View\Factory adds the type Illuminate\Contracts\View\Factory to the return on line 191 which is incompatible with the return type documented by Pterodactyl\Http\Control...troller::viewAllocation of type Illuminate\View\View.
Loading history...
192
    }
193
194
    /**
195
     * Shows the server listing page for a specific node.
196
     *
197
     * @param  \Illuminate\Http\Request  $request
198
     * @param  int                       $id
199
     * @return \Illuminate\View\View
200
     */
201
    public function viewServers(Request $request, $id)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
202
    {
203
        $node = Models\Node::with('servers.user', 'servers.service', 'servers.option')->findOrFail($id);
0 ignored issues
show
Bug introduced by
The method findOrFail does only exist in Illuminate\Database\Eloquent\Builder, but not in Illuminate\Database\Eloquent\Model.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
204
        Javascript::put([
205
            'node' => collect($node->makeVisible('daemonSecret'))->only(['scheme', 'fqdn', 'daemonListen', 'daemonSecret']),
206
        ]);
207
208
        return view('admin.nodes.view.servers', [
0 ignored issues
show
Bug Compatibility introduced by
The expression view('admin.nodes.view.s...rray('node' => $node)); of type Illuminate\View\View|Ill...\Contracts\View\Factory adds the type Illuminate\Contracts\View\Factory to the return on line 208 which is incompatible with the return type documented by Pterodactyl\Http\Control...Controller::viewServers of type Illuminate\View\View.
Loading history...
209
            'node' => $node,
210
        ]);
211
    }
212
213
    /**
214
     * Updates settings for a node.
215
     *
216
     * @param  \Illuminate\Http\Request  $request
217
     * @param  int                       $id
218
     * @return \Illuminate\Http\RedirectResponse
219
     */
220
    public function updateSettings(Request $request, $id)
221
    {
222
        $repo = new NodeRepository;
223
224
        try {
225
            $node = $repo->update($id, array_merge(
0 ignored issues
show
Unused Code introduced by
$node is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
226
                $request->only([
227
                    'public', 'disk_overallocate',
228
                    'memory_overallocate', 'behind_proxy',
229
                ]),
230
                $request->intersect([
231
                    'name', 'location_id', 'fqdn',
232
                    'scheme', 'memory', 'disk', 'upload_size',
233
                    'reset_secret', 'daemonSFTP', 'daemonListen',
234
                ])
235
            ));
236
            Alert::success('Successfully updated this node\'s information. If you changed any daemon settings you will need to restart it now.')->flash();
237
        } catch (DisplayValidationException $ex) {
238
            return redirect()->route('admin.nodes.view.settings', $id)->withErrors(json_decode($ex->getMessage()))->withInput();
0 ignored issues
show
Documentation introduced by
$id is of type integer, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
239
        } catch (DisplayException $ex) {
240
            Alert::danger($ex->getMessage())->flash();
241
        } catch (\Exception $ex) {
242
            Log::error($ex);
243
            Alert::danger('An unhandled exception occured while attempting to edit this node. Please try again.')->flash();
244
        }
245
246
        return redirect()->route('admin.nodes.view.settings', $id)->withInput();
0 ignored issues
show
Documentation introduced by
$id is of type integer, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
247
    }
248
249
    /**
250
     * Removes a single allocation from a node.
251
     *
252
     * @param  \Illuminate\Http\Request  $request
253
     * @param  int                       $node
254
     * @param  int                       $allocation
255
     * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
256
     */
257
    public function allocationRemoveSingle(Request $request, $node, $allocation)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
258
    {
259
        $query = Models\Allocation::where('node_id', $node)->whereNull('server_id')->where('id', $allocation)->delete();
260
        if ($query < 1) {
261
            return response()->json([
262
                'error' => 'Unable to find an allocation matching those details to delete.',
263
            ], 400);
264
        }
265
266
        return response('', 204);
267
    }
268
269
    /**
270
     * Remove all allocations for a specific IP at once on a node.
271
     *
272
     * @param  \Illuminate\Http\Request  $request
273
     * @param  int                       $node
274
     * @return \Illuminate\Http\RedirectResponse
275
     */
276
    public function allocationRemoveBlock(Request $request, $node)
277
    {
278
        $query = Models\Allocation::where('node_id', $node)->whereNull('server_id')->where('ip', $request->input('ip'))->delete();
279
        if ($query < 1) {
280
            Alert::danger('There was an error while attempting to delete allocations on that IP.')->flash();
281
        } else {
282
            Alert::success('Deleted all unallocated ports for <code>' . $request->input('ip') . '</code>.')->flash();
283
        }
284
285
        return redirect()->route('admin.nodes.view.allocation', $node);
0 ignored issues
show
Documentation introduced by
$node is of type integer, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
286
    }
287
288
    /**
289
     * Sets an alias for a specific allocation on a node.
290
     *
291
     * @param  \Illuminate\Http\Request  $request
292
     * @param  int                       $node
293
     * @return \Illuminate\Http\Response
294
     */
295
    public function allocationSetAlias(Request $request, $node)
0 ignored issues
show
Unused Code introduced by
The parameter $node is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
296
    {
297
        if (! $request->input('allocation_id')) {
298
            return response('Missing required parameters.', 422);
299
        }
300
301
        try {
302
            $update = Models\Allocation::findOrFail($request->input('allocation_id'));
303
            $update->ip_alias = (empty($request->input('alias'))) ? null : $request->input('alias');
304
            $update->save();
305
306
            return response('', 204);
307
        } catch (\Exception $ex) {
308
            throw $ex;
309
        }
310
    }
311
312
    /**
313
     * Creates new allocations on a node.
314
     *
315
     * @param  \Illuminate\Http\Request  $request
316
     * @param  int                       $node
317
     * @return \Illuminate\Http\RedirectResponse
318
     */
319
    public function createAllocation(Request $request, $node)
320
    {
321
        $repo = new NodeRepository;
322
323
        try {
324
            $repo->addAllocations($node, $request->intersect(['allocation_ip', 'allocation_alias', 'allocation_ports']));
325
            Alert::success('Successfully added new allocations!')->flash();
326
        } catch (DisplayValidationException $ex) {
327
            return redirect()->route('admin.nodes.view.allocation', $node)->withErrors(json_decode($ex->getMessage()))->withInput();
0 ignored issues
show
Documentation introduced by
$node is of type integer, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
328
        } catch (DisplayException $ex) {
329
            Alert::danger($ex->getMessage())->flash();
330
        } catch (\Exception $ex) {
331
            Log::error($ex);
332
            Alert::danger('An unhandled exception occured while attempting to add allocations this node. This error has been logged.')->flash();
333
        }
334
335
        return redirect()->route('admin.nodes.view.allocation', $node);
0 ignored issues
show
Documentation introduced by
$node is of type integer, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
336
    }
337
338
    /**
339
     * Deletes a node from the system.
340
     *
341
     * @param  \Illuminate\Http\Request  $request
342
     * @param  int                       $id
343
     * @return \Illuminate\Http\RedirectResponse
344
     */
345 View Code Duplication
    public function delete(Request $request, $id)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
346
    {
347
        $repo = new NodeRepository;
348
349
        try {
350
            $repo->delete($id);
351
            Alert::success('Successfully deleted the requested node from the panel.')->flash();
352
353
            return redirect()->route('admin.nodes');
354
        } catch (DisplayException $ex) {
355
            Alert::danger($ex->getMessage())->flash();
356
        } catch (\Exception $ex) {
357
            Log::error($ex);
358
            Alert::danger('An unhandled exception occured while attempting to delete this node. Please try again.')->flash();
359
        }
360
361
        return redirect()->route('admin.nodes.view', $id);
0 ignored issues
show
Documentation introduced by
$id is of type integer, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
362
    }
363
364
    /**
365
     * Returns the configuration token to auto-deploy a node.
366
     *
367
     * @param  \Illuminate\Http\Request  $request
368
     * @param  int                       $id
369
     * @return \Illuminate\Http\JsonResponse
370
     */
371
    public function setToken(Request $request, $id)
0 ignored issues
show
Unused Code introduced by
The parameter $request is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
372
    {
373
        $node = Models\Node::findOrFail($id);
374
375
        $token = str_random(32);
376
        Cache::tags(['Node:Configuration'])->put($token, $node->id, 5);
377
378
        return response()->json(['token' => $token]);
379
    }
380
}
381