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/
No description
No description
17 Replies
Alnuaimi
AlnuaimiOP3w ago
Up
toeknee
toeknee3w ago
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?
Alnuaimi
AlnuaimiOP3w ago
I have https the same problem https://tenant1.mydomain.com/tenant/54/01JPSG2S5D4PC4XM5XGBYARVPJ.png any one can access this image
toeknee
toeknee3w ago
Ok, so it should render. what does the console say in the browser
Alnuaimi
AlnuaimiOP3w ago
What do you mean?
toeknee
toeknee3w ago
Do you know what the browser console / network requests are?
Alnuaimi
AlnuaimiOP3w ago
ok ,
No description
toeknee
toeknee3w ago
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
Alnuaimi
AlnuaimiOP3w ago
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
toeknee
toeknee3w ago
That's because disk local won't have a provate visibility access url I suspect. for private you need a temporary url builder
Alnuaimi
AlnuaimiOP3w ago
for private you need a temporary url builder with public ,Is it ok?
toeknee
toeknee3w ago
it depends if you want the images to be publically accessible or not
Alnuaimi
AlnuaimiOP3w ago
not
toeknee
toeknee3w ago
So then you need to use private... But you need to buold a tempory url builder... see:https://discord.com/channels/883083792112300104/1145723690839973908
Alnuaimi
AlnuaimiOP3w ago
ok,but where I can write that ,I have two routes tenant.php and web.php
toeknee
toeknee3w ago
See the linked article above
Alnuaimi
AlnuaimiOP3w ago
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

Did you find this page helpful?