Creating a Remember Me Login @ JDJ

779 篇文章 0 订阅
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
<script type="text/javascript"> </script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>

  Many of my articles in this column have dealt with theoretical concepts and syntax of impleMenting those concepts in ColdFusion. In this article, I want to concentrate on the impleMentation steps you might take when building soMething.

  Most Web applications have a "sign Me up" feature that allows users to register. Registered users often have access to additional information or features that anonymous users don't. I'm going to walk you through the process of Creating a simple Login form, including database authentication and a "ReMember Me" checkbox.

  The Database

  Before you start coding this application, you'll need to create a database. Most Login scheMes include a usernaMe and password. You can put that information in a table called Users. The table will also need a unique identifier, called a primary key in database terms. Here is a sample of data from the table:

 

  UserID

  UsernaMe

  Password

  1

  jeff

  houser

  2

  cfdj

  author

  3

  coldfusion

  macroMedia

  Normally, a users table would have much more information than just a usernaMe and password. A naMe, address, and e-mail address are common additions. For the purposes of this example, we'll keep it simple. In a real-world application, you should consider encrypting the passwords in your database for security purposes. You can do this using ColdFusion's hash function. More information about the hash function is located at Media.com/coldfusion/6.1/htmldocs/funct113.htm#wp1105551" target=new />Click Here. You would use the hash function before saving the user's password into the database. For the purposes of this example, the passwords will remain in plain text.

  You could impleMent a Login script using just the users table we defined, but you'll find it limiting. The user is either logged in, or not logged in. There is no distinction between different levels of access. Suppose, for example, that anonymous users can look at products, registered users can post reviews of products, and admin users can change product information. You'll need soMething more than an "Authenticated" or "Not Authenticated" security structure. To do this we'll need to be able to group users into security groups. The SecurityGroups table will need a primary key and a group naMe. This is an example of soMe possible groups:

 

  GroupID

  GroupNaMe

  1

  admin

  2

  anonymous

  3

  registered

  You'll also need an intersection or linking table to associate a user with his or her groups. This table will contain the GroupID and the UserID. The reason for Creating this as a separate table is so that a single user can be in multiple groups, and a single group can have multiple users inside of it. This is known as a many-to-many relationship in the world of database design.

  Here is an example of the SecurityUserGroups intersection table:

 

  GroupID

  UserID

  1 (admin)

  1 (jeff / houser)

  3 (registered)

  1 (jeff / houser)

  3 (registered)

  3 (coldfusion / macroMedia)

  I added the group and user naMes next to the ID in parentheses to more easily show the relations. In a relational database, you would store only the ID. Our finished database structure is seen in Figure 1.

  Before accessing this database from your ColdFusion code, you'll have to create a datasource in the ColdFusion administrator. Setting up the datasource is beyond the scope of this article, but it's a pretty straightforward task and you can read about setting up datasources for any database at Media.com/coldfusion/6.1/htmldocs/datasou4.htm#wp1277125" target=new />Click Here.

  The Login Form

  With our database ready for use, we can start examining the Login form. Most forms have two parts: an input page and a processing page. The input page asks for the usernaMe and password. It also has a checkbox for a "ReMember Me" functionality. The code behind the form is shown in Listing 1.

  The Login form can be seen here: (Figure 2)

  Enter Jeff in the usernaMe field and Houser in the password field. Check the ReMember Me box and click submit. This brings us to the processing page (see Listing 2).

  The ReMemberMe form variable value coMes from a checkbox. If not checked when the form is submitted, the variable will not exist on the form processing page. You can use the cfparam tag to default if this situation occurs. The second step in the process is to validate the user's Login information against the database. The cfquery tag is used to run the database query. The query joins the users table and the SecurityUserGroups table, where the usernaMe and password fields are equal to the input of the form. The query retrieves all information from the users table and the list of GroupIDs from the intersection table. If the database stored hashed passwords, we would change the query comparison to:

  Users.password = '#hash(form.password)#'

  This allows us to correctly compare two hashed values, not plain text passwords. This way we are keeping the user's password information secure.

  We can check the RecordCount variable of our query to see if the query returned any rows. If the query did not return any rows, then the user did not enter a valid usernaMe and password combination. The Login should fail. If rows are returned, then the Login was a success. The code creates two session variables to process the Login. To make use of session variables, you'll have to use the cfapplication tag. ColdFusion's application fraMework is beyond the scope of this article; however, you can read about it at Media.com/coldfusion/6.1/htmldocs/tags-pa3.htm#wp1097308" target=new />Click Here.

  The first value, LoggedIn, is a Boolean value that specifies that the user has logged in. I would default this value to false when the session is initialized. The second variable, groups, contains a list of all the groups that the user is in. The ValueList will give us a list from the column in the query.

  Later in your application, when you have to decide whether a user should have access to a resource or not, you can use ListFind against the groups variable to see if the user is allowed. Here's an example:

 

  allow Access

 

  No Access

 

  If the user is in the admin group he or she can see the resulting HTML code, or access the corresponding resource. If not, then he or she will not be given access.

  In this code, we are rolling our own security scheMe. Many applications will use this approach, due to the complexity of security functions in the pre-CFMX days. However ColdFusion MX introduced a much improved security scheMe using soMe new tags: cfLogin, cfLoginuser, and cflogout. They allow you to log in a user and set up a list of roles that ColdFusion will handle internally. The roles tie in with the role attributes of functions inside a ColdFusion component. These new tags are not in wide use yet, but they are definitely worth checking out if you are building an application from the ground up (Media.com/coldfusion/6.1/htmldocs/appsecu6.htm" target=new />livedocs.macroMedia.com/coldfusion/6.1/htmldocs/appsecu6.htm). The reason I don't use them in my developMent is because my biggest project of the moMent is being built to run off of BlueDragon, which does not yet support the functions.

  ReMembering the User

  The one portion of code that I haven't explained yet is the "ReMember Me" portion, so let's look at it in detail. There are many different ways you could impleMent the "ReMember Me" portion of code. In most Methods, you'll set a cookie on the user's machine, and store the saMe value in the database. When the user returns to the site, you can check to see if the cookie exists. If it does, you can retrieve the user's information from the database based on the cookie value. Simpler systems where security is not an issue may store the user's primary key ID. More complex systems with heavier security requireMents may assign a UniqueID value, created with the CreateUUID function. SoMe systems I've worked with will store the CFID and CFTOKEN values generated by ColdFusion and used for session manageMent, and use those to ReMember the user.

  For the purposes of our sample, we are going to store the user's primary key as a cookie, but ReMember that in applications where security is a priority, this is probably not your best move. If form.ReMemberMe is set to true, then we use the cfcookie tag to create a cookie on the user's browser. We naMe the cookie UserID. The value is set to the UserID value returned from the query. It is set to never expire.

  Setting the cookie is only the first step. When a user coMes to the site, soMething will have to be impleMented to check to see if we know who they are, or not. We are going to put this code in the Application.cfm. The code in the Application.cfm will look like an abbreviated version of the code in the Login-processing page (see Listing 3).

  First the code checks whether the IsLoggedIn session variable is defined. If it isn't, then this is the first tiMe a user has coMe to the site. Next, we check if the UserID cookie variable exists. If it does, Next we run a query to get the user data based on the UserID. If the query finds the user, the code sets the two session variables. If not, it defaults them to the value. If the cookie doesn't exist at all, it defaults the session values.

  Conclusion

  This article demonstrated a simple Method for impleMenting a Login script on your site. It incorporated many common security eleMents and used many common ColdFusion tags. The approach I took in this article is not the only approach that could be used, but it is simple yet elegant. For those who want more, you can check out the authenticationAPI included in MacroMedia's DRK 7. In my next column I'll talk more in depth about ColdFusion's application fraMework and the cfapplication tag, including setting up the session and application scopes.

<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
<script type="text/javascript"> </script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值