Add support for creating a user using the API
This commit is contained in:
parent
3114c1f73e
commit
695728295a
5 changed files with 122 additions and 20 deletions
|
@ -4,8 +4,11 @@ namespace Pterodactyl\Http\Controllers\API;
|
|||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
use Dingo\Api\Exception\StoreResourceFailedException;
|
||||
|
||||
use Pterodactyl\Transformers\UserTransformer;
|
||||
use Pterodactyl\Models;
|
||||
use Pterodactyl\Repositories\UserRepository;
|
||||
|
||||
/**
|
||||
* @Resource("Users", uri="/users")
|
||||
|
@ -21,7 +24,7 @@ class UserController extends BaseController
|
|||
* @Get("/{?page}")
|
||||
* @Versions({"v1"})
|
||||
* @Parameters({
|
||||
* @Parameter("page", type="integer", description="The page of results to view.", default=1)
|
||||
* @Parameter("page", type="integer", description="The page of results to view.", default=1)
|
||||
* })
|
||||
* @Response(200)
|
||||
*/
|
||||
|
@ -39,8 +42,8 @@ class UserController extends BaseController
|
|||
* @Get("/{id}/{fields}")
|
||||
* @Versions({"v1"})
|
||||
* @Parameters({
|
||||
* @Parameter("id", type="integer", required=true, description="The ID of the user to get information on."),
|
||||
* @Parameter("fields", type="string", required=false, description="A comma delimidated list of fields to include.")
|
||||
* @Parameter("id", type="integer", required=true, description="The ID of the user to get information on."),
|
||||
* @Parameter("fields", type="string", required=false, description="A comma delimidated list of fields to include.")
|
||||
* })
|
||||
* @Response(200)
|
||||
*/
|
||||
|
@ -59,4 +62,82 @@ class UserController extends BaseController
|
|||
return $query->first();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a New User
|
||||
*
|
||||
* @Post("/")
|
||||
* @Versions({"v1"})
|
||||
* @Transaction({
|
||||
* @Request({
|
||||
* "email": "foo@example.com",
|
||||
* "password": "foopassword",
|
||||
* "admin": false
|
||||
* }, headers={"Authorization": "Bearer <jwt-token>"}),
|
||||
* @Response(200, body={"id": 1}),
|
||||
* @Response(422, body{
|
||||
* "message": "A validation error occured.",
|
||||
* "errors": {
|
||||
* "email": ["The email field is required."],
|
||||
* "password": ["The password field is required."],
|
||||
* "admin": ["The admin field is required."]
|
||||
* },
|
||||
* "status_code": 422
|
||||
* })
|
||||
* })
|
||||
*/
|
||||
public function postUsers(Request $request)
|
||||
{
|
||||
try {
|
||||
$user = new UserRepository;
|
||||
$create = $user->create($request->input('email'), $request->input('password'), $request->input('admin'));
|
||||
return [ 'id' => $create ];
|
||||
} catch (\Pterodactyl\Exceptions\DisplayValidationException $ex) {
|
||||
throw new StoreResourceFailedException('A validation error occured.', json_decode($ex->getMessage(), true));
|
||||
} catch (\Exception $ex) {
|
||||
throw new StoreResourceFailedException('Unable to create a user on the system due to an error.');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Update an Existing User
|
||||
*
|
||||
* The data sent in the request will be used to update the existing user on the system.
|
||||
*
|
||||
* @Patch("/{id}")
|
||||
* @Versions({"v1"})
|
||||
* @Transaction({
|
||||
* @Request({
|
||||
* "email": "new@email.com"
|
||||
* }, headers={"Authorization": "Bearer <jwt-token>"}),
|
||||
* @Response(200, body={"email": "new@email.com"}),
|
||||
* @Response(422)
|
||||
* })
|
||||
* @Parameters({
|
||||
* @Parameter("id", type="integer", required=true, description="The ID of the user to modify.")
|
||||
* })
|
||||
*/
|
||||
public function patchUser(Request $request, $id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete a User
|
||||
*
|
||||
* @Delete("/{id}")
|
||||
* @Versions({"v1"})
|
||||
* @Transaction({
|
||||
* @Request(headers={"Authorization": "Bearer <jwt-token>"}),
|
||||
* @Response(204),
|
||||
* @Response(422)
|
||||
* })
|
||||
* @Parameters({
|
||||
* @Parameter("id", type="integer", required=true, description="The ID of the user to delete.")
|
||||
* })
|
||||
*/
|
||||
public function deleteUser(Request $request, $id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue