wiki:S2S_WEB_USER_RELATED_R0

Version 3 (modified by meddle, 16 years ago) (diff)

--

Error: Macro BackLinksMenu(None) failed
compressed data is corrupt

Error: Macro TicketQuery(summary=S2S_WEB_USER_RELATED_R0, format=table, col=summary|owner|status|type|component|priority|effort|importance, rows=description|analysis_owners|analysis_reviewers|analysis_score|design_owners|design_reviewers|design_score|implementation_owners|implementation_reviewers|implementation_score|test_owners|test_reviewers|test_score|) failed
current transaction is aborted, commands ignored until end of transaction block

Analysis

Overview

This task is connected to the user part of the web server. It includes user registration, creation of user profile and the change to edit it.

Task requirements

  • depends on S2S_WEB_COMMONS_R1
  • there should be created a working registration link and page
  • the home page should be changed from login user to welcome user page
  • the user profile page should be created and added in the navigation menu
  • the user must have the chance to edit his/her profile
  • there is no need to be beautiful, the important part is to communicate correctly with the database and show the results as JSPs.

Task result

Pages and links about:

  • user registration
  • user profile(or username's profile)
  • editing profile

Implementation idea

  • Use the service package and its user and group classes for managing the users.
  • Create servlets in webapp package to handle the information from the new jsps.

S2S_WEB_COMMONS_R0
S2S_WEB_COMMONS_R1
S2S_DEPLOY_TECHNOLOGIES_R0
S2S_PERSISTENCE_COMMONS_R0
S2S_CORE_SECURITY_R0

How to demo

  • register a user
  • show the new user pages

Design

The user related content at that stage will consist of four jsp pages. register.jsp, index.jsp (home page), edit_profile.jsp and one additional page that will not function for now lost_password.jsp.

  • When an user requests the sophie 2 server's index.jsp page for now if:
    • The user is not logged in (there is no user in the the http session ) he/she will be redirected to login.jsp (see S2S_WEB_COMMONS_R1)
    • The user is logged in (there is user in the the http session ) the index,jsp will display it's home content. For now that will be welcome message

containing the username and the astea logo. The menu will be "logged in user menu" containing link to the "edit profile" page.

  • When an not logged in user requests the login.jsp page beyond the login for he/she will see text "Not registered? Register." That will contain link pointing to the register.jsp page. The register.jsp page will contain registration form with all the field optional and required that the User object has. When the user has filled the form and click the "register" button bellow it:
    • If all the required fields (username, password, email) are filled properly the user will be registered to the DB, than it will be logged in(put in the http session) and will be redirected to the index.jsp page.
    • If one or more of the required fields (username, password, email) is not filled properly the user will be redirected to the register.jsp page again which will show to him/her detailed message what was wrong.
  • When an logged in user navigates to the edit_profile.jsp page he/she will see form for editing everything except the username and the id properties of the User object in the http session. Bellow the form there will be "cancel" button redirecting the user to the index.jsp without changing his/her profile and a button with text "submit changes". When the user clicks it:
    • If all the information in the form is filled properly the user object from the http session will be updated according to it and saved into the database. Then the user will be redirected to the index.jsp page.
    • If the information in the form is not filled correctly the user will be redirected to the edit_profile.jsp again and it will visualise detailed message what when wrong.
  • In the login.jsp there will be a link to the lost_password.jsp page with text "Forgot your password?". The lost_password.jsp page will contain form with field for the user's email. And button for sending a new password. If there is an user with such an email in the DB his or her password will be changed with random new one and a mail will be sent to the address filled in the form with the new password. The user will be redirected to the lost_password.jsp page with message to check his/her email account for the mail with the new password. If there is no user with such an email in the DB the user will be redirected to lost_password.jsp page with message that there is now registered user with this email address.

Implementation

(Implementation results should be described and linked here (from the wiki or the repository))

Testing

Comments

(Write comments for this or later revisions here.)