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
Pull Request — develop (#371)
by Dane
05:00 queued 02:14
created

NodeController::store()   B

Complexity

Conditions 5
Paths 20

Size

Total Lines 39
Code Lines 28

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 39
rs 8.439
c 0
b 0
f 0
cc 5
eloc 28
nc 20
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\API\Admin;
26
27
use Fractal;
28
use Illuminate\Http\Request;
29
use Pterodactyl\Models\Node;
30
use Pterodactyl\Exceptions\DisplayException;
31
use Pterodactyl\Http\Controllers\Controller;
32
use Pterodactyl\Repositories\NodeRepository;
33
use Pterodactyl\Transformers\Admin\NodeTransformer;
34
use Pterodactyl\Exceptions\DisplayValidationException;
35
use League\Fractal\Pagination\IlluminatePaginatorAdapter;
36
37
class NodeController extends Controller
38
{
39
    /**
40
     * Controller to handle returning all nodes on the system.
41
     *
42
     * @param  \Illuminate\Http\Request  $request
43
     * @return array
44
     */
45 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...
46
    {
47
        $this->authorize('node-list', $request->apiKey());
48
49
        $nodes = Node::paginate(config('pterodactyl.paginate.api.nodes'));
50
        $fractal = Fractal::create()->collection($nodes)
51
            ->transformWith(new NodeTransformer($request))
52
            ->withResourceName('user')
53
            ->paginateWith(new IlluminatePaginatorAdapter($nodes));
54
55
        if (config('pterodactyl.api.include_on_list') && $request->input('include')) {
56
            $fractal->parseIncludes(explode(',', $request->input('include')));
57
        }
58
59
        return $fractal->toArray();
60
    }
61
62
    /**
63
     * Display information about a single node on the system.
64
     *
65
     * @param  \Illuminate\Http\Request  $request
66
     * @param  int                       $id
67
     * @return array
68
     */
69 View Code Duplication
    public function view(Request $request, $id)
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...
70
    {
71
        $this->authorize('node-view', $request->apiKey());
72
73
        $fractal = Fractal::create()->item(Node::findOrFail($id));
74
        if ($request->input('include')) {
75
            $fractal->parseIncludes(explode(',', $request->input('include')));
76
        }
77
78
        return $fractal->transformWith(new NodeTransformer($request))
79
            ->withResourceName('node')
80
            ->toArray();
81
    }
82
83
    /**
84
     * Display information about a single node on the system.
85
     *
86
     * @param  \Illuminate\Http\Request  $request
87
     * @param  int                       $id
88
     * @return \Illuminate\Http\JsonResponse
89
     */
90
    public function viewConfig(Request $request, $id)
91
    {
92
        $this->authorize('node-view-config', $request->apiKey());
93
94
        $node = Node::findOrFail($id);
95
96
        return response()->json(json_decode($node->getConfigurationAsJson()));
97
    }
98
99
    /**
100
     * Create a new node on the system.
101
     *
102
     * @param  \Illuminate\Http\Request  $request
103
     * @return \Illuminate\Http\JsonResponse|array
104
     */
105
    public function store(Request $request)
106
    {
107
        $this->authorize('node-create', $request->apiKey());
108
109
        $repo = new NodeRepository;
110
        try {
111
            $node = $repo->create(array_merge(
112
                $request->only([
113
                    'public', 'disk_overallocate', 'memory_overallocate',
114
                ]),
115
                $request->intersect([
116
                    'name', 'location_id', 'fqdn',
117
                    'scheme', 'memory', 'disk',
118
                    'daemonBase', 'daemonSFTP', 'daemonListen',
119
                ])
120
            ));
121
122
            $fractal = Fractal::create()->item($node)->transformWith(new NodeTransformer($request));
123
            if ($request->input('include')) {
124
                $fractal->parseIncludes(explode(',', $request->input('include')));
125
            }
126
127
            return $fractal->withResourceName('node')->toArray();
128
        } catch (DisplayValidationException $ex) {
129
            return response()->json([
130
                'error' => json_decode($ex->getMessage()),
131
            ], 400);
132
        } catch (DisplayException $ex) {
133
            return response()->json([
134
                'error' => $ex->getMessage(),
135
            ], 400);
136
        } catch (\Exception $ex) {
137
            Log::error($ex);
138
139
            return response()->json([
140
                'error' => 'An unhandled exception occured while attemping to create this node. Please try again.',
141
            ], 500);
142
        }
143
    }
144
145
    /**
146
     * Delete a node from the system.
147
     *
148
     * @param  \Illuminate\Http\Request  $request
149
     * @param  int                       $id
150
     * @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
151
     */
152 View Code Duplication
    public function delete(Request $request, $id)
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...
153
    {
154
        $this->authorize('node-delete', $request->apiKey());
155
156
        $repo = new NodeRepository;
157
        try {
158
            $repo->delete($id);
159
160
            return response('', 204);
161
        } catch (DisplayException $ex) {
162
            return response()->json([
163
                'error' => $ex->getMessage(),
164
            ], 400);
165
        } catch (\Exception $ex) {
166
            Log::error($ex);
167
168
            return response()->json([
169
                'error' => 'An unhandled exception occured while attemping to delete this node. Please try again.',
170
            ], 500);
171
        }
172
    }
173
}
174