mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
45 lines
1.6 KiB
PHP
45 lines
1.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
use App\User;
|
|
use Rinvex\Subscriptions\Models\PlanFeature;
|
|
|
|
Route::get('/debug', function () {
|
|
|
|
$user = User::find(1);
|
|
|
|
return $user->subscription('main')->asStripeSubscription();
|
|
});
|
|
|
|
// Deployment Webhook URL
|
|
Route::post('/deploy/github', 'DeployController@github');
|
|
|
|
// Get public thumbnails and files
|
|
Route::get('/thumbnail/{name}/public/{token}', 'FileAccessController@get_thumbnail_public');
|
|
Route::get('/avatars/{avatar}', 'FileAccessController@get_avatar')->name('avatar');
|
|
Route::get('/file/{name}/public/{token}', 'FileAccessController@get_file_public');
|
|
|
|
// User master,editor,visitor access to image thumbnails and file downloads
|
|
Route::group(['middleware' => ['auth:api', 'auth.shared', 'auth.master', 'scope:master,editor,visitor']], function () {
|
|
Route::get('/thumbnail/{name}', 'FileAccessController@get_thumbnail')->name('thumbnail');
|
|
Route::get('/file/{name}', 'FileAccessController@get_file')->name('file');
|
|
});
|
|
|
|
Route::group(['middleware' => ['auth:api', 'auth.master', 'scope:master']], function () {
|
|
Route::get('/invoice/{token}', 'Admin\InvoiceController@show');
|
|
});
|
|
|
|
// Pages
|
|
Route::get('/shared/{token}', 'Sharing\FileSharingController@index');
|
|
Route::get('/{any?}', 'AppFunctionsController@index')->where('any', '.*');
|