X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2FAuthorization.pod;h=5ba80f0a0756ea7f25cd74179494a27060ccda91;hp=f35deb8e479409cd6d4671d13270a99ec99ee71d;hb=d04961970a25ec3dc831f89be5cd6e27fdec884a;hpb=056394af33148bedf19220d5f4934bf2615d84e8 diff --git a/lib/Catalyst/Manual/Tutorial/Authorization.pod b/lib/Catalyst/Manual/Tutorial/Authorization.pod index f35deb8..5ba80f0 100644 --- a/lib/Catalyst/Manual/Tutorial/Authorization.pod +++ b/lib/Catalyst/Manual/Tutorial/Authorization.pod @@ -95,7 +95,6 @@ Edit C and add C to the list: Edit C and update it to match the following (the C and C definitions are new): - --- name MyApp default_realm dbic @@ -111,19 +110,21 @@ C and C definitions are new): # This is the name of the field in the users table with the # password stored in it password_field password - # We are using an unencrypted password now - password_type clear - + # Switch to more secure hashed passwords + password_type hashed + # Use the SHA-1 hashing algorithm + password_hash_type SHA-1 + # Use DBIC to retrieve username, password & role information class DBIx::Class # This is the model object created by Catalyst::Model::DBIC - # from your schema (you created 'MyAppDB::User' but as the - # Catalyst startup debug messages show, it was loaded as - # 'MyApp::Model::MyAppDB::Users'). + # from your schema (you created 'MyApp::Schema::User' but as + # the Catalyst startup debug messages show, it was loaded as + # 'MyApp::Model::DB::Users'). # NOTE: Omit 'MyApp::Model' here just as you would when using - # '$c->model("MyAppDB::Users)' - user_class MyAppDB::Users + # '$c->model("DB::Users)' + user_class DB::Users # This is the name of the field in your 'users' table that # contains the user's name id_field username @@ -133,10 +134,10 @@ C and C definitions are new): # This is the name of field in the roles table that contains # the role information role_field role - - - - + + + + =head2 Add Role-Specific Logic to the "Book List" Template @@ -198,7 +199,7 @@ updating C to match the following code: if ($c->check_user_roles('admin')) { # Call create() on the book model object. Pass the table # columns/field values we want to set as hash values - my $book = $c->model('MyAppDB::Books')->create({ + my $book = $c->model('DB::Books')->create({ title => $title, rating => $rating });