Blame view

api/routes/api.php 2.15 KB
0d8c0f816   Thanasis Naskos   initial commit
1
  <?php
0d8c0f816   Thanasis Naskos   initial commit
2
3
4
5
6
7
8
9
10
11
12
13
  use Illuminate\Support\Facades\Route;
  
  /*
  |--------------------------------------------------------------------------
  | API Routes
  |--------------------------------------------------------------------------
  |
  | Here is where you can register API routes for your application. These
  | routes are loaded by the RouteServiceProvider within a group which
  | is assigned the "api" middleware group. Enjoy building your API!
  |
  */
0d8c0f816   Thanasis Naskos   initial commit
14
  Route::group(['middleware' => 'auth:api'], function () {
0d8c0f816   Thanasis Naskos   initial commit
15

25df08e6c   Chris Bellas   Merged changes fr...
16
      Route::get('capec', 'CapecController@index');
0d8c0f816   Thanasis Naskos   initial commit
17
18
19
20
      Route::group(['prefix' => 'v1'], function () {
  
          Route::post('adt', 'V1\Partners\AdtController@store');
          Route::post('xlsiem', 'V1\Partners\XlsiemController@store');
25df08e6c   Chris Bellas   Merged changes fr...
21
          Route::group(['prefix' => 'ceptd'], function () {
0d8c0f816   Thanasis Naskos   initial commit
22
23
24
25
              Route::get('start', 'V1\Components\CeptdController@start');
              Route::get('status', 'V1\Components\CeptdController@status');
              Route::get('stop', 'V1\Components\CeptdController@stop');
          });
25df08e6c   Chris Bellas   Merged changes fr...
26
          Route::group(['prefix' => 'mltd'], function () {
0d8c0f816   Thanasis Naskos   initial commit
27
28
29
30
              Route::get('start', 'V1\Components\MltdController@start');
              Route::get('status', 'V1\Components\MltdController@status');
              Route::get('stop/{pid}', 'V1\Components\MltdController@stop');
              Route::get('{train_id}/{top}', 'V1\Components\MltdController@train');
7dff14cf4   Chris Bellas   Change OD, MLTD e...
31
              Route::get('events/count','V1\Components\MltdController@count');
e90472e8b   Chris Bellas   Added events/grou...
32
              Route::get('events/group','V1\Components\MltdController@group');
7d8c6fcc3   Chris Bellas   Added new endpoin...
33
              Route::get('events/last','V1\Components\MltdController@last');
0d8c0f816   Thanasis Naskos   initial commit
34
          });
25df08e6c   Chris Bellas   Merged changes fr...
35
          Route::group(['prefix' => 'od'], function () {
0d8c0f816   Thanasis Naskos   initial commit
36
37
38
39
              Route::get('start', 'V1\Components\OdController@start');
              Route::get('status', 'V1\Components\OdController@status');
              Route::get('stop/{pid}', 'V1\Components\OdController@stop');
              Route::post('analyze/{pid}', 'V1\Components\OdController@analyze');
7dff14cf4   Chris Bellas   Change OD, MLTD e...
40
              Route::get('events/count','V1\Components\OdController@count');
e90472e8b   Chris Bellas   Added events/grou...
41
              Route::get('events/group','V1\Components\OdController@group');
7d8c6fcc3   Chris Bellas   Added new endpoin...
42
              Route::get('events/last','V1\Components\OdController@last');
0d8c0f816   Thanasis Naskos   initial commit
43
44
          });
      });
0d8c0f816   Thanasis Naskos   initial commit
45

25df08e6c   Chris Bellas   Merged changes fr...
46
  });