private image with TenancyForLaravel
Guys, I have a multi-tenant program.
I use tenancyforlarav.
Of course, I upload the files to the public disk and there is no problem. This is considered a violation because once you get the link, you can access the file. I tried to switch to the private disk, but I couldn't. It is true that the files are saved there, but they are no longer displayed in the form. Can anyone help me solve this problem, Thanks.
storage/
└── tenant/
└── {tenantId}/
└── app/
├── private/
└── public/
├── grc/
├── lms/
├── policyack/
└── ps/


17 Replies
Up
Firstly it looks like it's http and if you are running https it won't render and will be blocked.
Secondly, is the URL accessible directly?
I have https the same problem
https://tenant1.mydomain.com/tenant/54/01JPSG2S5D4PC4XM5XGBYARVPJ.png
any one can access this image
Ok, so it should render. what does the console say in the browser
What do you mean?
Do you know what the browser console / network requests are?
ok ,

So exactly, the file is not found. it's a 404 that's why its not showing it. You need to fix that first.
make sure to have run: php artisan storage:link
I think when use private disk not need storage link
but if i change ->disk('public') is very ok no problem
but when use ->disk('local')
->visibility('private') I have the problem
That's because disk local won't have a provate visibility access url I suspect. for private you need a temporary url builder
for private you need a temporary url builder
with public ,Is it ok?
it depends if you want the images to be publically accessible or not
not
So then you need to use private... But you need to buold a tempory url builder... see:https://discord.com/channels/883083792112300104/1145723690839973908
ok,but where I can write that ,I have two routes tenant.php and web.php
See the linked article above
Step 1: Add the following code in the AppServiceProvider boot method.
Storage::disk('local')->buildTemporaryUrlsUsing(function ($path, $expiration, $options) {
return URL::temporarySignedRoute(
'local.temp',
$expiration,
array_merge($options, ['path' => $path])
);
});
Notice that URL::temporarySignedRoute receives route name local.temp, which we need to define.
Step 2: Add the route in web.php
Route::get('local/temp/{path}', function (string $path){
return Storage::disk('local')->download($path);
})->name('local.temp');
I did it ,but not work