Home > PHP Framework > Laravel > body text

Model provides UUID to the outside world while retaining ID.

步履不停
Release: 2019-07-03 17:57:32
Original
2060 people have browsed it

Model provides UUID to the outside world while retaining ID.

In some applications, not exposing the ID can prevent others from easily knowing the number of models in your database.

Translator’s Note: Hiding the ID can also effectively prevent users from maliciously traversing the content of the website.

Hey, Imagine that in my Podcast application, I set a default id. In Laravel's Podcast model, it is an integer that is automatically incremented by one every time a row is inserted, Therefore, the id of the 47th Podcast in the table is 47. I then claimed within my website: "This Podcast app has millions of podcasts, so don't miss out!", which was easily debunked when seeing the latest podcast ID:

https://podcast.app/podcasts/47
Copy after login

Hide the ID without rewiring everything in the app and hope not to be seen through? OK, there is a way.

Setting up the database

Some databases can be configured to set the UUID as the primary key when inserting new rows. You should check this on the RDBMS you are using, as each RDBMS implementation is different.

You can also tell the application to set the default UUID when creating new records using Eloqument events, but this will force you to use Eloqument in all cases. If you insert a record directly into the database you may get an error - this is one of the reasons why I prefer setting automatic UUIDs in the database rather than in the application, it shouldn't depend on anything as this is database behavior .

In summary, you should set up your database using Laravel like this:

bigIncrements('id');
            $table->uuid('uuid')->index();
            $table->string('filename');
            $table->string('path');
            $table->string('service');
            $table->string('format', 4);
            $table->unsginedTinyInteger('quality', 4);

            $table->timestamps();
            $table->timestamps();
            $table->softDeletes();
        });
    }
    /**
     * 回滚数据库迁移
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('podcast');
    }
}
Copy after login

As you can see, we added $table->uuid('uuid')- >index(). This code tells Laravel to use the UUID column (or use the string column if supported) and create an index on this column so that rows can be quickly retrieved by UUID, just like they would if someone visited this URL :

https://podcast.app/podcast/535c4cdf-70a0-4615-82f2-443e95c86aec
Copy after login

You could argue that another index would hinder insert operations, but that's a trade-off.

Now, the problem lies with the controller and the model.

Connecting models to UUIDs

You don’t need to do anything in the model except two things: hide the ID from serialization and allow the model to use the UUID for "URL routing" .

Copy after login

To hide the ID, we can add the id column to the hidden properties array. When the model is serialized, such as converted to an array or JSON string, the ID will not be displayed. Of course, you can also access the ID of the obtained property just like a property or array key.

The next step is to tell Laravel that when the URL contains the UUID of the model, get the model through the uuid column. This will allow the model to be looked up by setting up a route such as:

Route::get({podcast}, 'PodcastController@show');
Copy after login

and then using it within our PodcastController class.

/**
 * 通过 UUID 显示播客
 *
 * @param  \App\Podcast $podcast
 * @return \Illuminate\Http\Response
/* 
public function show(Podcast $podcast)
{
    return response()->view('response', [
        'podcast' => $podcast
    ]);
}
Copy after login

You can also use the resolveRouteBinding() method in the model if you can programmatically set how to retrieve the model by a given value. You can even allow authenticated administrators to retrieve records based on their ID or UUID.

That's it, there's nothing more to do. This technology also allows the UUID to be set after the application is built.

For more Laravel related technical articles, please visit the

Laravel Tutorial column to learn!

The above is the detailed content of Model provides UUID to the outside world while retaining ID.. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!