<?php
/**
 * Pterodactyl - Panel
 * Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
namespace Pterodactyl\Http\Routes;

use Pterodactyl\Models;
use Illuminate\Routing\Router;

class APIRoutes
{

    public function map(Router $router) {

        $api = app('Dingo\Api\Routing\Router');
        $api->version('v1', ['middleware' => 'api.auth'], function ($api) {

            /**
             * User Routes
             */
            $api->get('users', [
                'as' => 'api.users',
                'uses' => 'Pterodactyl\Http\Controllers\API\UserController@getUsers'
            ]);

            $api->post('users', [
                'as' => 'api.users.post',
                'uses' => 'Pterodactyl\Http\Controllers\API\UserController@postUser'
            ]);

            $api->get('users/{id}', [
                'as' => 'api.users.view',
                'uses' => 'Pterodactyl\Http\Controllers\API\UserController@getUser'
            ]);

            $api->patch('users/{id}', [
                'as' => 'api.users.patch',
                'uses' => 'Pterodactyl\Http\Controllers\API\UserController@patchUser'
            ]);

            $api->delete('users/{id}', [
                'as' => 'api.users.delete',
                'uses' => 'Pterodactyl\Http\Controllers\API\UserController@deleteUser'
            ]);

            /**
             * Server Routes
             */
            $api->get('servers', [
                'as' => 'api.servers',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServerController@getServers'
            ]);

            $api->post('servers', [
                'as' => 'api.servers.post',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServerController@postServer'
            ]);

            $api->get('servers/{id}', [
                'as' => 'api.servers.view',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServerController@getServer'
            ]);

            $api->post('servers/{id}/suspend', [
                'as' => 'api.servers.suspend',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServerController@postServerSuspend'
            ]);

            $api->post('servers/{id}/unsuspend', [
                'as' => 'api.servers.unsuspend',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServerController@postServerUnsuspend'
            ]);

            $api->delete('servers/{id}/{force?}', [
                'as' => 'api.servers.delete',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServerController@deleteServer'
            ]);

            /**
             * Node Routes
             */
            $api->get('nodes', [
                'as' => 'api.nodes',
                'uses' => 'Pterodactyl\Http\Controllers\API\NodeController@getNodes'
            ]);

            $api->post('nodes', [
                'as' => 'api.nodes.post',
                'uses' => 'Pterodactyl\Http\Controllers\API\NodeController@postNode'
            ]);

            $api->get('nodes/{id}', [
                'as' => 'api.nodes.view',
                'uses' => 'Pterodactyl\Http\Controllers\API\NodeController@getNode'
            ]);

            $api->get('nodes/{id}/allocations', [
                'as' => 'api.nodes.view_allocations',
                'uses' => 'Pterodactyl\Http\Controllers\API\NodeController@getNodeAllocations'
            ]);

            $api->delete('nodes/{id}', [
                'as' => 'api.nodes.delete',
                'uses' => 'Pterodactyl\Http\Controllers\API\NodeController@deleteNode'
            ]);

            /**
             * Location Routes
             */
            $api->get('locations', [
                'as' => 'api.locations',
                'uses' => 'Pterodactyl\Http\Controllers\API\LocationController@getLocations'
            ]);

            /**
             * Service Routes
             */
            $api->get('services', [
                'as' => 'api.services',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServiceController@getServices'
            ]);

            $api->get('services/{id}', [
                'as' => 'api.services.view',
                'uses' => 'Pterodactyl\Http\Controllers\API\ServiceController@getService'
            ]);

        });
    }

}