CSC/ECE 517 Fall 2019 - E1945. Refactor users controller.rb: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 91: Line 91:


'''Github Repo:''' https://github.com/deepayanbardhan/expertiza
'''Github Repo:''' https://github.com/deepayanbardhan/expertiza
<br>
'''Pull Request:''' https://github.com/expertiza/expertiza/pull/1541


== '''Team Information''' ==
== '''Team Information''' ==

Revision as of 02:36, 7 November 2019

About Expertiza

Expertiza is an open-source project based on Ruby on Rails framework. It allows the instructor to create new assignments and customize new or existing assignments. The instructor is allowed to create a list of topics for the students to which they can sign up for. For working on different projects and assignments the students can form teams in Expertiza. Peer review is another feature where students can review other students' submissions. This feature is available in Expertiza. Furthermore, Expertiza supports submission across various document types, including URLs and wiki pages.

Abstract

The UserController is a controller used for managing the creation, modification, and destruction of users in the Expertiza system. Instructor users must be added by creating a request for a new account. A key part of our team’s work was moving methods associated with managing a new account request from the UserController to a new controller named AccountRequestController. This removed coupling between account requests and user objects. Furthermore, it allowed an account request to be properly associated with its own controller, model, and view. Additionally, the team refactored and documented some methods in the UserController.

Problem Statement

The users_controller.rb file included the standard CRUD methods for a User model along with methods for other workflows. Most notably, the users_controller.rb file handled the creation and management of a RequestedUser object. The file also included a few methods which had a bad name or lack documentation. Thus it required to make the following changes to make the code more readable and change certain views.

The following tasks were required to be done for the project by our team:

  • Separate all methods related to the workflow of a RequestedUser object
  • Move below-mentioned methods to a new file named account_request_controller.rb
  1. created_approved_user
  2. list_pending_requested
  3. request_new
  4. created_requested_user_record
  5. roles_for_request_sign_up
  6. Requested_user_params
  • The RequestedUser model should be renamed to AccountRequest and it’s lifetime must be managed by the new AccountRequestController
  • The form that was currently displayed when the “Request Account” button is clicked from the Expertiza login page. It had to be edited with the following changes
    • Only instructor accounts can be created, so the dropdown had to be removed
    • All form labels had to be bold-faced
    • The “Self Introduction” label should be re-named to “Self-Introduction”
    • The textbox for the self-introduction field should include some hint (“Please include a link to your website”)
  • Comments had to be written for the following methods
  1. get_role
  2. show_selection
  3. foreign
  • The paginate_list method had to be invoked at the correct location (in the list method) so that it paginates the users list correctly. Presently all users being shown on a single page by default on clicking the user list.


Our Work

Changing the Request Account Page

This is the page that was loading originally when request account button is clicked in the login page:

Removing Dropdown

Only the Instructor account can be created and not TA which is there as an option originally. For this in the request_new.html.erb file, the selection tag has been changed to label tag in which the Instructor is put on the label

All form labels had to be bold-faced

For this in the individual forms inside the view are visited and bold tag has been added individually.

Renaming Self Introduction

Inside the _self_introduction.html.erb file the label is edited to the required one.

Adding hints in text-box

Initially, the text-box was blank and some hints had to be added. This was done by adding a place_holder attribute inside the text area inside the _self_introduction.html.erb file


This is the current page that gets loaded after fixing the above issues:

Adding comments for methods

The following methods had comments written or renamed for better understanding of the working of the methods and to reflect their actual behaviour.

  1. get_role - The method was renamed to role, a comment was added explaining that it finds the role of a given user object
  2. show_selection - The method was renamed to show_if_authorized, as this method should only display the users if the current user is authorized. Also changed it from a GET to a POST request since it more accurately reflects its working.
  3. foreign - A comment was added for this method, explaining that it stores all roles possible and that it gets role id of the session’s user.
caption
caption


Invoking paginate_list method

Invoked the paginate_list method at the correct location(in the list method) so that it paginates the users list correctly. The number of users per-page has currently been set to 100, which was showing all users in a single page by default. Also added a section at the bottom of the list.html.erb page for navigating between the paginated list of users.

As it can be seen now that there are page numbers and not all the users are being showed on the same page as was the case beforehand.

Results

The refactoring of the user_controller made the view for the account request more clearer and easy to understand for the user i.e. the UI was improved. Also, the code was made more cleaner and easy to read by for people who works on this later as the methods are segregated for performing their corresponding tasks and they comments are given for those which were not clear. Furthermore, the paginate users is now repaired and is working properly which lets the students list to be shown page wise instead of all the students in a single page which was not readable.

Video of Account Request Process:
https://youtu.be/ZlUZWbpYvAI

Test Plan

Tests for UserController were updated to account for the fact that some methods now use the AccountRequestController. The tests for the methods that were moved to AccountRequestController were moved to a new spec in the file account_request_spec.rb. The team did this because it made sense to make a new spec for a new controller. Nevertheless, most test functionalities remained the same. The tests were also updated to not select the user role from the “User Role” dropdown. This was done because the dropdown was removed from the UI since only instructor accounts can be created.

Useful Links

Github Repo: https://github.com/deepayanbardhan/expertiza
Pull Request: https://github.com/expertiza/expertiza/pull/1541

Team Information

Project Mentor:
Ramya Vijayakumar

Project Members:
Benjamin Fisher
Deepayan Bardhan
Sanket Pai