2019-05-20 07:37:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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!
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-01-14 17:06:59 +01:00
|
|
|
Route::group(['middleware' => 'guest:api'], function () {
|
|
|
|
|
2021-10-01 13:40:37 +02:00
|
|
|
Route::post('user', 'Auth\RegisterController@register');
|
2020-01-14 17:06:59 +01:00
|
|
|
|
2021-10-01 13:40:37 +02:00
|
|
|
Route::post('login', 'Auth\LoginController@login');
|
|
|
|
|
|
|
|
Route::get('user/name', 'Auth\UserController@show');
|
|
|
|
Route::post('user/password/lost', 'Auth\ForgotPasswordController@sendResetLinkEmail')->middleware('AvoidResetPassword');
|
|
|
|
Route::post('user/password/reset', 'Auth\ResetPasswordController@reset')->name('password.reset');
|
2020-01-14 17:06:59 +01:00
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::group(['middleware' => 'auth:api'], function() {
|
2019-05-20 07:37:41 +02:00
|
|
|
|
2021-10-01 13:40:37 +02:00
|
|
|
Route::get('user', 'Auth\UserController@show');
|
|
|
|
Route::put('user', 'Auth\UserController@update');
|
|
|
|
Route::patch('user/password', 'Auth\PasswordController@update');
|
2020-01-21 22:40:16 +01:00
|
|
|
|
2021-10-01 13:40:37 +02:00
|
|
|
Route::post('logout', 'Auth\LoginController@logout');
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
// Route::prefix('settings')->group(function () {
|
|
|
|
// Route::get('account', 'Settings\AccountController@show');
|
|
|
|
// Route::post('options', 'Settings\OptionController@store');
|
|
|
|
// });
|
|
|
|
|
2021-10-01 13:40:37 +02:00
|
|
|
Route::get('settings/{name}', 'SettingController@show');
|
|
|
|
Route::get('settings', 'SettingController@index');
|
|
|
|
Route::post('settings', 'SettingController@store');
|
|
|
|
Route::put('settings/{name}', 'SettingController@update');
|
|
|
|
Route::delete('settings/{name}', 'SettingController@destroy');
|
2020-02-27 12:18:46 +01:00
|
|
|
|
2021-09-19 22:42:21 +02:00
|
|
|
Route::delete('twofaccounts', 'TwoFAccountController@batchDestroy');
|
2021-09-21 22:46:44 +02:00
|
|
|
Route::patch('twofaccounts/withdraw', 'TwoFAccountController@withdraw');
|
2021-09-19 15:04:53 +02:00
|
|
|
Route::post('twofaccounts/reorder', 'TwoFAccountController@reorder');
|
2020-11-20 14:11:32 +01:00
|
|
|
Route::post('twofaccounts/preview', 'TwoFAccountController@preview');
|
2021-09-18 00:00:50 +02:00
|
|
|
Route::get('twofaccounts/{twofaccount}/qrcode', 'QrCodeController@show');
|
2020-11-21 19:41:36 +01:00
|
|
|
Route::get('twofaccounts/count', 'TwoFAccountController@count');
|
2021-09-26 22:06:49 +02:00
|
|
|
Route::get('twofaccounts/{id}/otp', 'TwoFAccountController@otp')->where('id', '[0-9]+');
|
2021-09-18 00:00:50 +02:00
|
|
|
Route::post('twofaccounts/otp', 'TwoFAccountController@otp');
|
2019-05-24 14:44:41 +02:00
|
|
|
Route::apiResource('twofaccounts', 'TwoFAccountController');
|
2021-10-01 13:40:37 +02:00
|
|
|
|
2021-09-22 22:50:45 +02:00
|
|
|
Route::get('groups/{group}/twofaccounts', 'GroupController@accounts');
|
2021-09-21 22:46:44 +02:00
|
|
|
Route::post('groups/{group}/assign', 'GroupController@assignAccounts');
|
2020-10-22 17:15:05 +02:00
|
|
|
Route::apiResource('groups', 'GroupController');
|
2021-09-18 00:00:50 +02:00
|
|
|
|
2020-01-03 17:25:56 +01:00
|
|
|
Route::post('qrcode/decode', 'QrCodeController@decode');
|
2021-10-01 13:40:37 +02:00
|
|
|
|
2021-09-18 00:00:50 +02:00
|
|
|
Route::post('icons', 'IconController@upload');
|
|
|
|
Route::delete('icons/{icon}', 'IconController@delete');
|
2020-01-14 17:06:59 +01:00
|
|
|
|
2019-05-20 07:37:41 +02:00
|
|
|
});
|