-
Notifications
You must be signed in to change notification settings - Fork 14
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
#1791 - Enable Assessments tab view and NOA view for Public Institution Users - Part 5 #1984
Conversation
...kend/apps/api/src/route-controllers/student-appeal/student-appeal.institutions.controller.ts
Outdated
Show resolved
Hide resolved
...ckages/backend/apps/api/src/auth/guards/institution/institution-student-data-access.guard.ts
Outdated
Show resolved
Hide resolved
sources/packages/backend/apps/api/src/services/institution/institution.service.ts
Outdated
Show resolved
Hide resolved
sources/packages/web/src/components/common/NoticeOfAssessmentFormView.vue
Outdated
Show resolved
Hide resolved
applicationIdParamName?: string, | ||
) => | ||
SetMetadata(INSTITUTION_HAS_STUDENT_DATA_ACCESS_KEY, [ | ||
studentIdParamName, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yesterday post stand-up, I believe we decided to go with the approach of using institutionId in the query.
when did that change?
...src/route-controllers/application-exception/application-exception.institutions.controller.ts
Show resolved
Hide resolved
* to disbursement dynamic data.\ | ||
* @param options options, | ||
* - `studentId` studentId student to whom the award details belong to. | ||
* - `applicationId` applications id. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we can add more information to the comments, for instance, that the applicationId
is used for authorization purposes in this case.
* - `applicationId` application is used for authorization purposes to ensure that a user has access to the specific application data.
.../packages/backend/apps/api/src/services/disbursement-receipt/disbursement-receipt.service.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work, maybe we will need a team discussion to settle the idea around the decorator. Please take a look at the comments.
...ackend/apps/api/src/auth/decorators/institution/institution-student-data-access.decorator.ts
Show resolved
Hide resolved
...ackages/backend/apps/api/src/services/application-exception/application-exception.service.ts
Outdated
Show resolved
Hide resolved
...ackages/backend/apps/api/src/services/application-exception/application-exception.service.ts
Outdated
Show resolved
Hide resolved
.innerJoin("application.student", "student") | ||
.andWhere("student.id = :studentId", { studentId }); | ||
} | ||
|
||
if (applicationId) { | ||
exception.andWhere("application.id = :applicationId", { applicationId }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm confused here. I was in an assumption that, with decorators in place we will not be again doing the same applicationId condition in query in the services.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure, if I got your question, the decorator will check if the student has access to the student id and application. each service will check if the entity is related to the application and student here, exception
is related to the application and student.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I understood the point later. Thanks for explaining.
...ackend/apps/api/src/auth/decorators/institution/institution-student-data-access.decorator.ts
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Assuming that all other devs are okay with the decorator approach.
maskMSFAA?: boolean; | ||
}, | ||
): Promise<AssessmentNOAAPIOutDTO> { | ||
const assessment = await this.assessmentService.getAssessmentForNOA( | ||
assessmentId, | ||
options?.studentId, | ||
{ studentId: options?.studentId, applicationId: options?.applicationId }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to raise a point that was a subject of a conversation with @dheepak-aot, due to the fact the applicationId
was authorized by the decorator, we no longer need to include the studentId
in the queries unless required for some other reason than authorization.
Kudos, SonarCloud Quality Gate passed!
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing the changes, looks good 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great Job!
@HasStudentDataAccess
to acceptapplicationId
as an optional parameter and it applied to requests, history, award, noa, exception, and appeals.