Giter Site home page Giter Site logo

Comments (7)

sander3 avatar sander3 commented on May 24, 2024

Hey alessiovietri,

Sure! I don't think you'll be able to wire a full size ZIP file using Inertia itself, but you could add a link in one of your Inertia templates using https://inertiajs.com/links

from laravel-gdpr.

alessiovietri avatar alessiovietri commented on May 24, 2024

Hi,
Thanks for your quick answer. The problem is that when I send the post request (with the correct auth middleware), the response contains the login page and not the file to be downloaded. This is my route, accessed by an axios GET request:

Route::get('/download-data', function () {
        $response = \Http::post('http://website.test/gdpr/download', [ Auth::user()->password, ]);
        return $response;
    })->name('download-data');

Is this correct?

from laravel-gdpr.

sander3 avatar sander3 commented on May 24, 2024

Yes, that's correct. Since your Laravel application uses hashing (that's by default and really should not be disabled haha) the stored password doesn't match the actual plain text version. If you'd like to roll your own auth or disable the re-auth you can change the GDPR config file: https://github.com/sander3/laravel-gdpr/blob/master/config/gdpr.php

If you do want to use re-authentication, you should post the plain text version of the user's password to the gdpr/download endpoint.

from laravel-gdpr.

alessiovietri avatar alessiovietri commented on May 24, 2024

Ah ok, so it's only a problem of hashing. I'll try with plain text password, thanks again!

from laravel-gdpr.

alessiovietri avatar alessiovietri commented on May 24, 2024

No, it's not working. I tried passing the password with the same code as before (but with plain text):

$response = \Http::post('http://website.test/gdpr/download', [ 'password' ]);

Tried also using withToken() function:

$response = \Http::withToken(csrf_token())->post('http://website.test/gdpr/download', [ 'password' ]);

And using withAuth() function too:

$response = \Http::withAuth('[email protected]', 'password')->post('http://website.test/gdpr/download', [ 'password' ]);

It always opens my login page. Any suggestion?

from laravel-gdpr.

sander3 avatar sander3 commented on May 24, 2024

It opens your login page due to a validation exception redirect.

Try passing ['password' => 'YOUR_PASSWORD_HERE'] instead.

from laravel-gdpr.

alessiovietri avatar alessiovietri commented on May 24, 2024

I tried, but nothing changed

from laravel-gdpr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.