Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add /user endpoints #2

Open
benjaminkostiuk opened this issue May 9, 2021 · 1 comment
Open

Add /user endpoints #2

benjaminkostiuk opened this issue May 9, 2021 · 1 comment
Assignees
Labels
feature Feature or improvement priority:high High priority work item

Comments

@benjaminkostiuk
Copy link
Member

benjaminkostiuk commented May 9, 2021

Overview

Implement /user endpoints for the course-management microservice defined in https://github.com/puffproject/docs/blob/master/API_ARCHITECTURE.md.

The task breaks down into the following steps:

PR#1 should be:

  1. Create an AssignmentEnrollment entity based on the ASSIGNMENT_ENROLLMENT table. This is the table that keeps track of if a user is tracking an assignment, i.e. they are working on it. This includes a column where they can pin the assignment for easy access. Should join on the assignment id (See Assignment.java to see example of join column)
  2. Annotate the AssignmentEnrollment entity with swagger annotations (@model etc.) + ignore the id and user id fields.
  3. Create an AssignmentEnrollmentRepository for the JPA database connection.
  4. Create an AssignmentEnrollmentPage model (extend BasePage) to define the data model we want to return to the user. Add necessary swagger annotations.
  5. Add test data in the bootstrap_data.sql file to automatically populate the database when the service is loaded.

PR#2 should be:
5. Create a user service. You'll need methods for

  • Getting the user's assignment enrollments (Needs to have a pageable and non-pageable versions)
  • Enrolling a user in an assignment with the option to pin the assignment for them. Calling this endpoint multiple times should not ever create multiple records. There should only ever be one enrollment for a user in an assignment.
  • Unenrolling a user from an assignment
  • Check if a user has already voted on something (Might have to create a new function in a the vote service)
  1. Create a Rest interface for user endpoints in restApi package with all the right annotations. Don't forget to include the Principal argument to get the user's token (it represents their identity)
  2. Implement the rest interface in a user controller. The controller will call the user service endpoints to implement:
  • GET /user/assignments: pageable endpoint that returns AssignmentEnrollmentPage objects. (Double check here that we can sort to the have the pinned ones at the top, I'm not sure if it's possible)
  • POST /user/assignment/{assignmentId}/enroll?pin={true|false}
  • DELETE /user/assignment/{assignmentId}/unenroll
  • GET /user/engagement/{sourceType}/{sourceItemId}/vote: Check if a user has voted on something (Might need to create a new model to return)
  • Manually test each of the endpoints + they should appear in the swagger under the User tag.

PR#3 should be:
8. Automated testing for the user service class.
9. Automated mock testing for the user endpoints.

@benjaminkostiuk benjaminkostiuk added feature Feature or improvement priority:high High priority work item labels May 9, 2021
@benjaminkostiuk benjaminkostiuk added this to To do in Puff Platform via automation May 9, 2021
@youcefs21 youcefs21 self-assigned this Sep 8, 2021
@benjaminkostiuk
Copy link
Member Author

@youcefs21 Just take this one step at a time. You can reference the exisiting code or ask me for anything you don't understand. Most of the code should be fairly similar to what's already there but no guarantees.

@benjaminkostiuk benjaminkostiuk moved this from To do to In progress in Puff Platform Sep 8, 2021
youcefs21 added a commit that referenced this issue Sep 27, 2021
- Fixed up the `AssignmentEnrollment` entity
- Created `AssignmentEnrollmentRepository`
- Created `AssignmentEnrollmentPage` model
- added test data to `bootstrap_data.sql`
@youcefs21 youcefs21 mentioned this issue Sep 27, 2021
1 task
youcefs21 added a commit that referenced this issue Oct 5, 2021
- Renamed the assignment associated with AssignmentEnrollment from "course" to "assignment
- Added a JsonIgnore tag to the ID in AssignmentEnrollment
- Added a USER_ID variable to bootstrap_data.sql for ease of testing
- Added a 2 more test cases to Assignment enrolment in bootstrap_data
benjaminkostiuk pushed a commit that referenced this issue Oct 5, 2021
* PR#1 of issue #2

- Fixed up the `AssignmentEnrollment` entity
- Created `AssignmentEnrollmentRepository`
- Created `AssignmentEnrollmentPage` model
- added test data to `bootstrap_data.sql`

* Fixed some things for PR#1 of issue #2

- Renamed the assignment associated with AssignmentEnrollment from "course" to "assignment
- Added a JsonIgnore tag to the ID in AssignmentEnrollment
- Added a USER_ID variable to bootstrap_data.sql for ease of testing
- Added a 2 more test cases to Assignment enrolment in bootstrap_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature Feature or improvement priority:high High priority work item
Projects
Puff Platform
In progress
Development

No branches or pull requests

2 participants