mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Import ReactPHP Socket and required dependencies Add a new configuration variable to define the unix pipe path Generalize the API Key to all the users, add a new endpoint to retrieve it, update the documentation Update the dependencies Update the documentation Complete the tests
94 lines
No EOL
4.8 KiB
PHP
94 lines
No EOL
4.8 KiB
PHP
<?php
|
|
/*
|
|
Flexisip Account Manager is a set of tools to manage SIP accounts.
|
|
Copyright (C) 2020 Belledonne Communications SARL, All rights reserved.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
Route::get('/', 'Api\ApiController@documentation')->name('api');
|
|
|
|
Route::middleware('auth:api')->get('/user', function (Request $request) {
|
|
return $request->user();
|
|
});
|
|
|
|
Route::get('ping', 'Api\PingController@ping');
|
|
Route::post('tokens', 'Api\TokenController@create');
|
|
Route::get('accounts/{sip}/info', 'Api\AccountController@info');
|
|
Route::post('accounts/with-token', 'Api\AccountController@store');
|
|
Route::post('accounts/{sip}/activate/email', 'Api\AccountController@activateEmail');
|
|
Route::post('accounts/{sip}/activate/phone', 'Api\AccountController@activatePhone');
|
|
|
|
Route::group(['middleware' => ['auth.digest_or_key']], function () {
|
|
Route::get('statistic/month', 'Api\StatisticController@month');
|
|
Route::get('statistic/week', 'Api\StatisticController@week');
|
|
Route::get('statistic/day', 'Api\StatisticController@day');
|
|
|
|
Route::get('accounts/me/api_key', 'Api\AccountController@generateApiKey')->middleware('cookie', 'cookie.encrypt');
|
|
|
|
Route::get('accounts/me', 'Api\AccountController@show');
|
|
Route::delete('accounts/me', 'Api\AccountController@delete');
|
|
|
|
Route::post('accounts/me/phone/request', 'Api\AccountPhoneController@requestUpdate');
|
|
Route::post('accounts/me/phone', 'Api\AccountPhoneController@update');
|
|
|
|
Route::get('accounts/me/devices', 'Api\DeviceController@index');
|
|
Route::delete('accounts/me/devices/{uuid}', 'Api\DeviceController@destroy');
|
|
|
|
Route::post('accounts/me/email/request', 'Api\EmailController@requestUpdate');
|
|
Route::post('accounts/me/password', 'Api\PasswordController@update');
|
|
|
|
Route::get('accounts/me/contacts/{sip}', 'Api\AccountContactController@show');
|
|
Route::get('accounts/me/contacts', 'Api\AccountContactController@index');
|
|
|
|
Route::group(['middleware' => ['auth.admin']], function () {
|
|
if (!empty(config('app.linphone_daemon_unix_pipe'))) {
|
|
Route::post('messages', 'Api\MessageController@send');
|
|
}
|
|
|
|
// Accounts
|
|
Route::get('accounts/{id}/activate', 'Api\Admin\AccountController@activate');
|
|
Route::get('accounts/{id}/deactivate', 'Api\Admin\AccountController@deactivate');
|
|
Route::post('accounts', 'Api\Admin\AccountController@store');
|
|
Route::get('accounts', 'Api\Admin\AccountController@index');
|
|
Route::get('accounts/{sip}/search', 'Api\Admin\AccountController@search');
|
|
Route::get('accounts/{id}', 'Api\Admin\AccountController@show');
|
|
Route::delete('accounts/{id}', 'Api\Admin\AccountController@destroy');
|
|
|
|
// Account actions
|
|
Route::get('accounts/{id}/actions', 'Api\Admin\AccountActionController@index');
|
|
Route::get('accounts/{id}/actions/{action_id}', 'Api\Admin\AccountActionController@show');
|
|
Route::post('accounts/{id}/actions', 'Api\Admin\AccountActionController@store');
|
|
Route::delete('accounts/{id}/actions/{action_id}', 'Api\Admin\AccountActionController@destroy');
|
|
Route::put('accounts/{id}/actions/{action_id}', 'Api\Admin\AccountActionController@update');
|
|
|
|
// Account contacts
|
|
Route::get('accounts/{id}/contacts', 'Api\Admin\AccountContactController@index');
|
|
Route::get('accounts/{id}/contacts/{contact_id}', 'Api\Admin\AccountContactController@show');
|
|
Route::post('accounts/{id}/contacts/{contact_id}', 'Api\Admin\AccountContactController@add');
|
|
Route::delete('accounts/{id}/contacts/{contact_id}', 'Api\Admin\AccountContactController@remove');
|
|
|
|
// Account types
|
|
Route::get('account_types', 'Api\Admin\AccountTypeController@index');
|
|
Route::get('account_types/{id}', 'Api\Admin\AccountTypeController@show');
|
|
Route::post('account_types', 'Api\Admin\AccountTypeController@store');
|
|
Route::delete('account_types/{id}', 'Api\Admin\AccountTypeController@destroy');
|
|
Route::put('account_types/{id}', 'Api\Admin\AccountTypeController@update');
|
|
|
|
Route::post('accounts/{id}/types/{type_id}', 'Api\Admin\AccountController@typeAdd');
|
|
Route::delete('accounts/{id}/types/{type_id}', 'Api\Admin\AccountController@typeRemove');
|
|
});
|
|
}); |